Search found 25563 matches

by fmw42
2008-12-28T17:15:31-07:00
Forum: Users
Topic: Convert picture to 256 color but only 7 in one horiz. line
Replies: 3
Views: 6765

Re: Convert picture to 256 color but only 7 in one horiz. line

kiki wrote:Ok i solved this myself.

How?
by fmw42
2008-12-26T13:16:34-07:00
Forum: Bugs
Topic: RESOLVED:clarification requested or bug with EXIF IM 6.4.8-1
Replies: 0
Views: 2759

RESOLVED:clarification requested or bug with EXIF IM 6.4.8-1

Problem seems to be the the Mac PREVIEW tool must be reading the EXIF data and changing the aspect ratio. Seems as though the browsers don't show this, nor does IM display. Sorry for the false alarm. However, it is odd that this only happens when I run the script using mpc and it does not happen wi...
by fmw42
2008-12-24T21:51:53-07:00
Forum: Users
Topic: [SOLVED] pipe command output to convert ?
Replies: 15
Views: 40301

Re: pipe command output to convert ?

el_supremo wrote:I tried all sorts of escapes and quoting and nothing works.

Pete.
Merry Christmas Fred and All

Happy Holidays to you too, Pete.
by fmw42
2008-12-24T19:21:00-07:00
Forum: Users
Topic: [SOLVED] pipe command output to convert ?
Replies: 15
Views: 40301

Re: pipe command output to convert ?

On Windows those caption and label commands don't work. IM 6.4.6 Q8 label:@- causes this error: convert: unable to read blob `-': No such file or directory @ blob.c/FileToBlob/868. imconvert: missing an image filename `cap.png' @ convert.c/ConvertImageCommand/2710. whereas caption:@- causes this: c...
by fmw42
2008-12-24T17:22:06-07:00
Forum: Users
Topic: [SOLVED] pipe command output to convert ?
Replies: 15
Views: 40301

Re: pipe command output to convert ?

The Seasons Best Wishes to you... and to you too :-) @magick/Anthony Although text:- reads the standard input, I can't get caption:- or label:- to do the same thing. Are they supposed to work or is this function limited to text:-? Pete Pete, These work for me (IM 6.4.8-1 Q16): echo "Merry Chri...
by fmw42
2008-12-23T12:55:32-07:00
Forum: Users
Topic: Newbie: Help with Arc distortion variant
Replies: 3
Views: 6639

Re: Newbie: Help with Arc distortion variant

see barrel distortion http://www.imagemagick.org/Usage/distorts/#barrel see Anthony's rose examples you need to combine half of two images, top half of bulge (barrel) and bottom half of pinch (pincushion) rose.jpg http://www.fmwconcepts.com/misc_tests/bulgepinch/rose.jpg convert rose.jpg -matte -vir...
by fmw42
2008-12-22T13:08:11-07:00
Forum: Users
Topic: Dithered Edges when converting from PNG to GIF - RESOLVED
Replies: 25
Views: 48096

Re: Dithered Edges when converting from PNG to GIF

fmw... I'm limited to gif for the final output. to try and get the best edges on the rotated image... I'm floodfilling the white to the edges, but its ending up black. The commands above work also for .gif output format, but as gif is binary transparency, off or on and png is variable transparency,...
by fmw42
2008-12-22T12:55:08-07:00
Forum: Users
Topic: Detecting blank scans
Replies: 4
Views: 8361

Re: Detecting blank scans

Not an easy problem unless it is absolutely blank.
by fmw42
2008-12-22T11:17:20-07:00
Forum: Users
Topic: Dithered Edges when converting from PNG to GIF - RESOLVED
Replies: 25
Views: 48096

Re: Dithered Edges when converting from PNG to GIF

These all seems to work for me with transparent backgrounds in IM 6.4.7-10 Q16 convert rose: -matte -background none -rotate 20 rose_r20.png convert rose: -alpha on -background none -rotate 20 rose_r20b.png convert rose: -alpha activate -background none -rotate 20 rose_r20c.png convert rose: -channe...
by fmw42
2008-12-22T11:09:21-07:00
Forum: Users
Topic: Detecting blank scans
Replies: 4
Views: 8361

Re: Detecting blank scans

Do you consider complication 1 and 2 as blank or not blank?
by fmw42
2008-12-22T11:06:26-07:00
Forum: Users
Topic: Help - How can I make convert echo a result after finish
Replies: 8
Views: 13827

Re: Help - How can I make convert echo a result after finish

Hey, thanks for the tip.. but -identify/-write info: are giving me the info for the source file, I would like the convert to print info about the target file after it has converted it... and if it fails it won't print anything/something else, the same as the vb.net com dll does... any ideas? You co...
by fmw42
2008-12-21T16:49:35-07:00
Forum: Bugs
Topic: How do I use -seed with +noise Random
Replies: 7
Views: 15430

Re: How do I use -seed with +noise Random

magick wrote:There is no way to determine the seed value unless you set it yourself.
OK. Then any restrictions on the value that can be used for the seed? for example, must it be an integer between 0 and quantumrange?
by fmw42
2008-12-21T15:32:54-07:00
Forum: Bugs
Topic: How do I use -seed with +noise Random
Replies: 7
Views: 15430

Re: How do I use -seed with +noise Random

The random images will always differ if a seed is not specified or if two commands have different seeds (i.e. -seed 17171 and -seed 17172). If the seeds are the same, the resulting images will be the same. If one does not set the seed and leaves it to IM to do for example with convert -size 100x100...
by fmw42
2008-12-21T13:38:36-07:00
Forum: Bugs
Topic: How do I use -seed with +noise Random
Replies: 7
Views: 15430

Re: How do I use -seed with +noise Random

How do I specify a new seed when generating a random noise image? For example: Try this command: convert -size 100x100 xc: -seed 171713 +noise Random tmp.png OK, perhaps I misunderstand. If I leave off the -seed, and create two random images with two separate command lines, will the two images be t...
by fmw42
2008-12-21T13:31:44-07:00
Forum: Users
Topic: Help - How can I make convert echo a result after finish
Replies: 8
Views: 13827

Re: Help - How can I make convert echo a result after finish

y0gz wrote:no man... I meant that whenever convert.exe finishes converting the file, it will output (echo) to the cmd the path of the file or something to let me know it succeeded

add -monitor to your command line


see http://www.imagemagick.org/Usage/basics/#controls