Skip to main content

dxSVGRenderQuality Variable

Specifies the DevExpress SVG engine’s render quality level.

Declaration

var dxSVGRenderQuality: TdxSVGRenderQuality = srqHigh;

Variable Value

Type Description
TdxSVGRenderQuality

An SVG render quality level.

Remarks

The SVG engine renders a loaded image into a large render target buffer and then downscales and interpolates the image to the target pixel resolution for maximum quality. The engine multiplies the original SVG viewport dimensions by the current render scale factor to determine the image size (in pixels) within the render target buffer. The maximum scale factor and render target buffer size depend on the current value of the dxSVGRenderQuality global variable.

You can use this variable to change the SVG render engine’s default quality-to-performance ratio. Refer to the TdxSVGRenderQualityValues type description for detailed information on all available image quality levels and their limitations on the render target buffer size and the viewport scale factor.

See Also