Thanks that also worked.fmw42 wrote:try putting them together as
does that work?Code: Select all
mogrify -gravity center -background transparent -extent 128x128 -alpha Set -draw 'image Dst_Over 0,0 0,0 "bg.png"' *.png
Search found 3 matches
- 2015-02-20T18:10:12-07:00
- Forum: Users
- Topic: add background image to multiple images
- Replies: 5
- Views: 5441
Re: add background image to multiple images
- 2015-02-17T20:00:13-07:00
- Forum: Users
- Topic: add background image to multiple images
- Replies: 5
- Views: 5441
Re: add background image to multiple images
Thanks fmw42. I got it. this is what ended up with: mogrify -alpha Set -draw 'image Dst_Over 0,0 0,0 "bg.png"' *.png I also found out some of my images were not the correct size so I did this as well: mogrify -gravity center -background transparent -extent 128x128 *.png The annoying thing is I tried ...
- 2015-02-17T18:48:18-07:00
- Forum: Users
- Topic: add background image to multiple images
- Replies: 5
- Views: 5441
add background image to multiple images
Thanks in advance for the help. Ive been going nuts over this for a few hours. What I want to do is add a background image to a bunch of images while preserving the file name of the image that gets the background. So I'd like to use mogrify. The image I want to use as the background image is simply ...