Exportera scen till komprimerat AMF Format
Contents
[
Hide
]
Exportera scen till komprimerat AMF Format
Aspose. 3D for Java erbjuder AmfSaveOptions
klass som låter dig ställa in boolean värde för komprimering enligt dina krav. Som standard är värdet inställt till true. Följande kodsnutt visar fullständig funktionalitet för att skapa komprimerad AMF-formatfil:
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
// For complete examples and data files, please go to https://github.com/aspose-3d/Aspose.3D-for-Java | |
// The path to the documents directory. | |
String MyDir = RunExamples.getDataDir(); | |
Scene scene = new Scene(); | |
Box box = new Box(); | |
Transform tr = scene.getRootNode().createChildNode(box).getTransform(); | |
tr.setScale(new Vector3(12, 12, 12)); | |
tr.setTranslation(new Vector3(10, 0, 0)); | |
tr = scene.getRootNode().createChildNode(box).getTransform(); | |
tr.setScale(new Vector3(5, 5, 5)); | |
tr.setEulerAngles(new Vector3(50, 10, 0)); | |
scene.getRootNode().createChildNode(); | |
scene.getRootNode().createChildNode().createChildNode(box); | |
scene.getRootNode().createChildNode().createChildNode(box); | |
AMFSaveOptions opt = new AMFSaveOptions(); | |
opt.setEnableCompression(false); | |
scene.save(MyDir + "test.amf", opt); |