How to add transparency
Posted: 2015-03-03T00:01:37-07:00
I have to create an image, which is an overlay texture made up of a white image with some transparency to give it the appearance of a rubber stamp. For reference see the image "stamp_overlay.png" in the video http://railscasts.com/episodes/374-image-manipulation .
This is what i did:
and then
But how do I give a rubber stamp effect?
I am pretty much new to ImageMagick. Any help is highly solicited. Thanks
This is what i did:
Code: Select all
convert -size 70x70 canvas:white stamp_overlay1.png
Code: Select all
convert stamp_overlay1.png -transparent white stamp_overlay1.png
I am pretty much new to ImageMagick. Any help is highly solicited. Thanks