DxfOptions
Class DxfOptions
Namespace: Imagise.Converter.ImageOptions
Assembly: Imagise.Converter.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 : ImageOptions, IDisposable
Inheritance
object ← ImageOptions ← DxfOptions
Implements
Inherited Members
ImageOptions.Clone(), ImageOptions.Dispose(), ImageOptions.Source, ImageOptions.VectorRasterizationOptions, object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
DxfOptions()
Initializes a new instance of the
public DxfOptions()
Properties
BezierPointCount
How many points to generate when converting Bezier curves to polylines, minimum 4. Used when true
public byte BezierPointCount { get; set; }
Property Value
ConvertTextBeziers
Works when true
. Wether to convert Bezier curves in text contours to multipoint polylines.
public bool ConvertTextBeziers { get; set; }
Property Value
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; }