Tagged Questions
The Java class BufferedImage is used to read and manipulate images and assist in double-buffering in desktop GUI applications.
23
votes
3answers
485 views
How can you produce sharp paint results when rotating a BufferedImage?
One attempted approach was to use TexturePaint and g.fillRect() to paint the image. This however requires you to create a new TexturePaint and Rectangle2D object each time you paint an image, which ...
13
votes
5answers
856 views
Create an image from a non-visible AWT Component?
I'm trying to create an image (screen-shot) of a non-visible AWT component. I can't use the Robot classes' screen capture functionality because the component is not visible on the screen. Trying to ...
10
votes
3answers
948 views
Java error on bilinear interpolation of 16 bit data
I'm having an issue using bilinear interpolation for 16 bit data. I have two images, origImage and displayImage. I want to use AffineTransformOp to filter origImage through an AffineTransform into ...
9
votes
3answers
1k views
Converting a series of BufferedImages to a video in Java?
How would I convert an an array of BufferedImages into a video? I'm making a screen recorder.
How would I compress the video afterward?
7
votes
1answer
3k views
Java: how to do fast copy of a BufferedImage's pixels? (unit test included)
I want to do a copy (of a rectangle area) of the ARGB values from a source BufferedImage into a destination BufferedImage. No compositing should be done: if I copy a pixel with an ARGB value of ...
6
votes
1answer
160 views
What buffering strategy should I use for my 2D scrolling map?
So, I'm creating a 2d top-down game in Java.
I'm following instructions from Java 2D: Hardware Accelerating - Part 2 - Buffer Strategies to take advantage of hardware acceleration.
Basically, what ...
6
votes
1answer
7k views
How do I properly load a BufferedImage in java?
Okay, so I've been trying to load a BufferedImage using this code:
URL url = this.getClass().getResource("test.png");
BufferedImage img = (BufferedImage) Toolkit.getDefaultToolkit().getImage(url);
...
5
votes
1answer
544 views
Sending a screenshot (bufferedImage) over a socket in java
I am sending a bufferedImage over a socket and I am using the example found in this post:
Sender
BufferedImage image = ....;
ImageIO.write(image, "PNG", socket.getOutputStream());
Receiver
...
5
votes
1answer
115 views
Using several bufferedImages in java
I'm making a game in a java applet and I'm trying to optimise my code to reduce flickering.
I've already implemented double buffering, so I'm trying to use another BufferedImage in order to store a ...
5
votes
4answers
2k views
What does “& 0xff” do?
I'm trying to understand the code below where b is a given integer and image is an image.
I understand that if the RGB value at given point i,j is greater than b then set that pixel to white else set ...
5
votes
2answers
3k views
How do you clone a BufferedImage
Hi I have an object which has many bufferedimages in it, I want to create a new object copying all the bufferedimages into the new object, but these new images may be altered and i dont want the ...
5
votes
4answers
447 views
Safe to update separate regions of a BufferedImage in separate threads?
I have a collection of BufferedImage instances, one main image and some subimages created by calling getSubImage on the main image. The subimages do not overlap. I am also making modifications to ...
5
votes
1answer
4k views
Using Graphics2D to overlay text on a BufferedImage and return a BufferedImage
I have checked similarly named questions, but they don't answer this use case.
Basically, I was to overlay some text (text) at a given coordinate (x,y) I have the below function in a package;
...
4
votes
1answer
813 views
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 to be able to address pixel (x, y) from the image using int[x][y]. All the methods I have ...
4
votes
3answers
533 views
how can I convert an RGB image to CMYK and vice versa in Java?
our web app let users download dynamically generated images in different formats (bmp, png and jpeg). Some of our users download the images for printing, thus we would like to allow them to choose ...
4
votes
3answers
522 views
Why does a BufferedImage require so much memory beyond the size of its data array?
I'm trying to determine how much heap any given TYPE_INT_ARGB BufferedImage will use so that, for a program which is doing some image processing, I can set a reasonable max heap based on the size of ...
4
votes
4answers
3k views
Java BufferedImage getting red, green and blue individually
The getRGB method returns a single int. How can I get individually the red, green and blue colors all as values between 0 and 255?
4
votes
2answers
7k views
How to save file using JFileChooser?
I have a method in my application called "Save as" which Saves the image of my application on computer my into a file.
I used the JFileChooser to let the users choose their desired location for saving ...
4
votes
2answers
1k views
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 = GraphicsEnvironment.getLocalGraphicsEnvironment();
...
4
votes
4answers
211 views
Will Perl be the bottleneck in this kind of image processing?
The processing I have in mind is this:
there are thousands of png files
each of them should be loaded, and its pixels accessed
each pixel's channels will be processed in some way, and then written ...
3
votes
2answers
80 views
Convert short[] into a grayscale image
I am writing a Buddhabrot fractal generator using aparapi. I got the OpenCL part of it to work, resulting in a single-dimension array that represents each pixel. I have the dimensions of the final ...
3
votes
2answers
88 views
How to Combine Images without loading them into RAM in Java
I have a very large (around a gigapixel) image I am trying to generate, and so far I can only create images up to around 40 megapixels in a BufferedImage before I get an out of memory error. I want to ...
3
votes
3answers
110 views
JButton Transparency on an BufferedImage
I have a Problem:
I'm rendering a BufferedImage in a JFrame. Then i add a JButton to the same frame.
when i try to make the button transparent, the button becomes transparent, but disregarding its ...
3
votes
3answers
134 views
How to add 20 pixels of white at the top of an existing image file?
I have an image of size w by h. In Java, I need to create an image that is size w by h+20 where the top w by 20 pixels is white, and the rest of the image is the same as the original image.
...
3
votes
2answers
138 views
Reading an image in Netbeans
I have an image file in my project. The hierarchy looks like this:
I'm trying to read Manling.png into Manling.java using this code:
public BufferedImage sprite;
public Manling()
{
try
{
...
3
votes
3answers
230 views
Out of memory problem saving large BufferedImage
I have a problem saving large (f.e. 12 000 x 9 000 ) images.
I'm developing a graphical editing software ( something like simple Photoshop ) and
The user obviously has to have to ability to save the ...
3
votes
1answer
128 views
3
votes
1answer
197 views
16 bit (565) image read
I'm reading an image byte array now the image is 16 bit (r: 5, g: 6, b: 5) and I would like to read it to BufferedImage.
I have tried something like:
int[] nBits = {5, 6, 5};
int[] bOffs = {0, 0, ...
3
votes
1answer
479 views
Java exception “Exception in thread ”main“ java.lang.ClassCastException: [B cannot be cast to [I” when calling java.awt.image.BufferedImage.copyData()
In the following code, I'm trying to combine some 1024*1024 png into several larger pngs. The code fails with this exception:
Exception in thread "main" java.lang.ClassCastException: [B cannot be ...
3
votes
3answers
833 views
Java: Filling a BufferedImage with transparent pixels
I have an off-screen BufferedImage, constructed with the type BufferedImage.TYPE_INT_ARGB. It can contain anything, and I'm looking for a way to (fairly efficiently) completely overwrite the image ...
3
votes
3answers
202 views
Storing Serializable object to file with some data excluded
I have an object which allows me to store BufferedImage into my object file. In the same object I have BufferedImage variable which I use to cache the image after it's loaded first time from raw data ...
3
votes
3answers
709 views
Java Rotating BufferedImages
I am having trouble getting a rotated BufferedImage to display. I think the rotation is working just fine, but I can't actually draw it to the screen. My code:
Class extends JPanel {
...
3
votes
4answers
4k views
Convert RGB values into integer pixel
So in a BufferedImage, you receive a single integer that has the rgb values represented in it. So far i use the following to get the RGB values from it:
int r = (int)((Math.pow(256,3)+rgbs[k]) / ...
3
votes
1answer
899 views
How to create a BufferedImage from raw data
I'm trying to get a BufferedImage from raw samples, but I get exceptions about trying to read past the available data range which I just don't understand. What I'm trying to do is:
val datasize = ...
3
votes
1answer
633 views
java Buffered Image : Detecting black pixels
I have this simple code to go through a 24bit color windows bmp file
BufferedImage mapa = BMPDecoder.read(new File("maps/map.bmp"));
final int xmin = mapa.getMinX();
final int ymin = mapa.getMinY();
...
3
votes
1answer
178 views
How to recognize a blank/invisible image using java
I was wondering if it would be possible to recognize that a BufferedImage in java is a blank (invisible for a user in a browser) image.
3
votes
2answers
983 views
Scala - how to explicitly choose which overloaded method to use when one arg must be null?
All,
I'm doing some image manipulation in Scala by making use of BufferedImages and Raster objects. I am attempting to get all the pixels in the buffered image with the following code.
val raster = ...
3
votes
3answers
387 views
Best approach to storing image pixels in bottom-up order in Java
I have an array of bytes representing an image in Windows BMP format and I would like my library to present it to the Java application as a BufferedImage, without copying the pixel data.
The main ...
3
votes
1answer
3k views
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(is);
int color = image.getGRB(x, y);
...
3
votes
3answers
3k views
Change the alpha value of a BufferedImage?
How do I change the global alpha value of a BufferedImage in Java? (I.E. make every pixel in the image that has a alpha value of 100 have a alpha value of 80)
3
votes
4answers
3k views
How to calculate java BufferedImage filesize
I have a servlet based application that is serving images from files stored locally. I have added logic that will allow the application to load the image file to a BufferedImage and then resize the ...
3
votes
1answer
428 views
Resizing TYPE_CUSTOM BufferedImages?
When I read a JPEG from disk, Java sometimes gives me a BufferedImage whose getType() returns TYPE_CUSTOM -- that is, it has a custom color model. I'd like to resize this BufferedImage but I'm not ...
2
votes
1answer
134 views
Get R G B colors from DataBuffer byte array
these few lines retrieve an array of all pixels of an image.
ImageInputStream is = ImageIO.createImageInputStream(f);
Iterator iter = ImageIO.getImageReaders(is);
ImageReader imageReader = ...
2
votes
2answers
82 views
Why is my BufferedImage receiving a null value from ImageIO.read()
BufferedImage = ImageIO.read(getClass().getResourceAsStream("/Images/player.gif"));
First of all, yes I did add the image folder to my classpath.
For this I receive the error ...
2
votes
1answer
82 views
How to display an Image to component?
How to display an image to JPanel or to JLabel using the BufferedImage?
I load an Image using FileChooser and I need to display what I've loaded.
I don't extend my class to any container.
2
votes
1answer
63 views
ImageIO write produces a different file size as compared to the original image file
When ImageIO is used to read an image file, then writes the BufferedImage (without any manipulation of the BufferedImage objet) to another file, the file size of the written file is different as ...
2
votes
1answer
165 views
BufferedImage - Gray Scale
Given an image that is in grayscale, how would I get the pixel values of the grayscale at that location?
This outputs temp as -16777216 (black) all the time.
public void testMethod()
{
int ...
2
votes
1answer
207 views
Writing an animated gif from BufferedImages
I have a program that loads a spritesheet, creates BufferedImages of each frame on the sheet, and writes it to an animated gif. Using the class provided by Elliot Kroo on Creating animated GIF with ...
2
votes
4answers
421 views
Convert a Graphics2D to an Image or BufferedImage
I have a little problem here.
I have an applet, where user can "draw" inside it. To do that, I use the java.awt.Graphics2D.
But, how can I do to save the user draw image as a JPEG image, or at least, ...
2
votes
1answer
220 views
BufferedImage & createScreenCapture produces wrong colors
In my Java program I need to analyze a color of a pixel in given coordinates. Because of the fact that I need to do it often, first I capture a part of the screen, and then get a pixel color. I am ...