Search found 25563 matches

by fmw42
2008-01-02T19:26:41-07:00
Forum: Users
Topic: Mac OS X binary release: display just outputs help text
Replies: 2
Views: 9353

Re: Mac OS X binary release: display just outputs help text

Although I am not on the current release, in the past I have had the same problem. But seem to be able to cure it by adding export DISPLAY=:0 to my .profile file.
by fmw42
2007-12-28T17:14:15-07:00
Forum: Users
Topic: Negating color range from command line
Replies: 4
Views: 13698

Re: Negating color range from command line

convert imagename.suffix -threshold 100% outimage.suffix

The resulting image will be completely black.
by fmw42
2007-12-19T16:52:53-07:00
Forum: Bugs
Topic: imagemagick 6.3.6 and 6.3.7 trasparency missing
Replies: 1
Views: 6950

Re: imagemagick 6.3.6 and 6.3.7 trasparency missing

I tested this on my Mac version IM 6.3.6.4 and it works fine for me. I get a 24-bit black image with an 8-bit overlay channel that is fully transparent. The resulting image is RGBA 32-bits.
by fmw42
2007-12-19T16:42:50-07:00
Forum: Users
Topic: How to resize, compose and save as multiple file?
Replies: 4
Views: 13786

Re: How to resize, compose and save as multiple file?

I believe that you can only do the processing for one output image at a time. But you can put all the steps inside one command. Here is a simple case assuming that the foregroundimg contains (alpha-channel) transparent areas: convert \( backgroundimg -resize 100x100! \) \( forgroundimg -resize 100x1...
by fmw42
2007-12-18T12:09:02-07:00
Forum: Users
Topic: How to "Smart Sharpen," adaptive-sharpen not working
Replies: 23
Views: 108423

Re: How to "Smart Sharpen," adaptive-sharpen not working

Maxwell,

My testing was on IM 6.3.6.4. I have not checked on 6.3.7.x.

If you want to post me your test image somewhere and link it here, I will run it on my system and post the results.

Fred
by fmw42
2007-12-17T18:08:25-07:00
Forum: Developers
Topic: 2 image display
Replies: 1
Views: 7105

Re: 2 image display

You can try Anthony's flicker_cmp script that alternates the display of multiple images with a user specified time delay. http://www.imagemagick.org/Usage/scripts/flicker_cmp
by fmw42
2007-12-17T18:05:47-07:00
Forum: Users
Topic: Highpass Sharpen
Replies: 4
Views: 13068

Re: Highpass Sharpen

You can try my binomial script. It does something like this with a binomial filter rather than a gaussian. You can either sharpen or blur and control the mixing with the original image. My laplacian script does something similar but uses the laplacian as the high pass filter. http://www.fmwconcepts....
by fmw42
2007-12-17T17:59:36-07:00
Forum: Users
Topic: How to "Smart Sharpen," adaptive-sharpen not working
Replies: 23
Views: 108423

Re: How to "Smart Sharpen," adaptive-sharpen not working

I played with -adaptive-sharpen and found that it does nothing if you specify radiusxsigma as 0xanyvalue (e.g. 0x4), it does little if one specifies radius alone (e.g. 4), but does work if one specifies radiusxsigma as radius=3*sigma and a value for sigma (e.g. 12x4). With the other radiusxsigma fun...
by fmw42
2007-12-13T18:44:08-07:00
Forum: Users
Topic: Is it possible to modify (blur)a polyline-area of a picture?
Replies: 1
Views: 6285

Re: Is it possible to modify (blur)a polyline-area of a picture?

You can blur the whole picture. Then draw the polyline on the original. Then make a binary mask from the polyline area. Then use -composite to overlay the one with the other using the mask to control which area shows from the original and which area shows from the blurred image. see: http://www.imag...
by fmw42
2007-12-07T13:55:07-07:00
Forum: Users
Topic: can i draw a bold text with regular font?
Replies: 7
Views: 36229

Re: can i draw a bold text with regular font?

you can generally get a bold version of the specific font and specify that
by fmw42
2007-12-04T14:39:56-07:00
Forum: Users
Topic: Possible to replace thin white border by bleeding out edge?
Replies: 8
Views: 20063

Re: Possible to replace thin white border by bleeding out edge?

Hello Anthony, My scripts were designed for command line use under the bash shell. I do not know about using them from PHP. I have no experience with the PHP API. Giving the full path and adding .sh may be needed for use with PHP. My script file itself does not have .sh appended, but that may be nee...
by fmw42
2007-12-04T12:41:59-07:00
Forum: Users
Topic: Possible to replace thin white border by bleeding out edge?
Replies: 8
Views: 20063

Re: Possible to replace thin white border by bleeding out edge?

I just posted a new script, autotrim, to http://www.fmwconcepts.com/imagemagick/index.php which will automatically trim out any border pixels. But it will make the image smaller by the amount that is trimmed. If this is a small amount, just a few pixels out of 300 pixels, you can post-process the re...
by fmw42
2007-12-04T12:29:26-07:00
Forum: Users
Topic: Antialiased white border around PNG with transparent B/G
Replies: 5
Views: 16180

Re: Antialiased white border around PNG with transparent B/G

Yes, you are right. My magicwand script only makes a binary outline image and does not allow the black area to be output as transparent. But your modification afterwards is what I would have done. Glad to hear it has worked out.