Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

dxSVGRenderQuality Variable

Specifies the DevExpress SVG engine’s render quality level.

#Declaration

Delphi
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