Search found 3 matches

by uemon
2017-01-31T16:35:53-07:00
Forum: Users
Topic: Layering Multiple JPEG Images
Replies: 4
Views: 2467

Re: Layering Multiple JPEG Images

You should have each "-repage" when you have only one image in the current list.

Oh, I see.

I fixed the codes as follws,
convert -size 500x1000 xc:white \
\( aaa.jpg -resize 50x50 -repage +50+100 \) \
\( bbb.jpg -resize 100x100 -repage +100+200 \) \
-layers flatten final.jpg"
that was perfect ...
by uemon
2017-01-31T15:59:59-07:00
Forum: Users
Topic: Layering Multiple JPEG Images
Replies: 4
Views: 2467

Re: Layering Multiple JPEG Images

Thank you for your kind advice.
I tried a following codes.
convert -size 500x1000 xc:white \
\( aaa.jpg -resize 50x50 \) -repage +50+100 \
\( bbb.jpg -resize 100x100 \) -repage +100+200 \
-layers flatten final.jpg"

My aim was that the "aaa.jpg" was positioned at (50,100) and the "bbb.jpg" was ...
by uemon
2017-01-31T07:31:37-07:00
Forum: Users
Topic: Layering Multiple JPEG Images
Replies: 4
Views: 2467

Layering Multiple JPEG Images

I want to resize several JPEG images and overlay them on a background image by using Imagemagick.

I can achieve my purpose with the following cords.

convert -size 500x1000 xc:white \
\( aaa.jpg -resize 50x50 \) -geometry +50+100 -composite \
\( bbb.jpg -resize 100x100 \) -geometry +100+200 ...