Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active May 30, 2022 19:49
Show Gist options
  • Save aspose-com-gists/a02e263483ba4bb9b25771eef1a192e6 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/a02e263483ba4bb9b25771eef1a192e6 to your computer and use it in GitHub Desktop.
Convert DWF or DWFX to OBJ in C# .NET
// Load the input DWF or DWFX file
DwfImage document = (DwfImage)DwfImage.Load("sample.dwfx");
// Create an instance of ObjOptions class
ObjOptions options = new ObjOptions();
// Save the DWF or DWFX file as an OBJ file
document.Save("output.obj", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment