Search found 25563 matches

by fmw42
2009-05-19T13:00:11-07:00
Forum: Users
Topic: layers option missing?
Replies: 9
Views: 15464

Re: layers option missing?

I don't think it is complete, but you can search http://www.imagemagick.org/script/changelog.php
by fmw42
2009-05-19T10:22:01-07:00
Forum: Users
Topic: Error Message While Schaling BitMap Image
Replies: 46
Views: 68025

Re: Error Message While Schaling BitMap Image

what happens if you rename identify to say imidentify in /usr/local/bin (or where ever your IM is stored). then try imidentify image.bmp this way you can be sure that there is no confusion between IM's identify and any other identify belonging to your system or any other application Windows users of...
by fmw42
2009-05-19T10:17:32-07:00
Forum: Users
Topic: layers option missing?
Replies: 9
Views: 15464

Re: layers option missing?

by fmw42
2009-05-18T10:55:06-07:00
Forum: Users
Topic: Convert a pdf to picture using ghostscript and imagemagick
Replies: 15
Views: 28483

Re: Convert a pdf to picture using ghostscript and imagemagick

AGAIN. Supersampling is a set of commands not a setting while installing IM. Read Anthony's page at http://www.imagemagick.org/Usage/text/#postscript for how to do supersampling Anthony describes one approach to supersampling above as convert -density 196 ps_version.ps'[0]' -resample 72 \ -trim +rep...
by fmw42
2009-05-17T15:28:46-07:00
Forum: Users
Topic: Special crop and resize
Replies: 11
Views: 59539

Re: Special crop and resize

Damn -- one point off! I wish there were some way to upgrade IM on my client's production server. But alas, there is not. Am I SOL? Not completely out of luck. You can script it easy enough. I already have one called squareup at http://www.fmwconcepts.com/imagemagick/index.html. I wrote the script ...
by fmw42
2009-05-17T10:04:05-07:00
Forum: Users
Topic: Special crop and resize
Replies: 11
Views: 59539

Re: Special crop and resize

convert input.jpg -resize '25x25^' -gravity center -crop 25x25+0+0 +repage result.jpg

but need IM v6.3.8-3 or higher
by fmw42
2009-05-15T15:27:12-07:00
Forum: Developers
Topic: Resize image to exact 64x64 Pixels
Replies: 3
Views: 12719

Re: Resize image to exact 64x64 Pixels

You can script it by testing the image sizes. I wrote a bash script before the ^ option was available. See squareup at http://www.fmwconcepts.com/imagemagick/index.html
by fmw42
2009-05-15T09:10:07-07:00
Forum: Users
Topic: PDF to JPG Washed Out / Faded Colors
Replies: 13
Views: 28859

Re: PDF to JPG Washed Out / Faded Colors

fmw42 your output seems to be the same as my output. yours :http://www.fmwconcepts.com/misc_tests/pricelist_new0.jpg mine: http://img188.imageshack.us/img188/8291/page0.jpg No, my output is much sharper. Look carefully at the text at full resolution display. But as Anthony says, you need to use pro...
by fmw42
2009-05-15T09:07:38-07:00
Forum: Users
Topic: Convert a pdf to picture using ghostscript and imagemagick
Replies: 15
Views: 28483

Re: Convert a pdf to picture using ghostscript and imagemagick

Supersampling is a set of commands not a setting while installing IM. Read Anthony's page at http://www.imagemagick.org/Usage/text/#postscript for how to do supersampling
by fmw42
2009-05-15T09:03:51-07:00
Forum: Users
Topic: How do I store ImageMagick output in an array / sql-db?
Replies: 8
Views: 15469

Re: How do I store ImageMagick output in an array / sql-db?

There is an easier way that I had forgotten about using string formats. convert rose: rose: rose: rose.pdf freds-mac-mini:~ fred$ identify -format "%n" rose.pdf 3 see http://www.imagemagick.org/script/escape.php also num=`identify -format "%n" rose.pdf` freds-mac-mini:~ fred$ ech...
by fmw42
2009-05-15T08:56:22-07:00
Forum: Developers
Topic: Resize image to exact 64x64 Pixels
Replies: 3
Views: 12719

Re: Resize image to exact 64x64 Pixels

You need IM v6.3.8-3 to use -resize with ^

Add +repage after your crop
by fmw42
2009-05-14T21:21:28-07:00
Forum: Users
Topic: best command line options for jpg to transp png image
Replies: 11
Views: 18942

Re: best command line options for jpg to transp png image

See IM Examples Channels and Masks, Transparency Restoration and Masking... Masking with Anti-Aliased Edges http://www.imagemagick.org/Usage/channe ... antialised The specific is example is with a non-white background, but should work even better with a solid background color, such as white. Nice e...
by fmw42
2009-05-14T18:39:59-07:00
Forum: Users
Topic: PDF to JPG Washed Out / Faded Colors
Replies: 13
Views: 28859

Re: PDF to JPG Washed Out / Faded Colors

Your output using -colorspace rgb is the same as mine. But.... You will need to add the appropriate profiles to get your colors better. I am no expert on that. Did you read Anthony's page on profiles? Search the archives. I have seen many examples of this. But you can also improve antialiasing by su...
by fmw42
2009-05-14T17:42:39-07:00
Forum: Users
Topic: PDF to JPG Washed Out / Faded Colors
Replies: 13
Views: 28859

Re: PDF to JPG Washed Out / Faded Colors

correction! this works just fine. perhaps your image is cmyk pdf convert -colorspace rgb pricelist.pdf info: pricelist.pdf[0] PDF 1191x595 1191x595+0+0 16-bit DirectClass 4.055mb pricelist.pdf[1] PDF 1191x595 1191x595+0+0 16-bit DirectClass 4.055mb So two pages. This then works to produce reasonable...