在图像中插入缩略图

问题描述 投票:0回答:1

我正在为我的学生创建一个练习,我想在 Linux 上将特定图像作为缩略图插入到另一个图像中。

目标是将具有特定元数据的图像添加到另一图像中作为缩略图。

linux image ubuntu imagemagick thumbnails
1个回答
0
投票

好的,制作红色背景图片:

convert -size 300x200 xc:red bg.png

拍摄Ladram Bay 420x500的照片:

enter image description here

版权所有 © Mark Setchell - Ladram Bay

调整其大小并从右下角偏移:

convert LadramBay.jpg -resize 80x80 -gravity Southeast -geometry +10+40 bg.png +swap -composite result.png

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.