Top "Bufferedimage" questions

double-buffering in desktop GUI applications.

Resizing an image in swing

I have snippet of code that I am using for the purpose of resizing an image to a curtain size (…

java swing graphics bufferedimage imageicon
Image vs. BufferedImage

Whenever dealing with the loading and rendering of images in Java, I have previously always used BufferedImages to store and …

java image bufferedimage
How to flip BufferedImage in java

I get RGB24 byte array and want to show it in Java. public void getByteArray(byte byteArray[]){ int count1 = 0; byte …

java swing awt rgb bufferedimage
Get buffered image from byte array of raw data

I am using JNA. and i am getting byte array of raw data from my c++ method. Now i am …

java bytearray bufferedimage jai
Convert a tiff into a buffered image (Java)

I need to convert a tiff file into a BufferedImage. I wrote the following code: String filepath = "C:\\tiffFolder\\"; String …

java file bufferedimage tiff javax.imageio
Buffered image pixel manipulation

I have this code: public Image toNegative() { int imageWidth = originalImage.getWidth(); int imageHeight = originalImage.getHeight(); int [] rgb = null; // new int[…

java bufferedimage pixel-manipulation
Rotate a buffered image in Java

I am trying to rotate a buffered image in java. Here is the code I am using: public static BufferedImage …

java rotation bufferedimage graphics2d
Convert Data-URL to BufferedImage

I have a Data-URL from an image file and have to pass it through to another function. Along this path …

java bufferedimage javax.imageio data-url
BufferedImage to BMP in Java

I have a BufferedImage object and I want to encode it to the BMP format and save it to disk. …

java bufferedimage bmp
Clear a transparent BufferedImage as fast as possible

I have a transparent BufferedImage created with the following code(not relevant how it is created, I think): GraphicsEnvironment ge = …

java awt bufferedimage graphics2d