Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active May 12, 2022 20:50
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/92fc9b922340b3005b9af5177d429abe to your computer and use it in GitHub Desktop.
Save aspose-com-gists/92fc9b922340b3005b9af5177d429abe to your computer and use it in GitHub Desktop.
Convert USDZ to PDF Programmatically in C#
// Load the input USDZ file
Scene scene = new Scene();
scene.Open("sample.usdz");
// Create an instance of PdfSaveOptions class
PdfSaveOptions options = new PdfSaveOptions();
// Convert USDZ to PDF file
scene.Save("sample.pdf", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment