رسومات CF2
Contents
[
Hide
]تحويل CF2 إلى PDF
Aspose.CAD لـ .NET يدعم الآن تنسيق ملف عام (CF2). ملف CF2 يحتوي على تصميمات حزمة ثلاثية الأبعاد أو بيانات نموذجية أخرى. توضح هذه المقالة كيفية تحويل ملف CF2 إلى PDF باستخدام PdfOptions.
رمز العينة
يرجى استخدام مقتطف الكود التالي لتحويل CF2 إلى PDF.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The path to the documents directory. | |
string MyDir = RunExamples.GetDataDir_ConvertingCFF(); | |
using (Image image = Image.Load(MyDir + "WineBottle_Die.cf2")) | |
{ | |
var options = new PdfOptions(); | |
image.Save(MyDir + "WineBottle_Die_out.pdf",options); | |
} | |