צורות CF2

המ_convert CF2 ל-PDF

Aspose.CAD עבור .NET תומך כעת בפורמט הקובץ המשותף (CF2). קובץ CF2 מכיל עיצובים של חבילות תלת מימד או נתוני מודל אחרים. מאמר זה מדגים כיצד תוכל להמיר את קובץ ה-CF2 ל-PDF באמצעות PdfOptions.

דוגמת קוד

אנא השתמש בקוד הבא כדי להמיר CF2 ל-PDF.

// 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);
}