You can find more details at: Convert DWF or DWFX to OBJ in C#
Last active
May 30, 2022 19:49
-
-
Save aspose-com-gists/a02e263483ba4bb9b25771eef1a192e6 to your computer and use it in GitHub Desktop.
Convert DWF or DWFX to OBJ in C# .NET
This file contains hidden or 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 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