Search found 25563 matches

by fmw42
2008-02-05T14:30:24-07:00
Forum: Bugs
Topic: Trouble Building IM 6.3.8-4 from source (on Mac OS X Tiger)
Replies: 2
Views: 8057

Trouble Building IM 6.3.8-4 from source (on Mac OS X Tiger)

Hello, I was just trying to build the latest source presumably IM 6.3.8-4 as that is what you are showing as the binary, now. I downloaded the source from http://www.imagemagick.org/download/www/install-source.html#unix and did the following configure which includes lqr: ./configure --enable-delegat...
by fmw42
2008-02-04T12:15:28-07:00
Forum: Users
Topic: Creating a TIFF 16bit image as result of a math expression
Replies: 1
Views: 5352

Re: Creating a TIFF 16bit image as result of a math expression

Can you be more specific with the steps you are using? Have you looked at the -fx operator? What IM quantum number build are you using and have you tried hdri builds? See http://www.imagemagick.org/script/fx.php http://www.imagemagick.org/Usage/transform/#fx http://www.imagemagick.org/Usage/basics/#...
by fmw42
2008-02-04T12:14:45-07:00
Forum: Developers
Topic: Cretae a TIFF16 or TIFF32 as result of a math expression
Replies: 1
Views: 6345

Re: Cretae a TIFF16 or TIFF32 as result of a math expression

Can you be more specific with the steps you are using? Have you looked at the -fx operator? What IM quantum number build are you using and have you tried hdri builds? See http://www.imagemagick.org/script/fx.php http://www.imagemagick.org/Usage/transform/#fx http://www.imagemagick.org/Usage/basics/#...
by fmw42
2008-02-04T12:01:46-07:00
Forum: Users
Topic: delegate libraries help
Replies: 7
Views: 20837

Re: delegate libraries help

I am by no means an expert at this (actually a real novice), but recently went through building IM from source and needed the delegate libraries. You can find the libraries and installation information at: http://www.imagemagick.org/download/delegates/ You will need the jpg and png libraries (and I ...
by fmw42
2008-02-01T16:54:25-07:00
Forum: Developers
Topic: Testing and Demos Of FFT Routines
Replies: 0
Views: 4804

Testing and Demos Of FFT Routines

I have done some testing of Sean Burke's FFT routines. Here is a page with some of my results and demonstrations of filtering in the Fourier domain.

http://www.fmwconcepts.com/misc_tests/F ... index.html
by fmw42
2008-01-31T22:57:48-07:00
Forum: Developers
Topic: Concating 2 little filters in one line
Replies: 3
Views: 9715

Re: Concating 2 little filters in one line

This seemed to work for me, if I understand what you are trying: convert lena.png \( logo: -resize 100x100! \) -gravity southeast \ -compose multiply -composite -mattecolor Tomato -frame 10x10+5+5 tmp.png So I would think that the following would work for you: convert foto.jpg \( logo: -resize 50% \...
by fmw42
2008-01-31T22:42:10-07:00
Forum: Users
Topic: -fx twice as slow with upgrade.
Replies: 13
Views: 25809

Re: -fx twice as slow with upgrade.

clut is definitely the best thing for this kind of thing as it does the same but is a real compiled function, but as a point of information, you might want to try

... -filter point -fx ...

and see if that speeds things up again for fx
by fmw42
2008-01-30T15:43:08-07:00
Forum: Users
Topic: convert animated gif to normal gif
Replies: 5
Views: 23590

Re: convert animated gif to normal gif

convert animation.gif[0] frame0.gif

frame numbers start at 0.

I don't know about non-animated gifs, but I suspect this works for normal gifs also as the first frame [0] is the only frame.
by fmw42
2008-01-30T15:41:04-07:00
Forum: Users
Topic: -liquid-rescale abends
Replies: 13
Views: 31707

Re: -liquid-rescale abends

by fmw42
2008-01-30T12:24:00-07:00
Forum: Users
Topic: command unite
Replies: 1
Views: 5673

Re: command unite

Please clarify what you mean by "unite"? Do you mean side-by-side or overlaid or what?

Also please clarify what settings you are concerned about?
by fmw42
2008-01-30T11:40:33-07:00
Forum: Users
Topic: Animated gif
Replies: 19
Views: 40425

Re: Animated gif

I am not an expert in this regard, but might it be more correct to use -resize ${width}x${height}? Note where the {} are located.
by fmw42
2008-01-30T11:37:08-07:00
Forum: Users
Topic: convert animated gif to normal gif
Replies: 5
Views: 23590

Re: convert animated gif to normal gif

If I understand, you can use montage to display each frame side-by-side and then choose the frame you want and then convert that one frame to another image. See http://www.imagemagick.org/Usage/montage/ Then once you know which frame, use convert animation.gif[frame#] frame.gif See http://www.imagem...
by fmw42
2008-01-29T18:33:06-07:00
Forum: Users
Topic: -liquid-rescale abends
Replies: 13
Views: 31707

Re: -liquid-rescale abends

I did a number of tests of liquid-rescale on Mac OS X Tiger, IM 6.3.8-2beta at http://www.fmwconcepts.com/misc_tests/liquid-rescale/index.html and did not have problems. But I did not try to expand by much, certainly not a factor of 2. But I tried your image and example and found the following: conv...
by fmw42
2008-01-29T12:43:43-07:00
Forum: Users
Topic: compress pictures to fit a file size?
Replies: 3
Views: 9545

Re: compress pictures to fit a file size?

see the ">" symbol with -resize widthxheight>

http://www.imagemagick.org/script/comma ... php#resize
by fmw42
2008-01-26T16:03:14-07:00
Forum: Bugs
Topic: Is it a bug when convert *.bmp -colorspace Gray *.bmp ?
Replies: 1
Views: 7495

Re: Is it a bug when convert *.bmp -colorspace Gray *.bmp ?

I believe that all images created or converted within IM will actually have 3 channels, even if they are all the same grayscale channel. Thus the filesize will not change as you still have 3 channels and not one channel. The commands convert <inflle> -colorspace Gray <outfile> and convert <infile> -...