The most convenient method to read an image from a source (Files, InputStreams, URLs) is:
BufferedImage myImage = ImageIO.read( source );
But then, how to convert myImage to a BufferedImage.TYPE_USHORT_565_RGB format?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can create a new BufferedImage of the required type and then draw the original image on it, something like: