Convertir USD a PDF a través de C#
Exporte USD y otros 3D archivos usando .NET Framework, .NET Core y Mono
Exportar USD escena como PDF con C#
- Cargue el archivo USD usando un constructor de Escena clase2. Llamar Escena.Guardar método
- Pase el nombre del archivo de salida con la extensión .pdf como primer parámetro
- Especifique el valor del campo
PDF
de Formato de archivo clase
3D Conversión de formato API for .NET
Instale desde la línea de comandos como nuget install Aspose.3d
o a través de la consola del administrador de paquetes de Visual Studio con Install-Package Aspose.3D
.
Como alternativa, obtenga el instalador MSI sin conexión o las DLL en un archivo ZIP de descargas .
C# Código para USD a PDF Conversión
// carga el USD en un objeto de Escena
var scene = new Aspose.ThreeD.Scene("template.usd");
// guardar USD como 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