رسم DWFx
Contents
[
Hide
]رسم DWFx
DWFx هو أحدث إصدار من تنسيق ملف DWF. ملف DWFx هو رسم ثنائي الأبعاد أو ثلاثي الأبعاد تم إنشاؤه باستخدام برامج Autodesk CAD. يعتمد على مواصفة ورق XML (XPS)، ويمكن بالتالي مشاهدته وطبعته باستخدام عارض Microsoft XPS.
تسمح Aspose.CAD لـ Java للمطورين بفتح وإخراج ملفات DWFx إلى تنسيق PDF. فيما يلي الكود الذي يوضح كيفية فتح ملفات DWFx وحفظها بتنسيق 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
// For complete examples and data files, please go to https://github.com/aspose-cad/Aspose.CAD-for-Java | |
String SourceDir = Utils.getDataDir_DWFXDrawings(); | |
String OutputDir = Utils.getDataDir_Output(); | |
String filePath = SourceDir + "Tyrannosaurus.dwfx"; | |
Image cadImageDwf = Image.load(filePath); | |
CadRasterizationOptions rasterizationOptions = new CadRasterizationOptions(); | |
rasterizationOptions.setPageWidth(cadImageDwf.getSize().getWidth()); | |
rasterizationOptions.setPageHeight(cadImageDwf.getSize().getHeight()); | |
PdfOptions CADf = new PdfOptions(); | |
CADf.setVectorRasterizationOptions(rasterizationOptions); | |
cadImageDwf.save(OutputDir + "OpenDwfxFile_out.pdf", CADf); |