Top "Bufferedimage" questions

double-buffering in desktop GUI applications.

How to read pixel color in a java BufferedImage with transparency

I am reading pixel color in a BufferedImage as follows: ..... InputStream is = new BufferedInputStream(conn.getInputStream()); BufferedImage image = ImageIO.read(…

java transparency bufferedimage javax.imageio
Using BufferedImage and ImageIO classes in my Android Activity

I am developing an Android App that can do Gamma correction of an image stored in phone. My activity can …

android bufferedimage javax.imageio
How can I import java.awt.image.BufferedImage in Android Studio

I need my android app to recognize BufferedImage and I am using Android Studio. I've seen that there is a …

java android android-studio bufferedimage
How to get the format(ex:jpen,png,gif) of image file (BufferedImage) in java

i want to get the buffered image format or type of image using java, InputStream stream = request.getResponseStream(); BufferedImage image= …

java bufferedimage file-extension image-formats
How to get scaled instance of a bufferedImage

I wanted to get scaled instance of a buffered image and I did: public void analyzePosition(BufferedImage img, int x, …

java scale bufferedimage toolkit
How to convert a BufferedImage to black and white?

How can I convert an existing colored BufferedImage to monochrome? I want the image to be completely split between only …

java image bufferedimage monochrome
Add BufferedImage to PDFBox document

In my current project, I try to add a BufferedImage to a PDFBox document. More specificly, I use an image …

java jfreechart bufferedimage pdfbox
How to convert Icon from JLabel into BufferedImage?

Simple, very straight forward but seems uncle google and me getting confused. I have single JLabel that already has its …

java image swing bufferedimage jlabel
Copy two BufferedImages into one image side by side

I have two images and I'd like to copy these two images to a new image where the second image …

java image image-processing bufferedimage