CB2021 2 Posted September 4, 2021 I'm working on a 64 bit VCL project and trying to switch to SVG images. My SVG images are originally created as 128x128 pixels. The only components that come close to working are the TMS component TAdvSVGImageCollection working with the TVirtualImageList. Using these components the SVG images are not always shown correctly and they don't seem to ever resize. Automatic resizing of the images based on the size of the applied component seems to be the only reason to switch to SVG images. May I ask how other developers are implementing SVG images in Delphi? Share this post Link to post
Lajos Juhász 293 Posted September 4, 2021 You can also try https://github.com/EtheaDev/SVGIconImageList 2 Share this post Link to post
Bob Devine 11 Posted September 4, 2021 I'm using DHTML extensively for SVG: https://delphihtmlcomponents.com/ I tried a couple others but DHTML gives better re-sizing (really smooth without flickering) and was better at handling the SVGs I work with (generated by matplotlib). 1 Share this post Link to post