public class DmlEffectsRenderingMode
Example:
Document doc = new Document(getMyDir() + "DrawingML shape effects.docx");
PdfSaveOptions options = new PdfSaveOptions();
options.setDmlEffectsRenderingMode(effectsRenderingMode);
Assert.assertEquals(DmlRenderingMode.DRAWING_ML, options.getDmlRenderingMode());
doc.save(getArtifactsDir() + "PdfSaveOptions.DrawingMLEffects.pdf", options);
Field Summary | ||
---|---|---|
static final int | SIMPLIFIED | |
Rendering of DrawingML effects are simplified.
|
||
static final int | NONE | |
No DrawingML effects are rendered.
|
||
static final int | FINE | |
DrawingML effects are rendered in fine mode which involves advanced processing.
In this mode rendering of effects gives better results but at a higher performance cost than |
public static final int SIMPLIFIED
public static final int NONE
public static final int FINE