DRC Drawings
Contents
[
Hide
]
Exporting DRC Drawings to PDF
Aspose.CAD provides the feature to load AutoCAD DRC drawing entities and render them as an entire drawing to PDF format. DRC to PDF conversion approach works as follows:
- Load DRC drawing file using the Image.Load factory method.
- Create an object of the CadRasterizationOptions class and set the PageHeight & PageWidth properties.
- Create an object of the PdfOptions class and set the VectorRasterizationOptions property.
- Call Image.Save while passing an object of PdfOptions as the second parameter.
Sample Code
The code sample below shows how to convert a file using default settings.