FBX Drawings

Exporting FBX Format To PDF

Aspose.CAD for Python allows developers to export an FBX file to PDF format. FBX to PDF conversion approach works as follows:

  1. Load FBX drawing file using the Image.load factory method.
  2. Create an object of the CadRasterizationOptions class and set the PageHeight & PageWidth properties.
  3. Create an object of the PdfOptions class and set the vector_rasterization_options property.
  4. Call Image.save while passing an object of PdfOptions as the second parameter.

Sample Code