DXF 파일 저장

DXF 파일 저장 방법

문제: DXF 파일 저장 방법.

팁: 이를 위해 파일 저장 옵션에서 이진 및 일반 DxfOption을 사용할 수 있습니다.

예제:

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);
}
view raw save-dxf.cs hosted with ❤ by GitHub