i need professional's help

The MagickWand interface is a new high-level C API interface to ImageMagick core methods. We discourage the use of the core methods and encourage the use of this API instead. Post MagickWand questions, bug reports, and suggestions to this forum.
Post Reply
el_supremo
Posts: 1015
Joined: 2005-03-21T21:16:57-07:00

Re: i need professional's help

Post by el_supremo »

Try this command:

Code: Select all

convert wscl1pfire2ds7.jpg -crop 250x250+50+0 +repage -fuzz 20% -transparent white -resize 16x16 p.bmp
It crops a square from the original image, changes white to transparency, resizes to 16x16 and saves as a V4 BMP.
Paint Shop Pro X does not show the transparency in p.bmp but ImageMagick's imdisplay program does, so if the program you're using understands a V4 bitmap file this should work.

Pete
Post Reply