C# के माध्यम से USD को HTML में बदलें
.NET फ्रेमवर्क, .NET कोर और Mono का उपयोग करके USD और अन्य 3D फ़ाइलें निर्यात करें
C# के साथ USD दृश्य को HTML के रूप में निर्यात करें
- के कंस्ट्रक्टर का उपयोग करके USD फ़ाइल लोड करें दृश्य कक्षा2. कॉल दृश्य। सहेजें तरीका
- पहले पैरामीटर के रूप में .html एक्सटेंशन के साथ आउटपुट फ़ाइल नाम पास करें
- से
HTML5
फ़ील्ड मान निर्दिष्ट करें फाइल प्रारूप कक्षा
3D रूपांतरण प्रारूपित करें API for .NET
कमांड लाइन से ``nuget install Aspose.3dके रूप में या
इंस्टॉल-पैकेज Aspose.3D``` के साथ विजुअल स्टूडियो के पैकेज मैनेजर कंसोल के माध्यम से इंस्टॉल करें।
वैकल्पिक रूप से, ऑफ़लाइन MSI इंस्टॉलर या DLL को ZIP फ़ाइल से प्राप्त करें डाउनलोड .
C# USD से HTML रूपांतरण के लिए कोड
// सीन के ऑब्जेक्ट में USD लोड करें
var scene = new Aspose.ThreeD.Scene("template.usd");
// USD को HTML के रूप में सहेजें
scene.Save("output.html", Aspose.ThreeD.FileFormat.HTML5);
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 MoreHTML What is HTML File Format?
Known as language of the web, HTML has evolved with requirements of new information requirements to be displayed as part of web pages. The latest variant is known as HTML 5 that gives a lot of flexibility for working with the language. HTML pages are either received from server, where these are hosted, or can be loaded from local system as well. Each HTML page is made up of HTML elements such as forms, text, images, animations, links, etc. These elements are represented by tags and several others where each tag has start and end. It can also embed applications written in scripting languages such as JavaScript and Style Sheets (CSS) for overall layout representation.
Read More