Advertisement
Guest User

Untitled

a guest
Oct 8th, 2020
2,645
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 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 alternative
  6.         JDeli.write(image, "PNG", file);
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement