EvRenderOptions Interface
The EvRenderOptions TS interface defines a blueprint of a JS object with the configurational settings for rendering a given item into an image.
Properties
An EvRenderOptions object has the following properties:
optional antialiasing: boolean;A Boolean, a switch to turn on (
true) or off (false) antialiasing for the rendered image.The default value is
true.optional colorMode: EvRenderColorMode;A member of the
EvRenderColorModeenumeration, the color mode of the rendered image.The default value is
"rgb".optional dpi: number;A number, the resolution of the rendered image in dots per inch (DPI).
The default value is
96.optional interpolation: EvRenderInterpolation;A member of the
EvRenderInterpolationenumeration, an interpolation method used for rendering the image.The default value is
"lanczos".optional transparency: boolean;A Boolean, a switch to make the background of the rendered image transparent (
true) or white (false).The default value is
false.