Last active
August 14, 2025 09:19
-
-
Save terjehelgesen/9fd3f52e9dc7fdc25d58f1d058f7aac6 to your computer and use it in GitHub Desktop.
convert-pdf-to-dxf.cs
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
| PDF to CAD | |
| Convert a PDF file to DXF using C# sample code: | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| scConverterLib.Converter myconverter = new scConverterLib.Converter(); | |
| if (myconverter != null) | |
| { | |
| myconverter.SetSerialNumber("Your Serial Number"); | |
| myconverter.PDFToCAD(@"input.pdf", @"output.dxf", "DXF", 0); | |
| } | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Read more about scConverter online:
https://www.softwarecompanions.com/scconverterdll.html