บันทึกไฟล์ DXF
Contents
[
Hide
]วิธีบันทึกไฟล์ DXF
ปัญหา: วิธีการบันทึกไฟล์ DXF.
เคล็ดลับ: เพื่อทำเช่นนี้ คุณสามารถใช้ DxfOption ทั้งแบบไบนารี่และปกติในตัวเลือกการบันทึกไฟล์.
ตัวอย่าง:
This file contains hidden or 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
using (var image = Image.Load(inputFile)) | |
{ | |
DxfOptions options = new DxfOptions(); | |
image.Save(outFile, options); | |
} | |
using (var image = Image.Load(inputFile)) | |
{ | |
DxfOptions options = new DxfOptions(); | |
options.DxfFileFormat = DxfFileFormat.Binary; | |
image.Save(outFile2, options); | |
} |