Search found 81 matches

by tsdineen
2008-03-08T07:42:22-07:00
Forum: Developers
Topic: SVG coder now using Cairo
Replies: 3
Views: 9696

SVG coder now using Cairo

I see in 6.3.9-3, the svg coder is now using Cairo. Unfortunately, I am on a version of the Linux OS that doesn't currently support it. The machines I am using are owned by our IT department, which only are allowed standard patch upgrades. Would it be possible to add a MAGICKCORE_CAIRO_DELEGATE defi...
by tsdineen
2008-03-08T07:18:37-07:00
Forum: MagickWand
Topic: Hi,
Replies: 6
Views: 17145

Re: Hi,

If you just want to convert svg to png, then the rsvg tool does that and uses the librsvg with more svg functionality. They also, have rsvg-view to view svg files. I link in librsvg to ImageMagick, because I need more conversions than just that and want the maximum functionality.
by tsdineen
2008-03-07T07:19:37-07:00
Forum: MagickWand
Topic: Hi,
Replies: 6
Views: 17145

Re: Hi,

The statement is if you use the internal svg code. You can link in the librsvg product, which fixes most of the problems. The only problem with building this into ImageMagick is your build machine must have the minimum package installed for it to run. Even if you have the correct version in your lib...
by tsdineen
2008-02-20T05:14:48-07:00
Forum: Users
Topic: PNG support natively
Replies: 7
Views: 14829

Re: PNG support natively

There is probably a libpng in /usr/lib or some other $LD_LIBRARY_PATH location.

do an ldd or chatr on convert and see where it might be pulled in.
by tsdineen
2008-02-19T06:15:53-07:00
Forum: Users
Topic: PNG support natively
Replies: 7
Views: 14829

Re: PNG support natively

What platform are you on?
by tsdineen
2008-02-18T08:20:35-07:00
Forum: Users
Topic: convert SVG to PNG (textPath)
Replies: 8
Views: 32845

Re: convert SVG to PNG (textPath)

I've not tried the converion you mentioned, but I am also using a different version of rsvg. I believe I am using the last verison before they started using Cario, which is 2.12.7.
by tsdineen
2008-02-15T07:58:13-07:00
Forum: Users
Topic: convert SVG to PNG (textPath)
Replies: 8
Views: 32845

Re: convert SVG to PNG (textPath)

What happens when you use rsvg directly?

rsvg test.svg test.png

It's possible that there is some missing initialization code in the svg.so that may be in th rsvg main code.
by tsdineen
2008-02-14T07:19:10-07:00
Forum: Users
Topic: convert SVG to PNG (textPath)
Replies: 8
Views: 32845

Re: convert SVG to PNG (textPath)

Try the latest 6.3.8 version. There was a small change to the svg lib, that may help your cause.
by tsdineen
2008-01-24T14:29:27-07:00
Forum: Users
Topic: Problem view multipage PS file
Replies: 2
Views: 6307

Re: Problem view multipage PS file

Yes, that fixed that. Now, I have to add this to my my api calls, which I thought I already had.

Thanks.
by tsdineen
2008-01-24T14:12:18-07:00
Forum: Users
Topic: Problem view multipage PS file
Replies: 2
Views: 6307

Problem view multipage PS file

I am using ImageMagick 6.3.7-10 and the latest deletes, mainly libpng 1.2.24 and ghostscript 8.61. When reading a two page ps file, display is cropping the second page. I don't see this problem if I use gs directly. Is this a known problem, or do I need to send more information and a ps file? Thanks,
by tsdineen
2008-01-17T10:52:55-07:00
Forum: Bugs
Topic: Changes in delegate file
Replies: 1
Views: 6026

Changes in delegate file

It would appear the -g option was removed from the delegates file sometime between 6.3.6-10 and 6.3.7-10 for ps:* and pcl:*. This is causing problems when trying to read in a pcl format. I noticed the ps delegate entries had the same change. Running with the delegates file as installed produces the ...
by tsdineen
2008-01-02T15:37:55-07:00
Forum: Bugs
Topic: Problem using RSVG and external resources
Replies: 1
Views: 5600

Problem using RSVG and external resources

When using librsvg to view svg formats and try to display an svg image with external resources, like <image xlink:href>, display will only find those images if they reside in CWD. This is because base_uri hasn't been set in librsvg. In the svg.c coder code, I added a line of code to set the base uri...
by tsdineen
2007-11-30T07:41:25-07:00
Forum: Developers
Topic: Using librsvg
Replies: 2
Views: 8157

Re: Using librsvg

Rebuilding with --without-modules got me around the problem. Chances are one called lib is being unloaded before the parent can finish it's calls to the the lib. Very tricky when you have an app that uses a lib that uses a lib. In this case there are two more layers of libs being used.
by tsdineen
2007-11-27T09:33:33-07:00
Forum: Developers
Topic: Using librsvg
Replies: 2
Views: 8157

Using librsvg

I am in need of adding librsvg to IM in order to handle svg format better, and for the most part this is working. I do run into a SegFault with display on exit. I haven't debug this thoroughly, but it appears to be coming from IM. Has anyone tried this so I can get to the bottom of the problem? Than...
by tsdineen
2007-11-06T12:48:54-07:00
Forum: Users
Topic: Problem reading cgm with 6.3.6-8
Replies: 2
Views: 6704

Re: Problem reading cgm with 6.3.6-8

***FATAL ERROR: CGMmain [140] Cannot open file (Input file: <.cgm) I believe that is a ralcgm error. Ralcgm is in the path and executable as this call ralcgm -d ps -oC < ~/data/file.cgm > ./tmp.ps; display ./tmp.ps works fine. Also, display works as expected with the 6.3.3 version. One note that I ...