Page 1 of 1
how can i paste imageB on imageA with 50% opacity
Posted: 2007-11-01T04:12:55-07:00
by Ravinderjit S.Sidhu
Code: Select all
convert -resample 72x72 -depth 8 -geometry 300x200! xc:lightblue ^
-draw "image over 5,5 90,90 'imageB.png' " ^
imageA.png
how can i paste imageB on imageA with 50% opacity
please suggest
Re: how can i paste imageB on imageA with 50% opacity
Posted: 2007-11-01T13:03:10-07:00
by Bonzo
Code: Select all
composite -blend 50 -gravity center imageB.png imageA.png -matte output.png
Re: how can i paste imageB on imageA with 50% opacity
Posted: 2007-11-07T03:30:46-07:00
by Ravinderjit S.Sidhu
Thankyou bronzo, your help is really helped me