ImageMagick - converting from RAW to PNG brightens the image, but using an online converter doesn't

105 Views Asked by At

I have a large number of .ARW images that I need to convert to .PNG files for further processing. Using convert myimage.ARW myimage.png works, but brightens up the image significantly. How do I convert images in a way that makes it so that the converted image 'looks like' a screenshot of the .ARW image on my MAC?

1

There are 1 best solutions below

2
requiemman On

As pointed out by @fmw42, the command magick -define dng:no-auto-bright=true DNG:yourimagefile.extension convertedfilename.extension does the trick. There is a documentation error with ImageMagick, but this is the general solution.