The Java class BufferedImage is used to read and manipulate images and assist in double-buffering in desktop GUI applications.
0
votes
2answers
29 views
Painting an Image object on a BufferedImage for later use
I need some help with painting an Image object upon/inside/on a BufferedImage and then painting that BufferedImage on a JPanel.
I've prepared a small program to illustrate my problem. Just a frame ...
-4
votes
0answers
24 views
Image Preview button in java swing [closed]
How to Preview images generated Right align text on image using java.
I want to preview the generated image and then save on to local system.
0
votes
1answer
18 views
How to change font style of text on image in java?
I am creating image dynamically and writing on image, there are limited set of font style.I want to change it to some other style in "Kunstler Script".
here is my code:
BufferedImage image = new ...
1
vote
1answer
49 views
Isolating Red/Green/Blue Channel in Java BufferedImage
How to isolate red/green/blue channel in BufferedImage: I have following code that does NOT work:`
public static BufferedImage isolateChannel(BufferedImage image,
EIsolateChannel channel)
{
...
0
votes
1answer
25 views
Get transparency of a bufferedimage
I want to change all the blue color of a image. I use this code to chage it.
int i, j, red, green, blue;
for(i = 0; i < 64; i++){
for(j = 0; j < 64; j++){
...
0
votes
2answers
29 views
Changing color of a moving image without lowering the fps
I just added an option to my game that makes it so that all the enemies will have a random color for their clothes instead of the regular blue. I use this code to draw rectangles over the shirt of the ...
0
votes
0answers
10 views
No Edges in output file using CannyEdgeDetection.java
Using the defaults, and the same source image from the first example on the website: http://www.tomgibara.com/computer-vision/canny-edge-detector I am getting a pure black image as my out.jpg. The ...
-1
votes
1answer
52 views
Is there a way to create one Gif image from multiple images in Java? [closed]
I am trying to set up a simple Java program that creates one single gif images from multiple other images (jpg). Can anyone give me a hook on how to achieve this in Java. I already searched Google but ...
0
votes
3answers
36 views
Avoid OutOfMemory when creating an image
I want to create a BufferedImage in a Java-Application. The users are allowed to change the dimensions of the image and I would like to allow images "as big as possible".
How can I check, whether ...
1
vote
5answers
53 views
java.lang.OutOfMemoryError: Java heap space when stitching 13k .png images together
I have 13255 images, each 240 x 240 pixels wide, the biggest 15,412 bytes in size and the smallest 839 bytes.
I am trying to loop through the folder adding each of them to a File[]. Once I have an ...
1
vote
2answers
73 views
Java BufferedImage returns black image from Canvas
I've been trying to make a simple program that has a paint brush like tool, when opened it created a JFrame and in it i place a Canvas where the user gets to draw.
Now, I'm trying to save the drawing ...
-1
votes
1answer
29 views
Images replacement
How would i go about replacing the image called hangmanImg every time it go's through the loop?
public void postImg() {
String imgName = Integer.toString(numError);
String hangmanImg = ...
0
votes
1answer
16 views
getting the desired aspect ratio for BufferedImage
I am using the following codes to resize an image, I can easily get same aspect ratio as the original image by using the getScaledInstance function by setting one parameter to negative, so that it ...
1
vote
2answers
40 views
resizing an image without compromising the aspect ratio
I use the following codes to resize an image but the problem is that they don't maintain the original aspect ratio, is there any way by which I can resize the image without compromising the aspect ...
0
votes
1answer
52 views
Render image dynamically
I'm trying to render an image from a dynamic html layout. How can I set the width and height of image dynamically based on the height and width of the table inside the html.
I mean how can I find the ...
0
votes
0answers
45 views
Why does ToolkitImage getBufferedImage() return a null?
I want to convert an Image to a BufferedImage. I know the following:
Image tmp;
... //read, scale
BufferedImage buffered = new BufferedImage(SMALL_SIZE, SMALL_SIZE,
...
0
votes
1answer
36 views
How to check if a BufferedImage is complete in java?
I'm trying to load an image from a server, with the next code:
BufferedImage img;
do{
try {
URL url = new URL(myUrl);
img = ImageIO.read(url);
}catch (IOException e){}
...
0
votes
0answers
24 views
Writing a map of BufferedImages to file
I am trying to write a Map of buffered images with a key of a String of names. I know that you can write multiple files with ImageIO. But my goal is to make one file (that is not layered) of images, ...
0
votes
1answer
43 views
Java moving a BufferedImage on JFrame
I'm new to Java, currently studying GUI. I'm creating a simple Maze game. Currently i have my maze 'layout' using a String array converted into a 2D array and placing a image for walls and space by ...
0
votes
0answers
15 views
Create ImageBuffer from Byte Array, rotate and store in Byte Array again
We use a database where we store images in bytes. I would like to offer our user base the opportunity to rotate the image in 90 degree intervals. Consider my snippet below. It processes without ...
1
vote
1answer
39 views
Java Image Connective Component
I have this program to detect objects in a binarized BufferedImage, which the image is a multiple choice answer sheet.
I'm trying to use 4-Connectivity as in to detect each object (answer on the ...
0
votes
0answers
39 views
Decrease image size using BufferedImage
I want to crop an image for that I first convert tiff to jpg using bufferredImage below is the snippet
BufferedImage outImage=null;
outImage = new BufferedImage(image.getWidth(null), ...
1
vote
2answers
54 views
saving a buffered image that has been drawn on with graphics2d, java
I am attempting to save a bufferedImage that I have drawn on as a new file. I open the file, use graphics2d to draw on it (then display the image in a JFrame to make sure its working, which it does) ...
-1
votes
0answers
29 views
How to get a 2D map from picture (perspective transformation)
I have a camera looking a room from a height "h" and with an angle (angle between camera orientation and the ground) "angle".
According to h and angle I have to tranform a camera view into a "2D ...
0
votes
0answers
33 views
IntBuffer to BufferedImage
I have a class that looks like:
class Game {
private IntBuffer GameBuffer = null;
public Game(int Width, int Height) {
GameBuffer = ByteBuffer.allocateDirect(Width * Height * ...
0
votes
0answers
39 views
Why won't my image load?
Edit for Answer: Ok, the problem was that my controller was null. Everything above works fine and loads properly. I was getting the nullpointerexception because I initialized my controller after I ...
0
votes
1answer
33 views
Converting JOGL texture into BufferedImage
I am very very new to JOGL. I am trying to create a BufferedImage object(which is used in other part of my code) out of a textrure (not a Texture object but a texture with a handle, storage). In the ...
-2
votes
1answer
27 views
Blank picture layers not resetting properly Java
Currently, I'm trying to make a panel for management of clips in the game I'm writing. When the player clicks the mouse, it will highlight the clips which are shown at the right of the screen, and if ...
1
vote
1answer
52 views
How to locate text on a buffered Image
I need to analyse a Buffered Image and locate the X and Y coordinates of a certain word or phrase.
How will I accomplish this, where should a start. I have taken a look at some OCR libraries, but the ...
1
vote
3answers
70 views
Java2D drawImage paint an awful black background
I'm using Java2D in order to generate a binary image, when paiting png files I'm getting an awful black background on every picture which contains transparent background (i.e. the transparent ...
0
votes
0answers
25 views
Errors displaying buffered image
I have recently been following a tutorial on how to make a 2D game in java. I know all the concepts and I am using the video as a guide line so that I can get everything setup and then start pumping ...
2
votes
2answers
66 views
why is BufferedImage initialized faster than Image
I'm running some tests for my project written in Java, about images. I got an interesting result and cannot figure out why. Here is the initialization lines of BufferedImage and Image.
File[] files = ...
0
votes
1answer
137 views
Java Draw Image JPanel: Working but weird
I know that everywhere there is a tutoring in how to draw an image. Usually people suggest showing it adding an object that loads that image. But in my case, I don't wanna instantiate a new object ...
0
votes
1answer
34 views
BufferedImage comparing image with itself throws ArrayOutOfBoundsException
I compare BufferedImage objects in Java. I got the image from a set and compare it with all of the images in the same set. However, it gives causes this strange error comparing the image with itself ...
0
votes
1answer
34 views
Drawing an Image and updating it if Window is resized
I am drawing an Image in Java and I want to update the Image to the size of the window if it got resized. But since I am a beginner I dont know at all what I should do.
public class ImageCanvas ...
0
votes
1answer
42 views
Trouble loading images in Java
Hi I am taking a class in Java and am pretty new to programing.
I am trying to write a program asks the user to load different images and returns their RGB values in a multi dimensional array. I ...
0
votes
2answers
48 views
BufferedImage Color Channel Mask
I have found this code on JavaDoc, but I can't seem to understand it.
output.setRGB(x, y, (image.getRGB(x, y) & 0xff00ff00)
| ((image.getRGB(x, y) & 0xff0000) >> 16)
...
0
votes
1answer
65 views
How to display evolving BufferedImage on a JPanel
I need to display evolving BufferedImages on a JPanel. The code is structured in the following format and I have compiled a SSCCE as below.
The following classes are in SSCCE1 project in Eclipse
...
0
votes
1answer
35 views
Java rescaling an image creating half white half grey image
I am having a problem with the Grapics2D API, I am trying to re-size an image but instead of getting the smaller image its showing a half white and half grey area. what am I doing wrong? I tried with ...
0
votes
1answer
65 views
Sending BufferedImages Over Sockets
I want to send a buffered image across the network as part of my custom class.
I currently just writeObject and readObject to get my class.
To send the image im currently doing:
((DataBufferByte) ...
2
votes
1answer
45 views
Blank image only for the first time i press a resize button
Ok, i compile the code and run the program the image appears as it should in the center of the screen. I put the dimensions in the JTextFields and press the resize button. Everything works fine. Now ...
2
votes
1answer
35 views
Java RGBA bufferedimage to GIF bufferedimage
Need function that converts Java RGB bufferedimage to GIF bufferedimage but with colormap that is bigger than 256 colors.
Does anybody know if there are exist such library or a self-written function? ...
0
votes
2answers
60 views
Scaling an image quickly, and making sure it actually scales
I am trying to scale a screenshot taken by:
robot.createScreenCapture(SCREEN_RECT);
Im trying to get it down to an image that is 600X400 and fits into a JFrame that is 600X400
My program is using a ...
0
votes
0answers
70 views
buffered image quality suffers in rbga to gif converter
I have the following function:
public static BufferedImage convertRGBAToGIF(BufferedImage src, int transColor) {
BufferedImage dst = new BufferedImage(src.getWidth(), src.getHeight(), ...
0
votes
0answers
237 views
Convert BufferedImage to double [ ] [ ]
I try to convert an BufferedImage to an double [][].
I have this code, but int the parameters i have a double [][], but in this moment i don't know how to convert my image to an double[][].
This is ...
3
votes
2answers
90 views
Image converter java
i'm working with image processing, and i have a question.
I want read an image from project, and convert the image to gray.
I'm currently trying to do conversion with the function rgb2gray, but still ...
0
votes
1answer
55 views
How to crate BufferedImage from bitmap data
After going through many similar looking questions I had no way but put my own question here.
I need to display an image on swing application. The source of image is bitmap data which is retrieved ...
0
votes
1answer
66 views
Java buffered greyscale image byte and int
Please, please can someone explain below to me. Its driving me nuts. I am playing with creating 8-bit grayscale images from arrays in java.
The code below should produce black > white horiz ...
0
votes
2answers
61 views
Dynamically set the size of buffered image
I'm using this to set the size of my buffered image.
Dimension imgDim = new Dimension(700, 380);
BufferedImage gridImage = new BufferedImage(imgDim.width, imgDim.height,
...
0
votes
2answers
62 views
Difficulty with drawing in BufferedImage
I wrote a simple 2D game - Sokoban (http://www.game-sokoban.com/). I have a two-dimensional field on the screen. Separate JPanel Board is responsible for it.
import java.awt.*;
import ...





