تحويل Visio إلى تنسيقات الصور
Contents
[
Hide
]
تصدير المخططات إلى تنسيقات ملفات الصور
يشرح هذا المقال كيفية تصدير Microsoft Visio diagram إلى صورة باستخدامAspose.Diagram for .NET API. استخدم مُنشئ الفئة [Diagram] لقراءة ملفات diagram وطريقة Save لتصدير diagram إلى أي تنسيق صورة مدعوم.
لتصدير diagram إلى صورة:
- قم بتكوين نسخة من الفئة Diagram.
- اتصل بـ Diagram class ‘Save method وقم بتعيين تنسيق الصورة الذي تريد التصدير إليه ، ملف صورة الإخراج يبدو مثل الملف الأصلي.
تصدير Microsoft Visio الرسم إلى ملف الصورة
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
import aspose.diagram | |
from aspose.diagram import * | |
#// Initialize a Diagram class | |
diagram = Diagram(os.path.join(sourceDir, "Drawing1.vsdx")) | |
#// Save diagram in the png format | |
diagram.save("Visio_out.png", SaveFileFormat.PNG) |
من الممكن أيضًا حفظ صفحة معينة على الصورة ، بدلاً من حفظ المستند بأكمله:
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
import aspose.diagram | |
from aspose.diagram import * | |
#// Initialize a Diagram class | |
diagram = Diagram(os.path.join(sourceDir, "Drawing1.vsdx")) | |
#// Save diagram as PNG | |
options = saving.ImageSaveOptions(SaveFileFormat.PNG) | |
#// Save one page only, by page index | |
options.page_index = 0 | |
#// Save diagram in the png format | |
diagram.save("ExportPageToImage_out.png", options) |