Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java : BufferedImage to Bitmap format

I have a program in which i capture the screen using the code :

robot = new Robot();
BufferedImage img = robot.createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize()));

Now i want to convert this BufferedImage into Bitmap format and return it through a function for some other need, Not save it in a file. Any help please??

like image 572
Anand S Kumar Avatar asked Jun 13 '11 13:06

Anand S Kumar


3 Answers

You need to have a look at ImageIO.write.

  • The Java Tutorials: Writing/Saving an Image

If you want the result in the form of a byte[] array, you should use a ByteArrayOutputStream:

ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(yourImage, "bmp", baos);
baos.flush();
byte[] bytes = baos.toByteArray();
baos.close();
like image 53
aioobe Avatar answered Nov 07 '22 20:11

aioobe


When you say "into Bitmap format" you then mean the data (as in a byte array)? If that's the case, then you can use ImageIO.write (like suggested above).
If you don't want to save it to a file, but just want to get the data, can you use a ByteArrayOutputStream like this:

ByteArrayOutputStream out = new ByteArrayOutputStream();
ImageIO.write(img, "BMP", out);
byte[] result = out.toByteArray();
like image 43
Ninto Avatar answered Nov 07 '22 19:11

Ninto


To see the image types available for write in the J2SE (ex. JAI), see ImageIO.getWriterFileSuffixes():

E.G.

class ShowJavaImageTypes {

    public static void main(String[] args) {
        String[] imageTypes =
            javax.imageio.ImageIO.getWriterFileSuffixes();
        for (String imageType : imageTypes) {
            System.out.println(imageType);
        }
    }
}

Output

For this Sun Java 6 JRE on Windows 7.

bmp
jpg
wbmp
jpeg
png
gif
Press any key to continue . . .

See similar ImageIO methods for MIME types, formats, and the corresponding readers.

like image 1
Andrew Thompson Avatar answered Nov 07 '22 18:11

Andrew Thompson