I have an image being viewed in an applet. How to save image in 16 bit format png bit depth? I am using java.
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.
BufferedImage
ColorModel