Converti USD in PDF tramite C#
Esporta file USD e altri 3D utilizzando .NET Framework, .NET Core e Mono
Esporta USD scena come PDF con C#
- Carica il file USD utilizzando un costruttore di Scena classe2. Chiama Scene.Salva metodo
- Passare il nome del file di output con estensione .pdf come primo parametro
- Specificare il valore del campo
PDF
da Formato del file classe
3D Conversione formato API for .NET
Installa dalla riga di comando come nuget install Aspose.3d
o tramite Package Manager Console di Visual Studio con Install-Package Aspose.3D
.
In alternativa, ottieni il programma di installazione MSI offline o le DLL in un file ZIP da download .
C# Codice per la conversione da USD a PDF
// carica USD in un oggetto di Scene
var scene = new Aspose.ThreeD.Scene("template.usd");
// salva USD come PDF
scene.Save("output.pdf", Aspose.ThreeD.FileFormat.PDF);
Other Conversion Options
USD What is USD File Format?
A file with .usd extension is a Universal Scene Description file format that encodes data for the purpose of data interchanging and augmenting between digital content creation applications. Developed by Pixar, USD provides the ability to interchange elemental assets (such as models) or animation.
Read MorePDF What is PDF File Format?
Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format that is independent of application software, hardware as well as Operating System. PDF files can be opened in Adobe Acrobat Reader/Writer as well in most modern browsers like Chrome, Safari, Firefox via extensions/plug-ins. Most of the commercially available software suites also offer conversion of their documents to PDF file format without the requirement of any additional software component.
Read More