recurcive cr2 to jpg script

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
gabe
Posts: 1
Joined: 2017-08-22T21:12:18-07:00
Authentication code: 1151

recurcive cr2 to jpg script

Post by gabe »

i made this script to change the raw cr2 files from my cannon to .jpg because i am to lazy to run them all through photoshop(darktable runing on the ubuntu subsystem in win 10) so i figured i would post my script so other people can use and or improve it

Hint: change where it says <dir> to your directory you have the cr2 files in.

Code: Select all

@echo off
Forfiles /p "<dir>" /m *.CR2 /s /c "cmd /c convert @fname.cr2 -quality 100 @fname_converted.jpg && echo Done"
pause
Post Reply