צורות CF2
Contents
[
Hide
]המ_convert 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); | |
} | |