11 lines
194 B
Batchfile
11 lines
194 B
Batchfile
set shotpath=%~1
|
|
set mgrPath=%~dp0\mogrify.exe
|
|
|
|
rem convert screenshots to jpg
|
|
|
|
cd /d %shotpath%
|
|
%mgrPath% -adaptive-resize 1920 -format jpg -quality 80 photo_?.png
|
|
|
|
del photo_?.png
|
|
::pause
|
|
exit |