Search found 547 matches

by Drarakel
2010-05-07T12:10:02-07:00
Forum: Users
Topic: Converting TIFF to Another TIFF
Replies: 5
Views: 12355

Re: Converting TIFF to Another TIFF

Actually, ImageMagick does change some values. For example, IrfanView shows 600dpi for your original file and 300dpi for the IM output. But the values of the various profiles are not updated. And for Photoshop and also identify, the values in these profiles 'count more'. In your case, with 'convert ...
by Drarakel
2010-05-07T11:47:18-07:00
Forum: Bugs
Topic: convert -list exits with return-code of 1
Replies: 9
Views: 21338

Re: convert -list exits with return-code of 1

fmw42 wrote:convert -list list
I know. But it seemed odd to me that when it says "Choose from these list types", that only the lower half of the result of "convert -list list" is presented there.
by Drarakel
2010-05-07T10:01:14-07:00
Forum: Users
Topic: Windows installer download problem
Replies: 2
Views: 6344

Re: Windows installer download problem

I don't have any problems in downloading the files right now.
As to the FTP server: You have to go the 'binaries' directory. :)
by Drarakel
2010-05-07T09:42:41-07:00
Forum: Users
Topic: Using the Filename as Text on the image.
Replies: 16
Views: 41993

Re: Using the Filename as Text on the image.

If you want to drop a directory (with subdirectories) onto the batch file, try this: @ECHO OFF SET height=60 FOR /R %1 %%i IN (*.*) DO ( ECHO Processing "%%i"... convert "%%i" -background white ( -size 1x%height% xc:white ^) -append ^ ( -size x%height% -fill black label:"%%~...
by Drarakel
2010-05-07T08:57:00-07:00
Forum: Bugs
Topic: convert -list exits with return-code of 1
Replies: 9
Views: 21338

Re: convert -list exits with return-code of 1

Not the same problem, but also about "convert -list" (don't want to start a new thread for this): When I type "convert -list Module", I get that list, but I also get the following message at the end (with IM v6.6.1-5): convert: image coder signature mismatch `XTRN': d09f50 != 661...
by Drarakel
2010-05-07T08:47:58-07:00
Forum: Bugs
Topic: "-alpha on" sets bad value top-left
Replies: 18
Views: 37199

Re: "-alpha on" sets bad value top-left

Thanks for your responses! So.. Could the documentation be updated with a warning that "-alpha on" shouldn't be used for images without existing transparency data (as it could lead to problems)? http://www.imagemagick.org/script/command-line-options.php#alpha http://www.imagemagick.org/Usa...
by Drarakel
2010-05-07T08:37:24-07:00
Forum: Bugs
Topic: Bug in reading of BMP V4 and V5 files
Replies: 2
Views: 7202

Re: Bug in reading of BMP V4 and V5 files

Thank you!
by Drarakel
2010-05-07T08:30:32-07:00
Forum: Bugs
Topic: BUG!? border + trim = 2 line remaining only at top
Replies: 13
Views: 26803

Re: BUG!? border + trim = 2 line remaining only at top

All of the above-mentioned PNGs are written as palette! Perhaps that makes my 'problem' clearer: convert B156074.png PNG:- | identify -format %k - 248 convert B156074.png GIF:- | identify -format %k - 248 convert B156074.png -bordercolor white -border 8 PNG:- | identify -format %k - 248 convert B156...
by Drarakel
2010-05-06T16:43:09-07:00
Forum: Users
Topic: PDF to JPG, missing image filename error
Replies: 3
Views: 10833

Re: PDF to JPG, missing image filename error

I don't know why it works sometimes on your system.. But in the above example, ImageMagick simply doesn't find Ghostscript. ImageMagick first checks the registry. If this is without success, it just calls the filename (without absolute path). You could try adding the 'gs8.71/bin' directory to your P...
by Drarakel
2010-05-06T16:18:14-07:00
Forum: Users
Topic: EPS to JPG - a problematic convert - example files existing
Replies: 5
Views: 12451

Re: EPS to JPG - a problematic convert - example files exist

Ghostscript alone was probably the 'culprit'.
But be warned: Even with the current versions, some CMYK EPS files could still be problematic.
by Drarakel
2010-05-06T16:13:15-07:00
Forum: Users
Topic: How crop a PDF file
Replies: 14
Views: 48761

Re: How crop a PDF file

It would be sufficient if you could copy the TrimBox values to the CropBox (or MediaBox) values. I don't think that there is free software that's able to do this. (But I don't do such stuff, so who knows.. Maybe there is?) You could possibly change the values of some files directly in PHP. If you ch...
by Drarakel
2010-05-06T15:50:54-07:00
Forum: Users
Topic: Issues with Color Conversion
Replies: 9
Views: 20709

Re: Issues with Color Conversion

It shouldn't do any harm (with two sRGB profiles at the start), but this is not the proper way to do a conversion. If you want to use the profile of the input file, you don't need the first '-profile profile.icc' part. If you want to add the first profile manually, you should use '-strip' or at leas...
by Drarakel
2010-05-06T14:43:12-07:00
Forum: Users
Topic: Trouble with mogrify
Replies: 2
Views: 6613

Re: Trouble with mogrify

Adding "-colorspace RGB" after mogrify will affect ImageMagick AND Ghostscript (which is responsible for reading the EPS files). Ghostscript could use another output device then (and perhaps the 'dUseCIEColor' parameter is changed). Adding "-colorspace RGB" after convert (and aft...
by Drarakel
2010-05-06T14:03:21-07:00
Forum: Users
Topic: Issues with Color Conversion
Replies: 9
Views: 20709

Re: Issues with Color Conversion

jyelloz wrote:+profile '!icm,*'
Just as a side note: In your example, this is the same as "-strip". :wink:
by Drarakel
2010-05-06T13:15:52-07:00
Forum: Developers
Topic: Conversion Problems from CMYK
Replies: 8
Views: 25126

Re: Conversion Problems from CMYK

tsdesigns wrote:we are using the latest stable version of ImageMagick.
And Ghostscript?