Search found 10 matches

by samiam00
2016-04-28T13:49:55-07:00
Forum: Users
Topic: What processes do I need
Replies: 8
Views: 4053

Re: What processes do I need

glad I could help.
by samiam00
2016-04-27T11:00:24-07:00
Forum: Users
Topic: What processes do I need
Replies: 8
Views: 4053

Re: What processes do I need

you need to use DOS paths. However, the desktop is tricky to get to in DOS. It would be much easier to have a folder on your C: drive called 'cashy'. in that event you can either enter: cd\ [enter] -- that gets you to the root directory. then enter: cd cashy [enter] -- that's where your images are ...
by samiam00
2016-04-27T07:01:08-07:00
Forum: Users
Topic: What processes do I need
Replies: 8
Views: 4053

Re: What processes do I need

Thanks Snibgo for your kind help,please is SELECT All a part of the convert code e.g,select all convert image.png??? Also,from the cmd what can type in there to confirm the software is properly installed and ready to work? no - the 'select all' is not part of the code. It is a shortcut where you ...
by samiam00
2016-04-27T04:05:24-07:00
Forum: Users
Topic: problems with mogrify or convert -label
Replies: 11
Views: 8670

Re: problems with mogrify or convert -label

snibgo wrote:
samiam00 wrote:and just for my understanding -
See the documentation at http://www.imagemagick.org/script/comma ... .php#label
Thanks - i did look at all the documentation, before asking. I am not a programmer and could not quite piece things together. Without examples, I am lost....
by samiam00
2016-04-27T04:04:08-07:00
Forum: Users
Topic: problems with mogrify or convert -label
Replies: 11
Views: 8670

Re: problems with mogrify or convert -label

and just for my understanding - does the -label command simply not work with mogrify or convert? It shows it as option in the tutorial. The "-label" operator doesn't add text upon the image. It embeds a label tag into the image datastream. There are several methods to apply text onto an image, most ...
by samiam00
2016-04-26T21:59:11-07:00
Forum: Users
Topic: paths in composite command
Replies: 1
Views: 1820

paths in composite command

this works: (with both images in one folder) composite -gravity NorthWest north.png AX.jpg AXx.jpg this doesn't: (with each image in a separate subfolder) composite -gravity NorthWest "C:\TIApic\NORTH_compound\north.png" "C:\TIApic\NORTH_compound\AX.jpg" "C:\TIApic\NORTH_compound\AXx.jpg" Can ...
by samiam00
2016-04-26T21:01:09-07:00
Forum: Users
Topic: problems with mogrify or convert -label
Replies: 11
Views: 8670

Re: problems with mogrify or convert -label

and just for my understanding - does the -label command simply not work with mogrify or convert? It shows it as option in the tutorial.
by samiam00
2016-04-26T21:00:16-07:00
Forum: Users
Topic: problems with mogrify or convert -label
Replies: 11
Views: 8670

Re: problems with mogrify or convert -label

That works - thanks - is there a way to make the font size and the splice a percentage, since all images have vastly different sizes and they all should have a similar 'proportion'. I figured out how to do a percentage on a frame - can that be done for all sizes?
by samiam00
2016-04-26T20:32:42-07:00
Forum: Users
Topic: problems with mogrify or convert -label
Replies: 11
Views: 8670

Re: problems with mogrify or convert -label

That works, though I am looking for something that looks more like the label outcome - a solid red bar below the picture with the label in it - not with the label over the actual picture. Is there a way to achieve that with your method?

Thanks
by samiam00
2016-04-26T20:09:51-07:00
Forum: Users
Topic: problems with mogrify or convert -label
Replies: 11
Views: 8670

problems with mogrify or convert -label

I am very new to this, so please have compassion -- I have, what I thought, was a simple problem. I have a folder full of jpgs that all need the same fixed label. So I figured this command should do the trick: mogrify -label "Before" -geometry +0+0 -pointsize 200 -background Red -fill White "C:\pic ...