Here are a couple of things that are new or improved in update 11. For a full list, see the change log.
Added “AspectRatioAlign” and “AspectRatioMeetOrSlice” to SVG controls
It was already possible to automatically add a viebox to SVG graphics that don’t have one defined with the property “AutoViewbox”.
I have now added the properties “AspectRatioAlign” and “AspectRatioMeetOrSlice”. These properties give you further control how the SVG graphic is aligned within the control bounds.
Below you see the effect of setting the “AutoViewbox” property.
If “AutoViewbox” = FALSE, the SVG graphic will be rendered exactly as defined in the SVG graphic itself, if it is bigger than the SVG control, it will be clipped.
If “AutoViewbox” = TRUE, the SVG graphic will be aligned within the control according to the “AspectRatioAlign’ and “AsectRatioMeetOrSlice” settings, the default setting is “xMid yMid Meet”.
Here you see different settings for “AspectRatioAlign” and “AspectRatioMeetOrSlice”, these are equivalent to the settings of the SVG “preserveAspectRatio” attribute.
Improved rendering quality for rotated SVG graphics
On FMX you can rotate and scale controls. The SVG renderer in update 11 contains a new algorithm for calculating internal bitmap buffers, for things like filters and masks. This gives much better results for transformed controls.
Below you see de difference between the graphic rendered with update 10 left, and update 11 right.
![]() |
![]() |
This also works on VCL, although in Delphi, you don’t have properties on the VCL controls to scale or rotate, you might have SVG graphics that have a transformation defined on the outer SVG element.
Support for “fill-rule” and “clip-rule” attributes
These attributes give you control over how an path element is filled.
This attribute is not supported for all platforms, see table below.
SVG Render context | VCL | FMX |
Direct2D | Yes | n.a. |
GDI+ | No | n.a. |
Aggpas | Yes | Yes |
FMX canvas | n.a. | No |
The standard SVG render context for VCL is “Direct2D”, for FMX the standard is “FMX canvas”. You can overrule the stanard render context in the SVG control package by setting compiler directives in the “CompilerSettings.inc” file.
Improved parsing speed for pathdata
For testing the parsing speed I use an SVG graphic with a very large amount of path elements: theĀ Rose-Breasted-Groesbeck.svg. This SVG graphic has 36832 path elements.
Update 10 | Update 11 | |
Parsing time in ms | 8703 | 5766 |