I am trying to add a watermark outside the image, creating firstly a padding place.
- a) How can I do that? My imagemagick command have problem. Do not cover all my image files eg. "DSC_5568 - DSC_5588_fused.jpg" did not add padding.
- b) I can combine the two separate commands?
- c) I want to do that in bulk
My imagemagick commands:
for pic in DSC*.*; do convert -background black -extent 0%x0%+0+100 $pic ${pic//.*}-padded.jpg; done
for pic in DSC*padded.*; do composite -dissolve 100% -gravity SouthEast watermark.png $pic ${pic//.*}-marked.jpg; done
example filenames:
"DSC_5568.JPG, DSC_5568 - DSC_5588_fused.jpg.... etc."