You can read more details at: Convert DWG to DXF in C#
Last active
December 29, 2021 19:34
-
-
Save aspose-com-gists/e836590bf14ae7c350aeadb6d0c67526 to your computer and use it in GitHub Desktop.
Convert DWG to DXF File Programmatically in C# .NET
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
// Specify paths for input and output files. | |
string inputDWG = "sample.dwg"; | |
string outputDXF = "sample.dxf"; | |
// Load the input DWG file | |
Image cadImage = Image.Load(inputDWG); | |
// Save output DXF file | |
cadImage.Save(outputDXF); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment