DOCX JPG PDF XML OBJ
  Product Family
GIF

Convert OBJ to GIF via Java

Instantly convert OBJ to GIF from a Java application without any other rendering software.

How to Convert OBJ to GIF Using Java

In order to render OBJ to GIF, we’ll use Aspose.CAD for Java API which is a feature-rich, powerful and easy to use conversion API for Java platform. You can download its latest version directly from Aspose Maven Repository and install it within your Maven-based project by adding the following configurations to the pom.xml.

Repository


<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://repository.aspose.com/repo/</url>
</repository>

Dependency

<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-cad</artifactId>
<version>version of aspose-cad API</version>
<classifier>jdk17</classifier>
</dependency>

Steps to Convert OBJ to GIF via Java

Java developers can easily convert OBJ file to GIF in just a few lines of code.

  1. Load OBJ file with Image.load method
  2. Set an object of CadRasterizationOptions with page height & width
  3. Create an instance of GifOptions class and set its VectorRasterizationOptions property
  4. Call Image.save method while passing the resultant file path & object of GifOptions

System Requirements

Before running the conversion example code, make sure that you have the following prerequisites.

  • Microsoft Windows or a compatible OS with Java Runtime Environment for JSP/JSF Application and Desktop Applications.
  • Get latest version of Aspose.CAD for Java directly from Maven.
 

OBJ to GIF Java Conversion Source Code

// load OBJ in an instance of Image via its Load method
Image image = Image.load("template.obj");
// create an instance of CadRasterizationOptions and set page height & width
CadRasterizationOptions rasterizationOptions = new CadRasterizationOptions();
rasterizationOptions.setPageWidth(1600);
rasterizationOptions.setPageHeight(1600);
// create an instance of GifOptions
TiffOptions options = new TiffOptions();
// set the VectorRasterizationOptions property as CadRasterizationOptions
options.setVectorRasterizationOptions(rasterizationOptions);
// export OBJ to GIF
image.save("output.gif", options);
 
  • OBJ to GIF Conversion Live Demos

    Other Supported Conversions

    You can also convert OBJ into many other file formats including few listed below.

    OBJ TO BMP (Bitmap Image)
    OBJ TO DXF (Drawing Interchange Format)
    OBJ TO JPEG (JPEG Image)
    OBJ TO PDF (Portable Document Format)
    OBJ TO PNG (Portable Network Graphics)
    OBJ TO TIFF (Tagged Image Format)