11

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??

Anand S Kumar
  • 88,551
  • 18
  • 188
  • 176

4 Answers4

7

You need to have a look at ImageIO.write.

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();
aioobe
  • 413,195
  • 112
  • 811
  • 826
2

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();
Ninto
  • 306
  • 2
  • 3
1

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.

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
-1

You can simply do this:

public Bitmap getBitmapFromBufferedImage(BufferedImage image)
{
     return redResult.getBitmap();
}
Nikolai Shevchenko
  • 7,083
  • 8
  • 33
  • 42
Raul Lucaciu
  • 132
  • 7