Search found 9 matches

by ryanpcworld
2019-02-20T17:59:00-07:00
Forum: Users
Topic: User Input Batch Input to Output Conversion
Replies: 14
Views: 5915

Re: User Input Batch Input to Output Conversion

I'm trying to say that I want to make a batch program that will convert images from a input directory to another directory. At the start, it tells you to input where your bitmaps are stored then enter in the input, and then press enter and it will then ask you to then type in which directory where y...
by ryanpcworld
2019-02-20T10:10:26-07:00
Forum: Users
Topic: User Input Batch Input to Output Conversion
Replies: 14
Views: 5915

Re: User Input Batch Input to Output Conversion

magick mogrify -path /%INPUT%/.bmp -dither FloydSteinberg -monochrome /%OUTPUT%/ *.bmp
Doesn't work.
by ryanpcworld
2019-02-19T23:02:59-07:00
Forum: Users
Topic: User Input Batch Input to Output Conversion
Replies: 14
Views: 5915

Re: User Input Batch Input to Output Conversion

https://i.imgur.com/OwQtL7N.png Done it like this: SET /P INPUT=Please enter the input directory where your images are stored: SET /P OUTPUT=Please enter the output directory where your images are going to be stored: @echo Converting... magick convert -path /%INPUT%/.bmp -dither FloydSteinberg -mon...
by ryanpcworld
2019-02-19T21:01:20-07:00
Forum: Users
Topic: User Input Batch Input to Output Conversion
Replies: 14
Views: 5915

Re: User Input Batch Input to Output Conversion

I'm also using IM7, I'm also a starter to this forum.
by ryanpcworld
2019-02-19T21:00:57-07:00
Forum: Users
Topic: User Input Batch Input to Output Conversion
Replies: 14
Views: 5915

Re: User Input Batch Input to Output Conversion

I'm trying to say is the batch file will tell you to enter the directory where your images are stored, then it will tell you which directory you want to save it in. That's what I'm trying to do, I'm using user input like this: http://inanecoding.co.uk/2011/06/simple ... tch-files/
by ryanpcworld
2019-02-19T18:56:34-07:00
Forum: Users
Topic: User Input Batch Input to Output Conversion
Replies: 14
Views: 5915

User Input Batch Input to Output Conversion

I'm trying to use batch user input for entering the input directory where the images are stored so then you can enter the output directory where your converted files will be. I tried this, it doesn't work: SET /P INPUT=Please enter the input directory where your images are stored: SET /P OUTPUT=Plea...