Currently I use 2 lines to run magick, one to get the image size, second to actually do the job.
Would it be possible to have it in one go?
Code: Select all
magick image.jpg -profile sRGB.icc overlay.jpg -resize 1280x600 -gravity center -compose multiply -strip -define jpeg:extent=240000 -composite out.jpgWith two lines it's easy, but I have no clue how to go about it in one.