mirror of
https://github.com/Michaelangel007/apple2gs_shr_converter.git
synced 2024-10-31 13:07:27 +00:00
14 lines
479 B
Batchfile
14 lines
479 B
Batchfile
@echo off
|
|
REM pad43.bat - pad all images to 4:3 aspect BMP
|
|
REM calls cropper.bat to do so for each individual image
|
|
if not exist jpg\*.* mkdir jpg >NUL
|
|
for %%f in (*.jpg) do call cropper.bat %%f %%~nf PAD
|
|
for %%f in (*.png) do call cropper.bat %%f %%~nf PAD
|
|
for %%f in (*.gif) do call cropper.bat %%f %%~nf PAD
|
|
cd jpg
|
|
if exist ..\*.jpg move ..\*.jpg . > NUL
|
|
if exist ..\*.png move ..\*.png . > NUL
|
|
if exist ..\*.gif move ..\*.gif . > NUL
|
|
cd ..
|
|
REM this is the end
|