Search found 22 matches

by Robin55
2018-05-15T18:37:12-07:00
Forum: Users
Topic: How can I make labels from filenames in batch?
Replies: 14
Views: 7671

Re: How can I make labels from filenames in batch?

Finally got it just how I want it now!! This has been a learning experience :) Thanks everyone for helping out, this bit of code is going to come in very handy!!!
by Robin55
2018-05-15T16:35:20-07:00
Forum: Users
Topic: How can I make labels from filenames in batch?
Replies: 14
Views: 7671

Re: How can I make labels from filenames in batch?

OK with everyones help I have got this far: for %%F in (Front Covers\*.png) do magick convert "Front Covers\%%~nF.png" ( -font bebas-neue -fill red -gravity NorthWest -geometry +25+550 -size 300x30 -rotate 90 label:"%%~nF" ) -composite "Covers\%%~nF.png" Which gives me ...
by Robin55
2018-05-15T14:00:00-07:00
Forum: Users
Topic: How can I make labels from filenames in batch?
Replies: 14
Views: 7671

Re: How can I make labels from filenames in batch?

I'm having no more success with this at all. I really need some help here This is as far as I have got and It just seems to be doing the same thing. I really need to get this done. for %%F in (Front Covers\*.png) do magick convert "Front Covers\%%~nF.png" -fill white -pointsize 24 -font Ar...
by Robin55
2018-05-15T06:03:56-07:00
Forum: Users
Topic: How can I make labels from filenames in batch?
Replies: 14
Views: 7671

Re: How can I make labels from filenames in batch?

Sorry I'm only getting back now. ok this is getting a bit more confusing, but this is what I have now: for %%F in (Front Covers\*.png) do magick convert "Front Covers\%%~nF.png" ( -size 250x44 caption:"%%~nF" ) -font Candice -pointsize 40 -rotate 90 -gravity SouthWest -geometry +...
by Robin55
2018-05-14T19:59:27-07:00
Forum: Users
Topic: How can I make labels from filenames in batch?
Replies: 14
Views: 7671

Re: How can I make labels from filenames in batch?

Hi fmw42, This is kind of what I'm looking for: convert -background lightblue -fill blue -font Candice -pointsize 40 \ -size 320x -gravity Center caption:'ImageMagick Rules OK!' \ caption_centered.gif But can this be used to add the file name to the image and in batch? I wouldn't know where to begin...
by Robin55
2018-05-14T16:55:09-07:00
Forum: Users
Topic: How can I make labels from filenames in batch?
Replies: 14
Views: 7671

Re: How can I make labels from filenames in batch?

ok this is what I have got so far with your help:

for %%F in (Front Covers\*.png) do magick "Front Covers\%%~nF.png" ( -size 250x44 label:"%%~nF" -rotate 90 ) -gravity SouthWest -geometry +26+80 -composite "Covers\%%~nF.png"
by Robin55
2018-05-14T16:29:02-07:00
Forum: Users
Topic: How can I make labels from filenames in batch?
Replies: 14
Views: 7671

Re: How can I make labels from filenames in batch?

Hi again snibgo! OK so far so good! but I want just the pictures in "Front Covers" to get a label and then output to "Covers" I don't need anything to do with the spine folder at all. Also I like that the text is resized but I would like the text to form a second line instead at ...
by Robin55
2018-05-14T15:51:17-07:00
Forum: Users
Topic: How can I make labels from filenames in batch?
Replies: 14
Views: 7671

How can I make labels from filenames in batch?

Hi All! 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: for %%F in (Spine\*.png) do magick...
by Robin55
2018-05-11T03:22:31-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7565

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

I don't know to be honest I was just using Windows Notepad
by Robin55
2018-05-11T01:40:20-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7565

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

I think I have it, using your original code all in one line seems to be working fine now. Thank you for all your help and patience! I'll try a few more now. Here is the code as I ended up using it: for %%F in (Spine\*.png) do magick "Front Covers\%%~nF.png" ( "Spine\%%~nF.png" -r...
by Robin55
2018-05-11T01:33:54-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7565

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

Sorry I should of included an example of what I did:
for %%F in (Spine\*.png) do magick "Front Covers\%%~nF.png" ( "Spine\%%~nF.png" ) -gravity SouthWest -geometry +26+80 -composite "Covers\%%~nF.png"
by Robin55
2018-05-11T01:32:39-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7565

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

Ok so I tried all your codes and everyone of them produced a file named: ^ However if I put your code all in one line and remove the ^ I do get a result though the spine.png is placed in the bottom right corner and is not where it should be.... do you think you could show me how to write the code pr...
by Robin55
2018-05-11T00:38:30-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7565

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

I have checked my files they are 2 .png files in Front Covers, 2 .png files in spines. if I insert for %%F in (Spine\*.png) do echo %%~nF I get the same results, the command line looks like its working but nothing is output apart from the file named: ^ I don't know if this is any use but when I run ...
by Robin55
2018-05-10T23:42:19-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7565

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

Yes I defiantly have no spaces after the ^ in the bat file. This is the code: for %%F in (Spine\*.png) do magick ^ "Front Covers\%%~nF.png" ^ ( "Spine\%%~nF.png" -rotate 90 -resize "50x533>" ) ^ -gravity SouthWest -geometry +26+80 -composite ^ "Covers\%%~nF.png"
by Robin55
2018-05-10T23:17:00-07:00
Forum: Users
Topic: How can I add a different logos to an image in batch with the same filenames?
Replies: 18
Views: 7565

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

Sorry snibgo but its still not working for me, when I run the .bat file all I get is a file named: ^ I tried removing the ^ on the last line and the first line but it hasn't made a difference...what am I missing???