Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active March 16, 2022 08:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/4efdb922bda8415acbc7842a869fb0ed to your computer and use it in GitHub Desktop.
Save aspose-com-gists/4efdb922bda8415acbc7842a869fb0ed to your computer and use it in GitHub Desktop.
Convert DWG to FBX file Programmatically in Java
// Load the input DWG file
Image image = Image.load("sample.dwg");
// Initialize FbxOptions class object
FbxOptions options = new FbxOptions();
// Save output FBX file
image.save("sample.fbx", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment