java.lang.Object
com.aspose.words.Dml3DEffectsRenderingMode
public class Dml3DEffectsRenderingMode
- extends java.lang.Object
Utility class containing constants.
Specifies how 3D shape effects are rendered.
Example:
Shows how 3D effects are rendered.
Document doc = new Document(getMyDir() + "DrawingML shape 3D effects.docx");
RenderCallback warningCallback = new RenderCallback();
doc.setWarningCallback(warningCallback);
PdfSaveOptions saveOptions = new PdfSaveOptions();
saveOptions.setDml3DEffectsRenderingMode(Dml3DEffectsRenderingMode.ADVANCED);
doc.save(getArtifactsDir() + "PdfSaveOptions.Dml3DEffectsRenderingModeTest.pdf", saveOptions);
|
Field Summary |
static final int | BASIC = 0 | |
|
A lightweight and stable rendering, based on the internal engine,
but advanced effects such as lighting, materials and other additional effects
are not displayed when using this mode.
Please see documentation for details.
|
static final int | ADVANCED = 1 | |
|
Rendering of an extended list of special effects including advanced 3D effects
such as bevels, lighting and materials.
|
BASIC = 0 | |
public static final int BASIC |
-
A lightweight and stable rendering, based on the internal engine,
but advanced effects such as lighting, materials and other additional effects
are not displayed when using this mode.
Please see documentation for details.
ADVANCED = 1 | |
public static final int ADVANCED |
-
Rendering of an extended list of special effects including advanced 3D effects
such as bevels, lighting and materials.
The current implementation uses OpenGL.
Please make sure that OpenGL library version 1.1 or higher is installed on your system before use.
This mode is still under development, and some things may not be supported, so it's recommended to use
the BASIC mode if the rendering result is not acceptable.
Please see documentation for details.
See Also:
Aspose.Words Documentation - the home page for the Aspose.Words Product Documentation.
Aspose.Words Support Forum - our preferred method of support.