Uložit DXF

Jak uložit soubor DXF

Problém: Jak uložit soubor DXF.

Tipy: K tomu můžete použít možnosti ukládání souborů DxfOption, jak binární, tak normální.

Příklad:

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