So far, I am using dcraw --> ImageMagick with an intermediate file, i.e. something along the lines of:
Code: Select all
C:\Programme\ImageMagick7\dcraw.exe -q 3 -o 0 -4 -r 1 1 1 1 -S 65535 -T -O "%~dp1temp16.TIF" %1
magick "%~dp1temp16.TIF" -scale 25%% -distort barrel "0.0099 -0.0678 0.0014 1.0511" "%~dpn1.tiff"
Code: Select all
C:\Programme\ImageMagick7\dcraw.exe -q 0 -T -O "%~dp1temp.TIF" %1
magick "%~dp1temp.TIF" -scale 25%% -distort barrel "0.0099 -0.0678 0.0014 1.0511" "%~dpn1.tiff"
This code is placed in two Windows batch files which then replace the usual dcraw-only conversion command lines -- and work just fine.
My question: Could I somehow pipe the output of dcraw into ImageMagick in order to do everything in a single command that I could provide instead of using batch files with an intermediate file?
As you can take from the above code, a solution based on the Delegates file is not suitable, as I have to adapt the dcraw options as well.
Wolfgang Hugemann