浏览我们的产品

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.3D for .NET 22.2

下载  支持论坛 

文件详情

  • 下载:
  • 19
  • 文件大小:
  • 9.9 MB
  • Posted By:
  • lex.chou
  • 浏览量:
  • 47
  • 添加日期:
  • 2/7/2022

文件详情

在 U3D 和 PDF 中嵌入纹理

在 U3D 和 PDF 格式文件中嵌入纹理。生成带有嵌入纹理文件的 3D PDF 文件。

var scene = new Scene();
scene.Open($"test.obj");
var opt = new PdfSaveOptions();
//embed the external textures in the output PDF file.
opt.EmbedTextures = true;
//Look up external textures in the  common/textures directory
opt.LookupPaths.Add("common/textures");
scene.Save("test.pdf", opt);

生成带有嵌入纹理的 U3D

将此设置为 true 以生成带有嵌入纹理文件的 3D U3D 文件。

        var scene = new Scene();
        scene.Open($"test.obj");
        var opt = new U3dSaveOptions();
        //embed the external textures in the output PDF file.
        opt.EmbedTextures = true;
        //Look up external textures in the  common/textures directory
        opt.LookupPaths.Add("common/textures");
        scene.Save("test.u3d", opt);

改进了对 GLTF 格式的支持

能够访问“GLTF”格式文件中的附加功能和扩展。

编码 3D 场景和节点元数据

允许将场景和节点的元数据编码为“USD”。

解码 3D 场景和节点元数据

允许从“USD”解码场景和节点的元数据。

有关此版本中的功能、增强功能和错误修复的完整列表,请访问 Aspose.3D for .NET 22.2 Release Notes

 简体中文