Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Created June 24, 2022 09:22
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/dfd37678b7538e2aa6d25f8b54b8089a to your computer and use it in GitHub Desktop.
Save aspose-com-gists/dfd37678b7538e2aa6d25f8b54b8089a to your computer and use it in GitHub Desktop.
Convert USDZ to HTML Programmatically in C# | USDZ to Webpage Converter
// Load the input USDZ file
Scene scene = new Scene();
scene.Open("Sample.usdz");
// Create an instance of Html5SaveOptions class
Html5SaveOptions options = new Html5SaveOptions();
// Convert USDZ to HTML file
scene.Save("output.html", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment