DWG - PDF
Moderators: SDS, support, admin
-
- Posts: 1
- Joined: 09 Jan 2021, 22:15
- Contact:
DWG - PDF
Please let me know how i could convert a DWG to PDF file ?
Thanks for alot.
Thanks for alot.
Re: DWG - PDF
Hello Frank,
Please use the following code.
Mikhail
Please use the following code.
Code: Select all
public static void ConvertDWGtoPDF(string dwgFilePath, string pdfFilePath)
{
CADImage cadImage = CADImage.CreateImageByExtension(dwgFilePath);
cadImage.IsWithoutMargins = true;
cadImage.LoadFromFile(dwgFilePath);
Export.CADToPDF pdf = new Export.CADToPDF(cadImage);
pdf.SaveToFile(pdfFilePath);
}
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support