Search found 22 matches

by Robin55
2018-05-10T22:15:12-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7575

Re: How can I add a logo to an image in batch?

Is this what you mean snibgo? I can get this working for individual files like your first example, but I'm not able to get it going in batch? can you help me fix this? magick ^ "Front Covers\%%~nF.png" ^ ( "Spine\%%~nF.png" -rotate 90 -resize "50x533>" ) ^ -gravity Sout...
by Robin55
2018-05-10T04:17:01-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7575

Re: How can I add a logo to an image in batch?

Thank you SO much snibgo!! I don't have time right now to test this out, but I'll let you know how I got on as soon as I can. I never would of worked all that out :)
by Robin55
2018-05-10T02:18:33-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7575

Re: How can I add a logo to an image in batch?

Hi fmw42,
I don't want to rename the output, the two files I'm combining would have the same filenames and so would the file that is output.... hopefully
Anymore help with this would be very appreciated?
by Robin55
2018-05-09T19:31:49-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7575

Re: How can I add a logo to an image in batch?

This is as close as I have got:

for %%F in (Spine\*.png) do magick composite -rotate -90 -geometry +31+105 "Spine\%%~nF.png" "Front Covers\%%~nF.png" "Covers\%%~nF.png"
by Robin55
2018-05-09T17:16:32-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7575

How can I add a different logos to an image in batch with the same filenames?

Hello All, I just need a bit of help here? The version of ImageMagick I am using is 7.0.7-27 Q16 x64 and I am on Windows 10 This is what I currently have made, Their just simple boxes I have created. (I'm no Photoshop expert obviously) http://i68.tinypic.com/r856w7.png What I want to do is add a log...
by Robin55
2018-05-04T15:32:59-07:00
Forum: Users
Topic: Is it possible to create spine art from the jpgs filename?
Replies: 3
Views: 3535

Re: Is it possible to create spine art from the jpgs filename?

wow so its possible! The version of image magic I am using is 7.0.7-27 Q16 x64 and I am on Windows 10 Yes I would very much like the bat file to scale the script so it fits correctly even if the script is longer and I do need to do all this in batch. As for the font and point size I want to use I ha...
by Robin55
2018-05-04T14:29:42-07:00
Forum: Users
Topic: Is it possible to create spine art from the jpgs filename?
Replies: 3
Views: 3535

Is it possible to create spine art from the jpgs filename?

Hi all! Got an question here that I imagine MAY be possible..... I need a bat file that will copy the text from the images file name and then add the text to the image its self in a certain place. I need to do this in batch. I know that sometimes the file name may be too long but that's ok, I'll fix...