Use ImageMagick to place an image inside a larger canvas

前端 未结 7 701
萌比男神i
萌比男神i 2021-01-30 02:46

Getting started with ImageMagic and trying to find a way to do this... If an image is less than 50 pixels tall or 50 pixels wide, I\'d like to place it (un-scaled) in the horizo

7条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-30 03:35

    To modify the source image you need to use mogrify:

    mogrify -gravity center -background white -extent 50x50  source.jpg
    

提交回复
热议问题