Need a bit more help here...
I am using Windows 10 and I am using ImageMagick 7.0.7-31 Q16 x64
I want to make a spine label in batch for many different images using the images file name.
below is the bat file I am currently using to add images to the spine:
Code: Select all
for %%F in (Spine\*.png) do magick "Front Covers\%%~nF.png" ( "Spine\%%~nF.png" -rotate 90 -resize "44x400>" ) -gravity SouthWest -geometry +26+80 -composite "Covers\%%~nF.png"
As always if anyone can help me out here I would be very grateful.