JPEG
JPG
PDF
XML
IGES
JPEG
Convert IGES to JPEG via Java
Native Java Library to Read, Write & Export IGES to JPEG without needing Adobe.
How to Convert IGES to JPEG Using Java
In order to render IGES to JPEG, 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 Maven 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 IGES to JPEG via Java
Java developers can easily convert IGES file to JPEG in just a few lines of code.
- Load IGES file with Image.load method
- Set an object of CadRasterizationOptions with page height & width
- Create an instance of JpegOptions class and set its VectorRasterizationOptions property
- Call Image.save method while passing the resultant file path & object of JpegOptions
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.
IGES to JPEG Java Conversion Source Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// load IGES in an instance of Image via its Load method | |
Image image = Image.load("template.iges"); | |
// create an instance of CadRasterizationOptions and set page height & width | |
CadRasterizationOptions rasterizationOptions = new CadRasterizationOptions(); | |
rasterizationOptions.setPageWidth(1600); | |
rasterizationOptions.setPageHeight(1600); | |
// create an instance of JpegOptions | |
TiffOptions options = new TiffOptions(); | |
// set the VectorRasterizationOptions property as CadRasterizationOptions | |
options.setVectorRasterizationOptions(rasterizationOptions); | |
// export IGES to JPEG | |
image.save("output.jpeg", options); |