JAVA From RenderedImage To BufferedImage
[CODE] // 참고 URL : http://www.jguru.com/faq/view.jsp?EID=114602 public static BufferedImage convertRenderedImage(RenderedImage img) { if (img instanceof BufferedImage) { return (BufferedImage)img; } ColorModel cm = img.getColorModel(); int width = img.getWidth(); int height = img.getHeight(); WritableRaster raster = cm.createCompatibleWritableRaster(width, height); boolean isAlphaPremultiplied =..
2009.06.18