Search found 25563 matches

by fmw42
2008-04-25T09:56:51-07:00
Forum: Users
Topic: Newbie question regarding batch conversion
Replies: 3
Views: 8312

Re: Newbie question regarding batch conversion

The example works fine under UNIX. There are special rules for Windows. See http://www.imagemagick.org/Usage/api/#windows that deal with \ and escape characters. convert -size 140x80 xc:none -fill grey \ -gravity NorthWest -draw "text 10,10 'Copyright'" \ -gravity SouthEast -draw "tex...
by fmw42
2008-04-24T21:58:34-07:00
Forum: Users
Topic: Daylight map image generation
Replies: 6
Views: 14146

Re: Daylight map image generation

I don't know if IM can do this, but post links to your input and output images.
by fmw42
2008-04-24T21:57:35-07:00
Forum: Users
Topic: montage photos with soft, blurred transition
Replies: 3
Views: 7914

Re: montage photos with soft, blurred transition

post a link to an example of each image and the result
by fmw42
2008-04-24T21:54:59-07:00
Forum: Users
Topic: How can i add a disclamer to any page of a multipage tif?
Replies: 1
Views: 5168

Re: How can i add a disclamer to any page of a multipage tif?

use -coalesce

See:

http://www.imagemagick.org/Usage/anim_mods/#label

This should work for tiff frames as well as gif frames, but I have not tested it.
by fmw42
2008-04-24T21:47:07-07:00
Forum: Users
Topic: auto-crop multiple old photographs from scanned image?
Replies: 11
Views: 40266

Re: auto-crop multiple old photographs from scanned image?

Sorry, I did not see your post until now. Perhaps you can post a link to an example image, if you have not already solved your problem.
by fmw42
2008-04-23T21:05:56-07:00
Forum: Bugs
Topic: ImageMagick Unable To Find libtiff.a
Replies: 4
Views: 11832

Re: ImageMagick Unable To Find libtiff.a

Did you install the delegate libraries? Check your configuration and look at the line for DELEGATES convert -list configure On my system I installed a bunch of delegates including libtiff and so my line says: DELEGATES bzlib fontconfig freetype gs jpeg jp2 lcms lqr openexr png tiff x11 xml zlib The ...
by fmw42
2008-04-23T19:45:24-07:00
Forum: Users
Topic: Problems with resampling to change resolution
Replies: 8
Views: 22586

Re: Problems with resampling to change resolution

I found the following information at http://www.imagemagick.org/Usage/resize/#resample "Note that only a small number of image file formats (such as JPEG, PNG, and TIFF) are capable of storing the image resolution or density with the image data. For formats which do not support an image resolut...
by fmw42
2008-04-23T13:08:18-07:00
Forum: Bugs
Topic: inconsistency in comparing bmp files
Replies: 28
Views: 48181

Re: inconsistency in comparing bmp files

I don't think that is the way -colors works. It maps the colors onto a tree and traverses the tree is some fashion that may end up with 256 different assignments to the same number of colors - regrouping them in some different manner. It makes a tree an traverses it no matter if the number of colors...
by fmw42
2008-04-23T10:56:34-07:00
Forum: Bugs
Topic: inconsistency in comparing bmp files
Replies: 28
Views: 48181

Re: inconsistency in comparing bmp files

I am not sure what your problem is? What is qq.tiff? If I do convert rose: -type GrayScale -colors 256 rose.tiff convert rose: -type GrayScale rose2.tiff compare -metric rmse rose.tiff rose2.tiff null: 374.619 (0.00571632) I don't expect the two image to be the same. When you add -colors 256, you ar...
by fmw42
2008-04-23T10:34:24-07:00
Forum: Users
Topic: Problem Compiling on Mac OS X
Replies: 4
Views: 12536

Re: Problem Compiling on Mac OS X

I don't know if this will help as I have never used Fink or MacPorts, but you may want to look this over. It is a post I made some time ago from my experiences installing IM.

viewtopic.php?f=1&t=10442&hilit=Mac+OS
by fmw42
2008-04-22T20:36:48-07:00
Forum: Users
Topic: Merge Image with ImageMagik
Replies: 2
Views: 7533

Re: Merge Image with ImageMagik

I don't know enough about PDF files, but I see a couple of problems. 1) The convert syntax is usually to have the input image after convert. convert input options output I am not sure about where you need to put -density with PDFs, but you could try either: convert page1.pdf -density 300x300 -crop 1...
by fmw42
2008-04-22T20:27:49-07:00
Forum: Users
Topic: How to trim the transparent pixels from the image border?
Replies: 3
Views: 22384

Re: How to trim the transparent pixels from the image border?

This seems to work for me: Create image with transparent border: convert -size 100x100 xc:white white.png convert white.png -bordercolor none -border 50x50 test.png identify test.png test.png PNG 200x200 200x200+0+0 DirectClass 16-bit 784b Trim border: convert test.png -trim +repage test2.png identi...
by fmw42
2008-04-22T20:07:01-07:00
Forum: Bugs
Topic: Possible Bug in IM 6.4.0-9
Replies: 3
Views: 9231

Re: Possible Bug in IM 6.4.0-9

freds-mac-mini:~ fred$ convert -quiet -regard-warnings rose: +repage rose.png freds-mac-mini:~ fred$ echo $status freds-mac-mini:~ fred$ Thus I would say that it returns 0. I am on Mac OSX Tiger on a PPC. freds-mac-mini:~ fred$ convert -list configure Path: /usr/local/lib/ImageMagick-6.4.0/config/co...
by fmw42
2008-04-22T17:54:18-07:00
Forum: Bugs
Topic: Possible Bug in IM 6.4.0-9
Replies: 3
Views: 9231

Possible Bug in IM 6.4.0-9

Hello, Many of my scripts are now failing in IM 6.4.0-9 Q16-hdri due to a change, I think, in -regards-warnings. If I do: if convert -quiet -regard-warnings rose: +repage rose.png then echo "OK" else echo "BAD" fi It returns BAD If I do: if convert -quiet rose: +repage rose.png t...