Advertisement
Guest User

Untitled

a guest
Sep 12th, 2014
11,573
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1.     public static void writeImage(BufferedImage image, File file) throws IOException {
  2.         //Slow
  3.         ImageIO.write(image, "PNG", file);
  4.  
  5.         //Faster, but hopefully there's no transparency on the image
  6.         ImageIO.write(image, "JPG", file);
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement