Now I have the following batch file that I use to process my images:
@echo none cd %1 md "%~1\ProcessedJPEGS" for %%i in (*.jpg) do "C:\Program Files\Image Optimization\jpegtran.exe" -optimize -progressive -copy none "%%i" "%~1\ProcessedJPEGS\%%i" move /Y "%~1\ProcessedJPEGS\*.*" "%~1" rd "%~1\ProcessedJPEGS" pause
As you can see, this is not perfect, but my skills are ridiculous at best, so I need help here :)
What I want to do is run this batch in a directory and recursively process all the images and overwrite them.
Thanks in advance, Arky
source share