Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

SVG

edited January 2010 in General
I need to be able to convert JPG / BMP to SVG graphics and then use the SVG
in report builder. ( Large size printing).

Any info appreciated

SteveW

Comments

  • edited January 2010
    Hi Steve,

    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

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.