Btw, chmee, is that black/white level dng supposed to be fixed in 1.6.5? I'm still getting that green cast. (using CDNG 16bit and vertical banding and chroma smoothing on)
http://i.imgur.com/EwfICfY.jpgI deleted the .json too btw.
EDIT: For those looking to fix DNGs with similar issues using exiftool and kept failing to get black/whitelevel to change:
BlackLevel is written to SubIFD by default. Nothing will happen if the DNG doesn't contain a SubIFD.
Use this command to figure out where BlackLevel is stored:
exiftool -G1 -blacklevel image.dng
then write it to the same place:
exiftool -GROUP:BlackLevel=0 image.dng
In my case the GROUP is IFD0The complete command is thusly:
exiftool -IFD0:BlackLevel=0 *.dng
Same with whitelevel