3D dosyasının biçimini algılama
Contents
[
Hide
]
Aspose.3D for Python via .NET API kullanarak, geliştiriciler dosya uzantısının dosya içeriğinin uygun olduğunu garanti etmediği için açmadan önce desteklenen 3D dosyalarının formatını algılayabilir.
Detect Format rorogramming ample ample
Örnek kodu takip eden T, bir dosya formatının (dosya yolunu veya akışını kullanarak) nasıl algılanacağını ve uzantısını kontrol ettiğini gösterir.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import aspose.threed as a3d | |
# For complete examples and data files, please go to https://github.com/aspose-3d/Aspose.3D-for-.NET | |
# Detect the format of a 3D file | |
inputFormat = a3d.FileFormat.detect("document.fbx"); | |
# Display the file format | |
print("File Format: " + str(inputFormat)) |