Trying to use "-quiet" for cr2 to jpg conversion, but it has no impact apparently, dumping output below.
It works incase of other normal input formats like PNG, GIF etc, but the moment we pass CR2 files as input it prints some extra information, I know "-quiet" suppresses only warning and not errors, but these debugs do not look like errors, infact output gets generated successfully.
Any idea how to get rid of it ?
Code: Select all
"C:\Program Files\ImageMagick-7.0.5-7\convert.exe" "sample.cr2" "Output.jpg"
Loading Canon EOS 5DS image from C:/Users/ADMINI~1/AppData/Local/Temp/2/magick-54242IopMxfESkSI ...
Scaling with darkness 0, saturation 16383, and multipliers 2.475208 1.000000 1.512372 1.000000
Converting to sRGB colorspace...
Writing data to C:/Users/ADMINI~1/AppData/Local/Temp/2/magick-5424Gnni3sLjIiUe.ppm ...
Code: Select all
"C:\Program Files\ImageMagick-7.0.5-7\convert.exe" -quiet "sample.cr2" "Output.jpg"
Loading Canon EOS 5DS image from C:/Users/ADMINI~1/AppData/Local/Temp/2/magick-5784PIfXWdZ6VR61 ...
Scaling with darkness 0, saturation 16383, and multipliers 2.475208 1.000000 1.512372 1.000000
Converting to sRGB colorspace...
Writing data to C:/Users/ADMINI~1/AppData/Local/Temp/2/magick-5784Tghx-GFm8iHr.ppm ...
Rajiv