IT is currently not possible to do in one step, but since it is one of the most often question, I'll be adding it in the future. Right now, the change of DPI step should be relatively fast as it only overwrites the numbers in the header of each. Are there any old thumb_* images in the target folder?
Can you resize images and change the DPI at the same time?
My friend and I have been working on a batch script to resize images, change the DPI and transfer the images to a specified location. Now we have it working, it generates the images just fine and in a timely manner but when the script gets to the point of doing the dpi part it slows down the whole process. Is there a way to resize the images and change the dpi of the file on the same pass? Right now we have it doing it in two passes the first is:
start "" /B /BELOWNORMAL "%~dp0PhotoResize.exe" -^200x134 -R -O -U -E -N -Q65 "-c%~dp0\%_event% Generated Images\<PATH>thumb_<name>.jpg" "%~dp0\%event%"
Then the second pass
start "" /B /BELOWNORMAL /wait "%~dp0PhotoResize.exe" -d476 -zthumb_* -t -i -r -u -e -o "%~dp0\%_event% Generated Images"
Not to sure if they can be combined into one pass or not. Any input would be appreciated.
-flip807