vote up 1 vote down star
1

What are options to import and render SVG images with Delphi (Win32)?

"Interactive" component would be big advantage, I'd like to be able to modify the SVG image dynamically (change colors, line widths, texts) and get events when user clicks the image.

flag

5 Answers

vote up 3 vote down

The project ExtGraph (http://extgraph.sourceforge.net/index.html) based on TSimpleGraph (http://delphiarea.com/products/simplegraph/) have some support to SVG.
See this page:
http://extgraph.sourceforge.net/docs/howto/svgclocks.htm
for more information. There are some code and images.

Regards.

P.D:Excuse-me for my bad english. ;-o

link|flag
4  
NEVER EVER apologize for your possibly less-than-perfect English. We appreciate that you do write in English, and not Egyptian hieroglyphs :-), and then even the natives' English isn't always perfect. – stevenvh Feb 14 at 5:47
vote up 2 vote down

Sorry for up old thread - but here is native way to work with svg - http://www.aggpas.org/ Maybe it will be useful for someone

link|flag
vote up 1 vote down

Can Delphi call Win32 dlls and/or functions directly like VB6 can?

If so then you can grab one of the many SVG platforms that exist.

link|flag
Yes it can call win32 dlls and do ActiveX/COM – Lars Truijens Sep 15 '08 at 16:42
Libboard is for exporting only? – Harriv Sep 15 '08 at 17:09
Antigrain doesn't render text – Harriv Sep 15 '08 at 17:17
vote up 1 vote down

Adobe's own SVG Viewer (http://www.adobe.com/svg/viewer/install/) is COM based and can be used in Delphi by wrapping it with the import tools. The Adobe SVG viewer is discontinued, but will be available for download until end of 2008. I don't know of any direct COM based replacements at the point of writing this, but there are some products mentioned here (http://wiki.svg.org/Viewer_Implementations).

You can control the SVG container and DOM in detail, and it supports interaction and dynamic SVG documents.

link|flag
Adobe SVG Viewer sounds good, too bad it's discontinued.. – Harriv Sep 16 '08 at 10:45
vote up 0 vote down

I've done this using TeeChart as a canvas (hiding all of the chart elements). It has a pretty good SVG export engine (as well as PDF, etc). Things like rotated text sometimes get misplaced, but for my needs it's the smoothest path I've found, and is actively supported.

link|flag
I need SVG import, not export. – Harriv Sep 25 '08 at 9:12
Sorry - senior moment. – Argalatyr Oct 1 '08 at 5:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.