Class DxfOptions
- Namespace
- Aspose.Imaging.ImageOptions
- Assembly
- Aspose.Imaging.dll
API for Drawing Interchange Format (DXF) vector image creation offers tailored solutions for generating AutoCAD drawing files with precision and flexibility. Designed specifically for working with text lines and Bezier curves, developers can efficiently manipulate these elements, count Bezier points, and convert curves into polylines for seamless exporting, ensuring compatibility and fidelity in DXF vector images.
public class DxfOptions : ImageOptionsBase, IDisposable, IHasXmpData, IHasMetadata
- Inheritance
-
DxfOptions
- Implements
- Inherited Members
Constructors
DxfOptions()
public DxfOptions()
- See Also
Properties
BezierPointCount
How many points to generate when converting Bezier curves to polylines, minimum 4. Used when TextAsLines and ConvertTextBeziers are both /// set to true
public byte BezierPointCount { get; set; }
Property Value
- See Also
ConvertTextBeziers
Works when TextAsLines is set to true
. Wether to convert Bezier curves in text contours to multipoint polylines.
public bool ConvertTextBeziers { get; set; }
Property Value
- bool
true
to export as multipoint polylines, point count controlled by BezierPointCount.false
to export each bezier in text contour as just 4-point /// polyline.
- See Also
TextAsLines
Whether text should be exported as contours consisting of polylines (default) or as editable Autocad TEXT entities. If this option set
public bool TextAsLines { get; set; }
Property Value
- bool
true
to export text as contours (default), else,false
to export text as TEXT entities.
- See Also