draw ROUND images on a background, is it possible?
Posted: 2013-12-30T03:41:39-07:00
Hi guys,
I need to put some images on a background, and that's working fine with the following code:
I've even some images that need to be put over my background, just circular shaped. Following the rules of -draw command here (http://www.imagemagick.org/script/comma ... s.php#draw) it appears my code needs to change like the following:
but I receive this error:
does anybody knows why? thanks in advance
I need to put some images on a background, and that's working fine with the following code:
Code: Select all
convert -size 600x357 xc:none -draw "image Over 0,0 0,0 'background01.jpg'" -draw "image Over 25,190 0,0 'aktiviteiten01.jpg'" -draw "image Over 200,190 0,0 'cultuur13.jpg'" -draw "image Over 380,190 0,0 'natuur01.jpg'" -draw "image Over 0,0 0,0 'frame.png'" -extent 600x357 -append +repage 638044758.30105944.jpg
I've even some images that need to be put over my background, just circular shaped. Following the rules of -draw command here (http://www.imagemagick.org/script/comma ... s.php#draw) it appears my code needs to change like the following:
Code: Select all
convert -size 600x357 xc:none -draw "image Over 0,0 0,0 'background01.jpg'" -draw "image Over 25,190 0,0 'aktiviteiten01.jpg'" -draw "circle 200,190 0,0 'cultuur13.jpg'" -draw "image Over 380,190 0,0 'natuur01.jpg'" -draw "image Over 0,0 0,0 'frame.png'" -extent 600x357 -append +repage 638044758.30105944.jpg
Code: Select all
convert.exe: Non-conforming drawing primitive definition `cultuur13.jpg' @ error/draw.c/DrawImage/3178.