Search found 25563 matches

by fmw42
2010-04-07T15:10:12-07:00
Forum: Users
Topic: Need compile help with Magick++ (No such file or directory)
Replies: 12
Views: 26931

Re: Need compile help with Magick++ (No such file or directo

search your directory for the full path the decompressed IM folder (did you decompress it?) and cd to that using the full path. Usually the folder will be something like ImageMagick-6.6.1-0 (with the -x). The from there: ./configure, make, sudo make install
by fmw42
2010-04-07T15:05:21-07:00
Forum: Users
Topic: Creating transparent PNG from EPS
Replies: 5
Views: 9448

Re: Creating transparent PNG from EPS

You don't have any delegates installed. If you installed manually from source, you need to get any appropriate delegates, such as libtiff, libpng, libjpg, ghostscript, etc and install those. Then recompile IM. Or perhaps IM cannot find your delegates as they were installed before somewhere else. Tha...
by fmw42
2010-04-07T12:43:07-07:00
Forum: Users
Topic: problem install 6.6.1 from source on mac tiger
Replies: 4
Views: 9647

Re: problem install 6.6.1 from source on mac tiger

I have no trouble installing from source on Mac OSX Tiger on my Mac Mini G4. I just installed IM 6.6.1.0 Q16 recently. Before you install from source, you need to install any delegate libraries that you might want such as libpng, libtiff, libjpg. Then download IM from ftp://ftp.imagemagick.org/pub/I...
by fmw42
2010-04-07T10:12:27-07:00
Forum: Users
Topic: Creating transparent PNG from EPS
Replies: 5
Views: 9448

Re: Creating transparent PNG from EPS

I am running GS 8.61 which is rather old. Are you sure it is installed correctly? Do you have the GS fonts installed? convert -list configure see DELEGATES bzlib fftw fontconfig freetype gs jpeg jng jp2 lcms lqr openexr png tiff x11 xml zlib Your 6.2.8 IM is over 300 versions behind. I would suggest...
by fmw42
2010-04-07T09:16:48-07:00
Forum: Users
Topic: Creating transparent PNG from EPS
Replies: 5
Views: 9448

Re: Creating transparent PNG from EPS

This works for me on IM 6.6.1.0 Q16 Mac OSX Tiger. Your eps is cmyk, so you have to convert to rgb before reading it.

convert -colorspace RGB hrBlXHT4MoQsu47Q.eps hrBlXHT4MoQsu47Q.png
by fmw42
2010-04-06T19:16:39-07:00
Forum: Users
Topic: Background after waving image using -wave..
Replies: 5
Views: 10182

Re: Background after waving image using -wave..

this works fine.

convert koala.gif -background none -wave 10x64 wave.png


Note you have to use png or gif and not jpg as jpg does not support transparency.
by fmw42
2010-04-06T18:39:13-07:00
Forum: Users
Topic: Background after waving image using -wave..
Replies: 5
Views: 10182

Re: Background after waving image using -wave..

When i use background -none the background shows up in black
try -background none

but looks like a bug as it works with any color but "none"
by fmw42
2010-04-06T18:36:17-07:00
Forum: Users
Topic: Generating duotones
Replies: 27
Views: 43956

Re: Generating duotones

After some thought I have added another duo-tone technique that should give you better control of the exact mid-tone color that use used. this involves using a color-lookup table generated from three exact colors for the black-point, mid-point and white-point of the duotone gradient. See IM Example...
by fmw42
2010-04-06T18:25:13-07:00
Forum: Developers
Topic: inconsistent alpha vs opacity in identify
Replies: 0
Views: 2528

inconsistent alpha vs opacity in identify

Identify statistics seems to be currently a little confused. Channel statistics: Alpha: seems to be showing 'opacity' values, not alpha Histogram: is displaing alpha values Colormap: is displaying opacity values and incorrect rgba() values. That however may be a function of the grayscale PNG, and n...
by fmw42
2010-04-06T10:29:37-07:00
Forum: Users
Topic: can't change depth to 8bit in png
Replies: 3
Views: 8936

Re: can't change depth to 8bit in png

try adding -type palette for 24 to 8 bits or -type palettematte for 32 to 8bits with alpha see also -define png:color-type=2 http://www.imagemagick.org/Usage/formats/#png and http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=15445 and http://www.imagemagick.org/discourse-server/vie...
by fmw42
2010-04-06T09:30:37-07:00
Forum: Users
Topic: extract exif thumbnail
Replies: 6
Views: 22429

Re: extract exif thumbnail

what version of IM are you using? perhaps you need an upgrade to make thumbnail: work properly?
by fmw42
2010-04-05T09:11:03-07:00
Forum: Users
Topic: Greek character support
Replies: 2
Views: 6704

Re: Greek character support

see http://www.imagemagick.org/Usage/text/#unicode

you need to put the text into a file that utf-8 compliant. that is the text editor must be in utf-8 compliant mode.
by fmw42
2010-04-04T16:05:57-07:00
Forum: Users
Topic: cartoonizer / vectorizer
Replies: 30
Views: 72139

Re: cartoonizer / vectorizer

I think I have now two good ways to reduce the colors. The first is to use -color, BUT on each channel separately. This method is rather insensitive to the number of colors specified (between about 6 and 14). The second uses an fx expression, floor(u*$numcolors+0.5)/$numcolors, but applies it via -c...
by fmw42
2010-04-04T14:22:09-07:00
Forum: Users
Topic: Mogrify lightroom plug-in caption problem
Replies: 23
Views: 40666

Re: Mogrify lightroom plug-in caption problem

Bonzo beat me to it. Here it is in unix command line placed 20 pixels from the top. width=`convert twooceansmarathon2494.jpg -format "%w" info:` str=`convert twooceansmarathon2494.jpg -format "%[EXIF:ImageDescription]" info:` convert twooceansmarathon2494.jpg \ \( -size ${width}x...
by fmw42
2010-04-03T23:03:20-07:00
Forum: Users
Topic: animated .gifs and IM
Replies: 23
Views: 41469

Re: animated .gifs and IM

OK, it is most likely the different frame sizes in the un-coalesced gif that is causing the problem. Best to coalesce and regenerate. Alternately, look at the disposal in http://www.imagemagick.org/Usage/anim_basics/#dispose were it says: "The first thing people creating GIF animation have trou...