colorize

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
prateek2k10
Posts: 13
Joined: 2011-07-18T21:57:12-07:00
Authentication code: 8675308

colorize

Post by prateek2k10 »

A PNG image with transparent background
After colorize, image getting converted in to "index layer" that will not be edited, even in the photoshop
when colorized image open in photoshop it will seen in index layer.
the drawback is that when these image open in illustrator it shows with whole colored only a rectangular box.

that problem created after 6.7 version, in the previous versions there is no such problem was there.

i m using the 2 different command but getting same response .

exec('/usr/local/bin/convert img.png -fill red -colorize 50% color1.png'); /// it make the full colored background also, even background is transparent

exec('/usr/local/bin/convert img.png -alpha off -fill "rgb(255,194,81)" -colorize 100% -alpha on color3.png'); //////////not working.
Post Reply