Advertisement
SantiCastillo

Untitled

Feb 11th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.58 KB | None | 0 0
  1. @echo off
  2. setlocal EnableDelayedExpansion
  3. set "logfile=compresion.log"
  4. (call :log)>>%logfile%
  5. exit /B
  6. :log
  7. for /R "C:\Users\SantiagoC\Pictures\FOTOS_ESTELA\Retocadas" %%A in (*.jpg) do (
  8.     mogrify -quality 90 -interlace PLANE -sampling-factor 4:2:0 -compress JPEG2000 -colorspace RGB "%%~A"
  9.     echo !date! %%A !time!
  10. )
  11. :: La ruta dins de les cometes se ha de modificar a la carpeta desitjada, tambe la extensio dins del parentesis.
  12. :: A la llinea del mogrify, vindria la compressio o modificacio utilitzant el imagemagick, en este cas mogrify. Important no llevar la variable del final
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement