Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active May 12, 2022 20:51
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/07eb9702ceba2d50e4397443fbcf2fe9 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/07eb9702ceba2d50e4397443fbcf2fe9 to your computer and use it in GitHub Desktop.
Convert USDZ to PDF Programmatically in Java
// 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