I wrote command like this:
Code: Select all
convert firstimage.jpg -auto-orient -crop 2508x1791+321+320 stickerimage.png -resize 627 -geometry 600x400+827+1171 -composite -quality 98.0 -density 300 output.jpg
Code: Select all
convert firstimage.jpg -auto-orient -crop 2508x1791+321+320 stickerimage.png -resize 627 -geometry 600x400+827+1171 -composite -quality 98.0 -density 300 output.jpg
latest windowns binary on win7 x64.GreenKoopa wrote:Welcome. Platform and version?
Code: Select all
-geometry 600x400+827+1171
Should be
-geometry +827+1171
Code: Select all
convert ( firstimage.jpg -auto-orient -crop 2508x1791+321+320 ) stickerimage.png -resize 627x -geometry +827+1171 -composite -quality 98 -density 300 output.jpg
you are right, just keep offset works fine, but the parenthesis should be placed on the 2nd imageBonzo wrote:For a start this looks wrong to me as you should just have an offset:Posting the error may have given more informationCode: Select all
-geometry 600x400+827+1171 Should be -geometry +827+1171
Try this:Code: Select all
convert ( firstimage.jpg -auto-orient -crop 2508x1791+321+320 ) stickerimage.png -resize 627x -geometry +827+1171 -composite -quality 98 -density 300 output.jpg
Code: Select all
convert firstimage.jpg -auto-orient -crop 2508x1791+321+320 (stickerimage.png -resize 627) -geometry +827+1171 -composite -quality 98 -density 300 output.jpg