Search found 12163 matches

by snibgo
2010-06-05T22:18:29-07:00
Forum: Bugs
Topic: fft not working in IM 6.6.2.2 HDRI
Replies: 17
Views: 38683

Re: fft not working in IM 6.6.2.2 HDRI

(Has anyone thought of using the examples pages etc as a regression test suite? Then new releases could be readily tested for breaking old functionality.

Just a thought, and probably a stupid one.)
by snibgo
2010-06-05T18:08:32-07:00
Forum: Users
Topic: newbie
Replies: 21
Views: 36922

Re: newbie

I like the look of the 180. But, what is the artifact that will be added to the photos with color saturating like this? I'm not sure I understand the question. The command will increase colour saturation: dull colours will become more intense, without changing hue or lightness much. But greater val...
by snibgo
2010-06-05T14:47:06-07:00
Forum: Users
Topic: Liquid Rescale on Windows
Replies: 5
Views: 11879

Re: Liquid Rescale on Windows

On Windows 7, IM 6.6.0-8, I get the same problem.
by snibgo
2010-06-05T09:17:57-07:00
Forum: Users
Topic: newbie
Replies: 21
Views: 36922

Re: newbie

Follow the instructions at http://www.imagemagick.org/script/binar ... hp#windows

You just download and run an installation file.
by snibgo
2010-06-05T09:15:09-07:00
Forum: Users
Topic: Cut/break PDF page into pieces
Replies: 1
Views: 5811

Re: Cut/break PDF page into pieces

"-crop" will crop images.

ImageMagick manipulates raster images, so it converts any text to raster (ie pixels). If you want to crop a PDF file while retaining text as text, ImageMagick can't do this (as far as I know).
by snibgo
2010-06-05T08:10:09-07:00
Forum: Users
Topic: newbie
Replies: 21
Views: 36922

Re: newbie

ImageMagick is aimed at people who aren't afraid of the command line. For example, to increase the saturation of a number of JPEGs (in Windows): md \moresat cd \moresat copy \mypictures\*.jpg . mogrify -modulate 100,180,100 *.jpg In the above, "180" gives a massive increase, just to be obv...
by snibgo
2010-06-04T11:43:20-07:00
Forum: Users
Topic: Creating text layer with annotate (WxH)
Replies: 7
Views: 15862

Re: Creating text layer with annotate (WxH)

It's a shame that "-debug annotate" doesn't seem to take shear into account. immortal26: I suspect your concern is in the time required for subsequent processing: writing then processing a text file of a million pixels. If so, you might "-trim" the file, and take note of the canv...
by snibgo
2010-06-02T06:59:24-07:00
Forum: Users
Topic: Identify to detect corrupted image file
Replies: 3
Views: 11370

Re: Identify to detect corrupted image file

Thinking further, I think the docs say other non-zero values are possible on failure.
by snibgo
2010-06-02T05:46:31-07:00
Forum: Users
Topic: Identify to detect corrupted image file
Replies: 3
Views: 11370

Re: Identify to detect corrupted image file

Code: Select all

convert infile NULL:
returns 0 on success, 1 on failure (eg if the file can't be converted).
by snibgo
2010-06-01T18:23:58-07:00
Forum: Users
Topic: Path points?
Replies: 20
Views: 36452

Re: Path points?

Hmmm ... okay. That 45 MB SVG defines a canvas of 1000x1000, and draws a circle radius one on every single pixel. Most are blank, and you are picking out the others, the ones used to draw the font. Looking at final.png with Gimp, I see that each letter is made from dashes, and each dash is 1 or 2 pi...
by snibgo
2010-06-01T17:34:14-07:00
Forum: Users
Topic: Path points?
Replies: 20
Views: 36452

Re: Path points?

$final = "convert final".$png." to final.svg";

??
by snibgo
2010-06-01T17:27:33-07:00
Forum: Users
Topic: removing lighting effects
Replies: 11
Views: 22049

Re: removing lighting effects

The glare has removed information by burning it out. Some algorithms (not built into IM) can guess what has been lost, based on nearby colors.
by snibgo
2010-06-01T16:20:45-07:00
Forum: Users
Topic: Path points?
Replies: 20
Views: 36452

Re: Path points?

Good result. The code looks fine, with the possible exception of the assignment to $final: $final .= $bm.'bm'.$rbm.$png.' -geometry +'.$s['cx'].'+'.$s['cy'].' -composite '; I don't know if php interprets the quotes around cx and cy as you want. I guess it does, or the convert would fail. Yes, you se...
by snibgo
2010-05-31T18:43:14-07:00
Forum: Users
Topic: simulating pictures taken with camera phones
Replies: 5
Views: 10637

Re: simulating pictures taken with camera phones

I'm trying to understand, so we can help you. What do you hope to achieve with ImageMagick that you couldn't do with a camera phone in 30 minutes?
by snibgo
2010-05-30T17:57:38-07:00
Forum: Users
Topic: Fit one image on its place on another image
Replies: 33
Views: 57225

Re: Fit one image on its place on another image

The compose method is changed to Copy_Opacity, so that's what the final composite uses. If it should be "compose over", you have to explicitly set it.