Top "Bufferedimage" questions

double-buffering in desktop GUI applications.

Java - get pixel array from image

I'm looking for the fastest way to get pixel data (int the form int[][]) from a BufferedImage. My goal is …

java bufferedimage javax.imageio
How to save a BufferedImage as a File

I am using the imgscalr Java library to resize an image . The result of a resize() method call is a …

java file-io bufferedimage
Java converting Image to BufferedImage

There is already question like this link on StackOverflow and the accepted answer is "casting": Image image = ImageIO.read(new …

java image casting bufferedimage
Create a BufferedImage from file and make it TYPE_INT_ARGB

I have a PNG file with transparency that is loaded and stored in a BufferedImage. I need this BufferedImage to …

java image image-manipulation bufferedimage argb
Convert RGB values to Integer

So in a BufferedImage, you receive a single integer that has the RGB values represented in it. So far I …

java bufferedimage
How to convert buffered image to image and vice-versa?

Actually i am working on a image editing software and now i want to convert the buffered-image i.e : BufferedImage …

java image bufferedimage
How to scale a BufferedImage

Following the javadocs, I have tried to scale a BufferedImage without success here is my code: BufferedImage image = MatrixToImageWriter.getBufferedImage(…

java image image-processing bufferedimage image-scaling
Bufferedimage resize

I am trying to resized a bufferedimage. I am able to store it and show up on a jframe no …

java bufferedimage
How do I draw an image to a JPanel or JFrame?

How do I draw an Image to a JPanel or JFrame, I have already read oracle's tutorial on this but …

java swing jframe jpanel bufferedimage
Java - resize image without losing quality

I have 10,000 photos that need to be resized so I have a Java program to do that. Unfortunately, the quality …

java image image-processing bufferedimage