Search found 13 matches

by my600080
2011-02-21T12:41:10-07:00
Forum: Users
Topic: undefined reference to `png_longjmp'
Replies: 2
Views: 13708

Re: undefined reference to `png_longjmp'

Thanks a lot for your help. I've installed all the font libraries locally under /home/mmj. So, I have the following directories under /home/mmj. How can I get ./configure or make to use my installed font libraries? Many thanks! include/ freetype2 jconfig.h jpeglib.h pngconf.h tiffconf.h tiffio.hxx ...
by my600080
2011-02-21T09:58:02-07:00
Forum: Users
Topic: undefined reference to `png_longjmp'
Replies: 2
Views: 13708

undefined reference to `png_longjmp'

Hi, When I tried to do "make", I kept getting the following message: magick/.libs/libMagickCore.so: undefined reference to `png_longjmp' magick/.libs/libMagickCore.so: undefined reference to `png_set_longjmp_fn' collect2: ld returned 1 exit status make[1]: *** [utilities/animate] Error 1 It seems ...
by my600080
2011-02-21T06:02:45-07:00
Forum: Users
Topic: files in /tmp
Replies: 2
Views: 10222

Re: files in /tmp

Thanks for your reply. Because it's a very big job (will take likely around two days), before I start another process, I want to see what might have caused the problem. All I was doing is to use a perl script to call a webservice. The webservice handles the conversion of any tiff, pdf files to pngs ...
by my600080
2011-02-20T14:10:08-07:00
Forum: Users
Topic: files in /tmp
Replies: 2
Views: 10222

files in /tmp

Hi, I'm processing a lot of images using ImageMagick 6.6.5. But the files in /tmp dir gets to 101G and eats up all my disk space on the linux box. I'm wondering maybe imagemagick failed to destroy those files. If so, what problems can cause ImageMagick fail to destroy those files? Is there a way ...
by my600080
2010-08-24T06:28:31-07:00
Forum: Users
Topic: Convert xml file to image
Replies: 1
Views: 14715

Re: Convert xml file to image

I found a solution by treating the xml file as plain text and do the following conversion:

expand TestingConversion.xml | convert txt:- png:testxml.png

(expand is used to handle tabs: http://www.imagemagick.org/Usage/text/)

Thanks a lot!
by my600080
2010-08-24T05:25:47-07:00
Forum: Users
Topic: Convert xml file to image
Replies: 1
Views: 14715

Convert xml file to image

Hi, I'm trying to convert xml file to image. But I'm getting the following errors: convert -size 640x480 TestingConversion.xml testxml2.png convert: no decode delegate for this image format `TestingConversion.xml' @ error/svg.c/ReadSVGImage/2815. convert: missing an image filename `testxml2.png ...
by my600080
2010-08-24T05:22:18-07:00
Forum: Users
Topic: Build IM with xml support
Replies: 2
Views: 6041

Re: Build IM with xml support

Thanks! I successfully rebuilt the IM with the xml support now. Again, thanks a lot!
by my600080
2010-08-23T08:22:42-07:00
Forum: Users
Topic: Build IM with xml support
Replies: 2
Views: 6041

Build IM with xml support

Hi, I would like to build IM which can convert xml file to images. I have installed all the necessary delegates ( I think ) including libxml2-2.7.3.tar.gz and others. But when I re-configure the IM, it still shows the following in my config.log file: XML --with-xml=no no Is there a flag I have to ...
by my600080
2010-07-29T13:35:00-07:00
Forum: Users
Topic: converting a pdf with japanese fonts
Replies: 6
Views: 26883

Re: converting a pdf with japanese fonts

Hi, I'm having a similar error while converting a pdf file. I have tried various ways to fix it but I must have done something wrong. The problem just cannot be fixed. Can you tell me the detailed step of doing this? I have added the entry in cidfmap file but things just won't work. Thanks ...
by my600080
2010-06-14T04:53:23-07:00
Forum: Users
Topic: convert identical image with different name
Replies: 10
Views: 21243

Re: convert identical image with different name

This is wonderful! It works very well for the png images conversion. Now, I am able not to generate a new png image every time even though it exists in my database. Thanks a lot for all of your help.
by my600080
2010-06-11T15:13:41-07:00
Forum: Users
Topic: convert identical image with different name
Replies: 10
Views: 21243

Re: convert identical image with different name

I found this post that someone seems to have similar problem: http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=12230 User magick mentioned to do the following the delete file property: convert logo.jpg +set modify-date +set create-date logo.png I am quite new to imagemagick so I'm not ...
by my600080
2010-06-11T13:30:40-07:00
Forum: Users
Topic: convert identical image with different name
Replies: 10
Views: 21243

Re: convert identical image with different name

Yes, you are right. When I use "compare -metric RMSE image1.png image2.png NULL:" to compare, the result is 0 (0). But my problem is that, the converted images are already in byte array format in the database. I am not able to loop through all the images and find if there is one that's the same as ...
by my600080
2010-06-11T12:46:25-07:00
Forum: Users
Topic: convert identical image with different name
Replies: 10
Views: 21243

convert identical image with different name

I'm trying to use imagemagick to convert images generated on the fly with random names. The chances are that the newly generated image might be identical to previous generated image but with different file name. If that's the case, I don't want to write the converted image to the database. I used ...