it is the first time I ask in this new pretty forum , first I have asked my question on mailing list.
I have this question.
The start point is this image:
and other two images like this with contains the minimize and close button.
My goal is to obtains an image with the buttons but with transparent background.
Now my result is this image:
I have successfully used ImageMagick to perform 3 of the steps to obtain the image:
Code: Select all
convert min.png -crop 26x19+0+19 +repage b1.png
Code: Select all
convert b1.png -crop 19x19+4+0 +repage b2.png
Code: Select all
convert b1.png c2.png b3.png +append final.png
Is it possible to perform the step for removing background also with IM?
Thanks
Sandro