Guest User

Untitled

a guest
Jan 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. BufferedImage image = new BufferedImage(Application.getPanelSize().width, Application.getPanelSize().height, BufferedImage.TYPE_INT_RGB);
  2. paintImage(image.createGraphics());
  3. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  4. ImageIO.write(image, "png", baos);
  5. byte[] byteArray = baos.toByteArray();
  6. String base64 = new sun.misc.BASE64Encoder().encode(byteArray);
  7. log(base64);
Add Comment
Please, Sign In to add comment