OBJ to DXF Java

OBJ files support polygonal geometry as well as free-form geometry like the curves and surfaces. In certain cases, you may need to convert an OBJ object file to a DXF file. In accordance with such use cases, this article covers how to convert OBJ to DXF file programmatically in Java.

OBJ to DXF Converter – Java API Installation

Aspose.CAD for Java API supports working with different type of drawings and graphic files. Simply configure the API by downloading its JAR files from the New Releases page or configure it from from the Aspose Repository by using the following specifications in the pom.xml file of your Maven-based project:

Repository:

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

Dependency:

 <dependencies>
    <dependency>
        <groupId>com.aspose</groupId>
        <artifactId>aspose-cad</artifactId>
        <version>22.3</version>
    </dependency>
</dependencies>

Convert OBJ to DXF Programmatically in Java

You can convert an OBJ file to a DXF file by following the steps below:

  1. Load the input Object file with the Image class.
  2. Initialize a CadRasterizationOptions and DxfOptions class object.
  3. Convert OBJ file to DXF format.

The sample code below demonstrates how to convert an OBJ file to a DXF file programmatically in Java:

Get Free API License

You may evaluate the API without any evaluation limitations by requesting a free temporary license.

Conclusion

In this article, you have learned how to convert an OBJ file to DXF format programmatically in Java. Moreover, you may need to visit the documentation space to explore other features of the API. In case of any queries, please write to us at the forum.

See Also