Even though my understanding of German is limited, during my testing, the TSVGGraphic class functions correctly and I was able to display a SVG image inside a report.
Note that if you decide to use this library, you will need to create a class to register the TSVGGraphic class with ReportBuilder (below is my class named ppSVG.pas). It also looks like the developer of this library uses numerous other libraries (available for download from the site as well). These however are Delphi 7 compatible libraries. If you are using a newer version of Delphi, you may need to find updated versions of these libraries to use.
unit ppSVG;
interface
uses ppCtrls, SVGImage;
implementation
{****************************************************************************** * ** I N I T I A L I Z A T I O N / F I N A L I Z A T I O N * {******************************************************************************}
Comments
After a bit of research on the web, I found this free component...
http://www.mwcs.de/svgimage.html
Even though my understanding of German is limited, during my testing, the
TSVGGraphic class functions correctly and I was able to display a SVG image
inside a report.
Note that if you decide to use this library, you will need to create a class
to register the TSVGGraphic class with ReportBuilder (below is my class
named ppSVG.pas). It also looks like the developer of this library uses
numerous other libraries (available for download from the site as well).
These however are Delphi 7 compatible libraries. If you are using a newer
version of Delphi, you may need to find updated versions of these libraries
to use.
unit ppSVG;
interface
uses
ppCtrls, SVGImage;
implementation
{******************************************************************************
*
** I N I T I A L I Z A T I O N / F I N A L I Z A T I O N
*
{******************************************************************************}
initialization
ppRegisterGraphicClass('SVG', TSVGGraphic);
finalization
ppUnRegisterGraphicClass(TSVGGraphic);
end.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com