Search found 25563 matches

by fmw42
2009-09-24T12:16:06-07:00
Forum: Bugs
Topic: modulate bug
Replies: 3
Views: 7079

Re: modulate bug

OK, testing (but I happen to be in HDRI right now and don't know if this is an issue): #measure your rgb colors convert colorsample.jpg -scale 1x1! txt:- # ImageMagick pixel enumeration: 1,1,255,rgb 0,0: (238,208,200) #EED0C8 rgb(238,208,200) #create new test swatch as png (to avoid jpg compression ...
by fmw42
2009-09-24T11:21:22-07:00
Forum: Users
Topic: convert -delay AND FPS in animated GIF
Replies: 3
Views: 78708

Re: convert -delay AND FPS in animated GIF

As I understand it, the (IM default) ticks are 1/100 of a second, i.e. 100 ticks per second. (But the ticks value can be changed). So a delay of 8 would be 8/100 of a second between frames. This makes the frame rate (FPS) = 1/(delay in seconds) = 100/(delay in ticks). So for IM delay of 8, you would...
by fmw42
2009-09-24T10:55:17-07:00
Forum: Bugs
Topic: possible bug mpc IM 6.5.6-4 Q16 HDRI
Replies: 2
Views: 5316

possible bug mpc IM 6.5.6-4 Q16 HDRI

I was working on a script and happened to be in HDRI mode and came accross the following issue that only happens when using MPC (for temp files in the script). I don't know if this is an issue with MPC, gradient creation, or -black-threshold & -white-threshold all under HDRI. So possibly some r...
by fmw42
2009-09-24T10:08:32-07:00
Forum: Bugs
Topic: modulate bug
Replies: 3
Views: 7079

Re: modulate bug

You have the components in the wrong order within -modulate. It is: -modulate brightness[,saturation,hue] So your value of -modulate 100,270,100 IS actually changing the saturation (only) and not the hue Also the default was change at some point not too long ago (IM 6.4.0-10) to colorspace HSL rathe...
by fmw42
2009-09-23T19:24:51-07:00
Forum: Users
Topic: LR2/Mogrify
Replies: 1
Views: 4193

Re: LR2/Mogrify

Not a windows user, but I would contact the developer of the plugin. see http://www.photographers-toolbox.com/pr ... ogrify.php

Does ImageMagick work in standalone mode via command line?
by fmw42
2009-09-23T16:08:31-07:00
Forum: Users
Topic: ImageMagick and Geometry Issue - resizing with >
Replies: 6
Views: 12960

Re: ImageMagick and Geometry Issue - resizing with >

FYI, it is in the file Anthony mentioned which is clearly listed and linked on his main page (at http://www.imagemagick.org/Usage) titled as Usage Under Windows. It says: Most often, double quotes '"' have need to be used in place of single quotes ''' so that the command arguments remain correc...
by fmw42
2009-09-23T16:02:23-07:00
Forum: Users
Topic: PDF to JPG, ImageMagick, PHP and GS not playing nicely
Replies: 12
Views: 32148

Re: PDF to JPG, ImageMagick, PHP and GS not playing nicely

Rob, I know little about Windows. but look carefully at the GS install for errors and other support libraries that it might need as well. I had that problem. Also be sure to find out where GS gets installed and make sure your IM install can find it. GS also requires some fonts to be installed and fo...
by fmw42
2009-09-23T12:57:55-07:00
Forum: Users
Topic: IMDisplay, manual
Replies: 1
Views: 4030

Re: IMDisplay, manual

don't know much about IMDisplay but a search of the forum brings up the following that might be relevant: http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=14680&p=51343&hilit=IMDisplay#p51343 http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=14547&p=5...
by fmw42
2009-09-23T09:52:30-07:00
Forum: Users
Topic: PDF to JPG, ImageMagick, PHP and GS not playing nicely
Replies: 12
Views: 32148

Re: PDF to JPG, ImageMagick, PHP and GS not playing nicely

I am no expert on this, but it looks to me like Ghostscript did not get installed at least not where IM knows about it as DELEGATES bzlib freetype jpeg jp2 lcms png tiff x11 xml wmf zlib does not list gs. Try reinstalling GS and see if there are any error messages and find out where it gets installe...
by fmw42
2009-09-23T09:46:54-07:00
Forum: Users
Topic: Help for old version 6.2.4: how to count colors in a jpg
Replies: 13
Views: 24685

Re: Help for old version 6.2.4: how to count colors in a jpg

try (assuming your input is RGB and not CMYK) convert image.jpg +dither -colors 10 PNG8:image.png see http://www.imagemagick.org/Usage/quantize/ http://www.imagemagick.org/Usage/formats/#png example: convert rose: +dither -colors 10 PNG8:rose_c10.png identify -verbose rose_c10.png Image: rose_c10.pn...
by fmw42
2009-09-23T09:40:46-07:00
Forum: Bugs
Topic: montage don't work in mac os snowleopard
Replies: 3
Views: 9153

Re: montage don't work in mac os snowleopard

Your MacPorts install may not have worked correctly. I am on Mac OSX Tiger IM 6.5.6-4 Q16 (I install manually from source) and have no problems. But I am on a G4 PowerPC and not Intel hardware with multiprocessor support. You can try to disable OpenMP and see if that helps. Does convert and mogrify ...
by fmw42
2009-09-22T18:45:11-07:00
Forum: Users
Topic: imagemagick and cpanel
Replies: 1
Views: 3853

Re: imagemagick and cpanel

I am no expert on this, but I suspect you are out of luck unless your ISP installs IM for you. but see http://www.imagemagick.org/Usage/api/#personal. The IM folks may be able to provide better information.
by fmw42
2009-09-22T18:41:39-07:00
Forum: Users
Topic: convert format of multiple images in a single command?
Replies: 1
Views: 7148

Re: convert format of multiple images in a single command?

see mogrify rather than convert. it allows you to convert a whole directory of images (and you can select which type to convert, such as jpg, png, etc or all); otherwise you need to specify all input images in the command line if the processing is simple (but may exceed the number of characters allo...
by fmw42
2009-09-22T09:16:47-07:00
Forum: Users
Topic: Joining MANY images into a single PDF.
Replies: 2
Views: 6527

Re: Joining MANY images into a single PDF.

You will likely need to write a script to add them one at a time (or a few at a time). For example: convert rose: rose.pdf convert rose: rose.pdf rose.pdf convert rose: rose.pdf rose.pdf identify rose.pdf identify rose.pdf rose.pdf[0] PDF 70x46 70x46+0+0 16-bit Bilevel DirectClass 1.39kb rose.pdf[1]...
by fmw42
2009-09-22T09:09:00-07:00
Forum: Developers
Topic: Associate Color ?
Replies: 10
Views: 18886

Re: Associate Color ?

Best I can suggest is to separate the green channel. Then threshold it to select those green colors you want to use and make a binary mask. Then use -modulate on the whole image to shift the green towards blue. Then use the mask to combine the original with the shifted color image so that only the g...