Class DxfOptions

Class DxfOptions

名称: Aspose.Imaging.ImageOptions アセンション: Aspose.Imaging.dll (25.4.0)

API for Drawing Interchange Format (DXF) ベクトル画像作成のためのオファーAutoCADのデザインファイルを正確に生成するためのカスタマイズされたソリューション柔軟性. テキストラインと Bezier で作業するために特別に設計曲線、開発者は効率的にこれらの要素を操作することができます、数 Bezierポイント、およびポリリンに曲線を変換し、無線輸出のために、DXF ベクトル画像の互換性と信頼性

public class DxfOptions : ImageOptionsBase, IDisposable, IHasXmpData, IHasMetadata, ICloneable

Inheritance

object DisposableObject ImageOptionsBase DxfOptions

Implements

IDisposable , IHasXmpData , IHasMetadata , ICloneable

相続人

ImageOptionsBase.Clone() , ImageOptionsBase.ReleaseManagedResources() , ImageOptionsBase.KeepMetadata , ImageOptionsBase.XmpData , ImageOptionsBase.Source , ImageOptionsBase.Palette , ImageOptionsBase.ResolutionSettings , ImageOptionsBase.VectorRasterizationOptions , ImageOptionsBase.BufferSizeHint , ImageOptionsBase.MultiPageOptions , ImageOptionsBase.FullFrame , ImageOptionsBase.ProgressEventHandler , DisposableObject.Dispose() , DisposableObject.ReleaseManagedResources() , DisposableObject.ReleaseUnmanagedResources() , DisposableObject.VerifyNotDisposed() , DisposableObject.Disposed , object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Examples

この例では、DXF形式への輸出を示しています。

//Create Image instance and initialize it with an existing image file from disk location
                                                         using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(@"input.svg"))
                                                         {
                                                             Aspose.Imaging.ImageOptions.DxfOptions options = new Aspose.Imaging.ImageOptions.DxfOptions();
                                                             options.TextAsLines = true;
                                                             options.ConvertTextBeziers = true;
                                                             options.BezierPointCount = 20;
                                                             image.Save("output.dxf", options);
                                                         }

Constructors

DxfOptions()

public DxfOptions()

Properties

BezierPointCount

どのくらいのポイントを生成するときに変換する Bezier 曲線をポリリン、最低 4. Aspose.Imaging.ImageOptions.DxfOptions.TextAsLines と Aspose.Imaging.ImageOptions.DxfOptions.ConvertTextBeziers は両方 /// 設定して「真実」

public byte BezierPointCount { get; set; }

不動産価値

byte

ConvertTextBeziers

Aspose.Imaging.ImageOptions.DxfOptions.TextAsLines が「真実」に設定されるときに動作します。

public bool ConvertTextBeziers { get; set; }

不動産価値

bool

TextAsLines

テキストがポリリン(デフォルト)または編集可能なAutocad TEXTエンティティで構成されるコンチュアとして輸出されるかどうか。このオプションが設定された場合

public bool TextAsLines { get; set; }

不動産価値

bool

こちらも見る

ImageOptionsBase

 日本語