Skip to content

Instantly share code, notes, and snippets.

@conholdate-gists
Created April 15, 2024 20:53
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 conholdate-gists/c377badbaff8a8ec110dcac8466feabd to your computer and use it in GitHub Desktop.
Save conholdate-gists/c377badbaff8a8ec110dcac8466feabd to your computer and use it in GitHub Desktop.
Convert FBX to OBJ Online for Free | FBX to OBJ in C# or Java
string inputFile ="file.fbx";
using (Image image = Image.Load(inputFile))
{
// Initialize ObjOptions class object
ObjOptions options = new ObjOptions();
// Export FBX to OBJ
string outPath = "output.obj";
image.Save(outPath, options);
}
// Load input FBX file
String inputFile = "file.fbx";
com.aspose.cad.Image image = com.aspose.cad.Image.load(inputFile);
// Initialize ObjOptions class object
com.aspose.cad.imageoptions.ObjOptions options = new com.aspose.cad.imageoptions.ObjOptions();
// Convert FBX to OBJ
String outPath = "output.obj";
image.save(outPath, options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment