Reputation: 2860
How can i convert a transparent PNG to a Black White Mask in PHP?
Is there a special function?
Upvotes: 0
Views: 181
Reputation: 53081
If you have a transparent PNG and want the binary mask just extract the alpha channel in Imagemagick 6.
convert image.png -alpha extract mask.png
If on Imagemagick 7, change convert to magick
Upvotes: 1