When converting from DNG to PNG and JPEG the image created has a pinkish tinge to it.
Code for DNG2JPEG:
DngImage dngImage = (DngImage) DngImage.load(inputPath);
dngImage.save(outputPath, new JpegOptions());
Code for DNG2PNG:
DngImage dngImage = (DngImage) DngImage.load(inputPath);
dngImage.save(outputPath, new PngOptions());
Sample DNG file and screenshot showing pinkish tinge:
sample.zip (7.6 MB)