Board index » cppbuilder » freeware/shareware/code for rendering svg

freeware/shareware/code for rendering svg


2005-10-19 08:05:25 PM
cppbuilder85
Hi.
I'm looking about for something to use in cbuilder 6 to render svg.
It is for a pet project I am working on.
Any pointers? It seems a rare beasty.
Thanks
Jeff Kish
 
 

Re:freeware/shareware/code for rendering svg

Jeff Kish wrote:
Quote
I'm looking about for something to use in cbuilder 6 to render svg.
Try this: (I haven't so I don't know how it'll work for you.)
moddom.gmxhome.de/stuff/SVG-Viewer.zip
If you have any problems, then just post.
Jonathan
 

Re:freeware/shareware/code for rendering svg

On Wed, 19 Oct 2005 13:20:16 -0400, "Jonathan Benedicto"
< XXXX@XXXXX.COM >wrote:
Quote
Jeff Kish wrote:
>I'm looking about for something to use in cbuilder 6 to render svg.

Try this: (I haven't so I don't know how it'll work for you.)

moddom.gmxhome.de/stuff/SVG-Viewer.zip

If you have any problems, then just post.

Jonathan

Thanks.
Not sure but it did not work too well.
only one of the samples loaded, and it would not display.
unfortunately the messages were mostly in German.
 

{smallsort}

Re:freeware/shareware/code for rendering svg

Jeff Kish wrote:
Quote
Not sure but it did not work too well.
only one of the samples loaded, and it would not display.
unfortunately the messages were mostly in German.
Can you post the German messages ?
Jonathan
 

Re:freeware/shareware/code for rendering svg

On Wed, 19 Oct 2005 22:12:42 -0400, "Jonathan Benedicto"
< XXXX@XXXXX.COM >wrote:
Quote
Jeff Kish wrote:
>Not sure but it did not work too well.
>only one of the samples loaded, and it would not display.
>unfortunately the messages were mostly in German.

Can you post the German messages ?


Jonathan

Sure.
When I load cowboy, I get:
(I don't have the accents)
Keine weiteren Dateien Konnen hinzugefugt werden!
The first 'o' in konnen has two adjacent dots over it.
The second 'u' in hinzugefugt has the same accent.
If I restart and try to load, say cowboy.svg first, I get slightly
different symptoms:
'236,331' ist kein gultiger Gleitkon'
 

Re:freeware/shareware/code for rendering svg

Jeff Kish wrote:
Quote
Sure.
When I load cowboy, I get:
(I don't have the accents)
Keine weiteren Dateien Konnen hinzugefugt werden!
Courtesy of Google: "No further files ability to be added"
Quote
If I restart and try to load, say cowboy.svg first, I get slightly
different symptoms:
'236,331' ist kein gultiger Gleitkon'
Courtesy of Google: '236,321' is no valid Gleitkon
It seems like that program is just a wrapper for the CLX TSVGViewer
component. So, you might want to look somewhere else for a component.
Jonathan
 

Re:freeware/shareware/code for rendering svg

On Thu, 20 Oct 2005 21:23:49 -0400, "Jonathan Benedicto"
< XXXX@XXXXX.COM >wrote:
Quote
Jeff Kish wrote:
>Sure.
>When I load cowboy, I get:
>(I don't have the accents)
>Keine weiteren Dateien Konnen hinzugefugt werden!

Courtesy of Google: "No further files ability to be added"

>If I restart and try to load, say cowboy.svg first, I get slightly
>different symptoms:
>'236,331' ist kein gultiger Gleitkon'

Courtesy of Google: '236,321' is no valid Gleitkon

It seems like that program is just a wrapper for the CLX TSVGViewer
component. So, you might want to look somewhere else for a component.

Jonathan

Thanks
 

Re:freeware/shareware/code for rendering svg

On Thu, 20 Oct 2005 21:23:49 -0400, "Jonathan Benedicto"
< XXXX@XXXXX.COM >wrote:
Quote
Jeff Kish wrote:
>Sure.
>When I load cowboy, I get:
>(I don't have the accents)
>Keine weiteren Dateien Konnen hinzugefugt werden!

Courtesy of Google: "No further files ability to be added"

>If I restart and try to load, say cowboy.svg first, I get slightly
>different symptoms:
>'236,331' ist kein gultiger Gleitkon'

Courtesy of Google: '236,321' is no valid Gleitkon

It seems like that program is just a wrapper for the CLX TSVGViewer
component. So, you might want to look somewhere else for a component.

Jonathan

Too bad. If I had the source maybe I could fix it up some more.
Anyone want to team up on an svg reader/display component for
cbuilder?
 

Re:freeware/shareware/code for rendering svg

Jeff Kish < XXXX@XXXXX.COM >wrote:
Quote
I'm looking about for something to use in cbuilder 6 to render
svg.
You can download an svg browser plugin from adobe:
www.adobe.com/svg/viewer/install/main.html
This enables your internet explorer to display svg.
In BCB you can then use the TCppWebBrowser to display an svg.
This works for me:
CppWebBrowser1->Navigate(WideString("test.svg").c_bstr());
 

Re:freeware/shareware/code for rendering svg

Jeff Kish wrote:
Quote
Hi.
I'm looking about for something to use in cbuilder 6 to render svg.
It is for a pet project I am working on.
Any pointers? It seems a rare beasty.
Thanks
Jeff Kish
Mozilla has an SVG project:
www.mozilla.org/projects/svg/
I don't know how active it is but it is native SVG versus the plug-in
SVG provided by the Adobe implementation. There are some links to SVG
resources there, too.
Regards,
Jim Dodd
Onset Computer Corp.
 

Re:freeware/shareware/code for rendering svg

On Tue, 25 Oct 2005 09:59:33 -0400, Jim Dodd < XXXX@XXXXX.COM >
wrote:
Quote
Jeff Kish wrote:
>Hi.
>I'm looking about for something to use in cbuilder 6 to render svg.
>It is for a pet project I am working on.
>Any pointers? It seems a rare beasty.
>Thanks
>Jeff Kish

Mozilla has an SVG project:


www.mozilla.org/projects/svg/

I don't know how active it is but it is native SVG versus the plug-in
SVG provided by the Adobe implementation. There are some links to SVG
resources there, too.

Regards,

Jim Dodd
Onset Computer Corp.
Cool.
I'm actually quite disappointed in the Adobe plugin.
The ability to zoom and pan is pretty awkward, and the activex control
behind it is documented as not being supported for programming.
OK.. I'll check out the Mozilla SVG project.
Thanks again, and if anyone sees anything else I'd appreciate a heads
up. I still would like a component though that works better than Adobe
(but the few that exist are quite expensive).