16 bit bit depth

I have an image being viewed in an applet. How to save image in 16 bit format png bit depth? I am using java.

+6
java png
source share
1 answer

Converting to 16 bits is not part of storing image data. First you will need to convert the image data by copying it to a BufferedImage with a 16-bit ColorModel . Then just save the result as PNG.

+2
source share

All Articles