I would appreciate any help how to start or anything.
I just found out that there is a tool 'ImageMagick' who can command-line Auto resize images. Based on that knowledge I think that is smarter to do the following:
Folder structure:
- C:\TEST --> subfolders --> import, export
- import --> subfolders --> We do not know the exact name of the folder, it can be anything!
- export --> subfolders --> files from 'import'
When I put 'X' number of folders (each folder contains, a 'X' number of pictures) to 'import' I want to:
Copy first 'X' folder in 'import' (and all images inside) to 'export' -> resize to 400x300px and rename as '1a'
Copy first 'X' folder in 'import' (and all images inside) to 'export' -> resize to 200x150px and rename as '1b'
*. Under the assumption that there are ten pictures copied in first 'X' folder in 'export'... It will look like this - 1a,1b, 2a,2b, 3a,3b ... 10a,10b
When finish the first 'X' folder...start again, until it reaches the end of 'X' folder in 'import'.
Example #: This is just an assumption, the names and numbers of files and folders we dont no!
Folder structure:
- C:\TEST --> subfolders --> import, export
- import --> subfolders --> f1, e7, DD --> we have three folders
export --> subfolders --> f1, e7, DD
- Resize all pictures in 'C:\TEST\import\f1' to 'C:\TEST\export\f1\1a'
Resize all pictures in 'C:\TEST\import\f1' to 'C:\TEST\export\f1\1b'
Resize all pictures in 'C:\TEST\import\e7' to 'C:\TEST\export\e7\1a'
Resize all pictures in 'C:\TEST\import\e7' to 'C:\TEST\export\e7\1b'
Resize all pictures in 'C:\TEST\import\DD' to 'C:\TEST\export\DD\1a'
- Resize all pictures in 'C:\TEST\import\DD' to 'C:\TEST\export\DD\1b'
ImageMagick syntax for resize in command-line:
mogrify -resize 400x300 source file
mogrify -resize 400x300 C:\picture_name.jpg
I found batch script on their website http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=16486 maybe it can help.