Exporting CAD

Export 3D AutoCAD Images to PDF

Aspose.CAD allows you to export 3D AutoCAD images to PDF. Please use the TypeOfEntities.Entities3D in ImageOptions.CadRasterizationOptions to specify that you want to export 3D entities. The following sample code loads an AutoCAD 3D file and exports it to PDF. Once the file is converted to PDF, you can open it using your favourite PDF viewer.

The code sample below shows how to export 3D AutoCAD images to PDF.

Exporting CAD Layouts to PDF

Aspose.CAD for Java allows you to export CAD layouts to PDF. save method of the CadImage class can be used to export layout(s) to PDF format. The following sample code loads a CAD file and exports its “Model” layout to PDF. Once the file is converted to PDF, you can open it using your favorite PDF viewer.

Here is the sample code.

Support for setup of Pen in Export

Aspose.CAD for Java allows you to add pen options in export properties of CAD. Using rasterizationOptions we can set pen properties options.

The below is sample code to achieve specified requirements.

Decompose Cad Insert Object

Aspose.CAD for Java allows you to decompose cad objects and process separate entities inside insert. The below is sample code to achieve specified requirements.

Support for ACAD Proxy Entities

Aspose.CAD for Java allows you to read and export ACAD_PROXY_ENTITY entities. The below is sample code to achieve specified requirements.

Integrate IGES Format

Aspose.CAD for Java allows you to read and export IGES format. The below is sample code to achieve specified requirements.

Support for Mesh Models

Aspose.CAD for Java allows you to implement and count mesh models like edges, vertices and faces that use polygonal representation. The below is sample code to achieve specified requirements.

Set Custom Point Of View

Aspose.CAD for Java allows you to set custom point of view for Model layout. Using vectorRasterizationOptions you can set custom point of view. The code sample below shows how to set custom point of view.