Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
public
static
void
writeImage
(
BufferedImage
image,
File
file
)
throws
IOException
{
//Slow
ImageIO.
write
(
image,
"PNG"
, file
)
;
//Faster, but hopefully there's no transparency on the image
ImageIO.
write
(
image,
"JPG"
, file
)
;
}