Search found 25563 matches

by fmw42
2010-03-25T18:23:03-07:00
Forum: Users
Topic: How do I convert text file to image for use with overlay
Replies: 19
Views: 50939

Re: How do I convert text file to image for use with overlay

convert -size 500x500 -fill black -font Helvetica caption:@text.txt text.gif
by fmw42
2010-03-25T18:18:08-07:00
Forum: Developers
Topic: Change colors on PDF file
Replies: 2
Views: 6365

Re: Change colors on PDF file

if pdf is in rgb colorspace and has no transparency, then

convert image.pdf[0] -fill yellow -opaque black newimage.png

the [0] will select only the first page and the newimage will only be the result for the first page
by fmw42
2010-03-25T16:17:32-07:00
Forum: Users
Topic: How do I convert text file to image for use with overlay
Replies: 19
Views: 50939

Re: How do I convert text file to image for use with overlay

can you provide links to your input form, your text file and an example (or description) of what you want the result to look like. If you are trying to put specific text into different locations on the form page, then you will need to create an image using label: or caption: or -annotate or -draw fo...
by fmw42
2010-03-25T16:13:06-07:00
Forum: Bugs
Topic: 6.6.0-1: drawing issues with rectangle stroke
Replies: 14
Views: 25604

Re: 6.6.0-1: drawing issues with rectangle stroke

I confirm the same kind of results with

convert -size 250x250 xc:white -stroke black -strokewidth 10 -fill blue \
-draw "rectangle 50,50 200,200" tmp.png


in IM 6.6.0-9 Q16 Mac OSX Tiger
by fmw42
2010-03-25T11:36:57-07:00
Forum: Users
Topic: 10bit float log dpx to 16bit float lin exr
Replies: 16
Views: 31414

Re: 10bit float log dpx to 16bit float lin exr

Hey! Thanks for the reply. Isn't half 16 also supposed to be float? What I find strange is that if I leave the colorspace to log, it does what I ask, but if I convert to rgb it acts funny and clips the image. -Daniel Yes, 16-bit float is the half format. So I guess it should work fine. I have not h...
by fmw42
2010-03-25T09:27:12-07:00
Forum: Users
Topic: 10bit float log dpx to 16bit float lin exr
Replies: 16
Views: 31414

Re: 10bit float log dpx to 16bit float lin exr

IM only supports "half" format EXR (i.e. 16bit)

You can save to TIFF or PFM if you want to keep the fractional or negative values. see NetPBM for PFM
by fmw42
2010-03-25T09:26:01-07:00
Forum: Users
Topic: Sepia effect
Replies: 2
Views: 7938

Re: Sepia effect

what were your exact commands?

what was the complaint about your result?

see

http://www.imagemagick.org/Usage/color/#sepia-tone
http://www.imagemagick.org/Usage/color/#tinting
http://www.imagemagick.org/Usage/color/#duotone

also I have a unix script, tintilize, see link below
by fmw42
2010-03-25T09:22:47-07:00
Forum: Users
Topic: How to convert TIFFG4 compressed 1-bit bilevel to gray
Replies: 27
Views: 54846

Re: How to convert TIFFG4 compressed 1-bit bilevel to gray

On some machines with multiple processors it actually runs slower with OpenMP enable than without. You might try disabling OpenMP if you have multiple processors and see if that helps.
by fmw42
2010-03-25T09:09:23-07:00
Forum: Developers
Topic: How can Crop Animated GIF in to JPEF image format
Replies: 1
Views: 4900

Re: How can Crop Animated GIF in to JPEF image format

JPG does not support multiple image format! Your examples seem to have gif for output and not jpg. Is that a typo? If you want to get any one frame from the input gif and convert that to one jpg image then use convert image.gif[0] -crop 197x153+3+0 -quality 100 image.jpg which gives the first frame ...
by fmw42
2010-03-24T19:29:41-07:00
Forum: Users
Topic: How to find a sub-image within another image and then diff?
Replies: 41
Views: 91501

Re: How to find a sub-image within another image and then di

As of IM 6.6.0-9, FFT in ImageMagick should work properly for Windows users. An change was made to correct for a missing complex.h library under Windows.

NOTE that one has to install the FFTW delegate first, then recompile IM from source so that it recognizes FFTW.
by fmw42
2010-03-24T19:26:06-07:00
Forum: Users
Topic: How to darker an image without -brightness-contrast option ?
Replies: 2
Views: 7748

Re: How to darker an image without -brightness-contrast opti

also see -function polynomial, which can processes the equation y=ax+b where a is slope and related to contrast and b is offset and related to brightness
by fmw42
2010-03-24T19:23:44-07:00
Forum: Users
Topic: extract exif thumbnail
Replies: 6
Views: 22428

Re: extract exif thumbnail

can you post a link to an example image so that the IM folks can test with it.
by fmw42
2010-03-24T19:22:35-07:00
Forum: Announce
Topic: ImageMagick Now Has Fourier Transforms
Replies: 3
Views: 102316

Re: ImageMagick Now Has Fourier Transforms

As of IM 6.6.0-9, Fourier Transform functions in ImageMagick should now work properly for Windows users (thanks to user el_supremo).

Note that one has to install the FFTW delegate and then recompile IM from source.

Fred
by fmw42
2010-03-24T17:14:23-07:00
Forum: Users
Topic: How to convert TIFFG4 compressed 1-bit bilevel to gray
Replies: 27
Views: 54846

Re: How to convert TIFFG4 compressed 1-bit bilevel to gray

FYI:

recent versions of IM are multiprocessor compatible. so if you have dual core or more then you should see speedups with OpenMP enabled (by default)
by fmw42
2010-03-24T16:53:05-07:00
Forum: Developers
Topic: is there a +monitor option?
Replies: 2
Views: 5338

Re: is there a +monitor option?

thanks.