Tagged Questions

0
votes
1answer
131 views

How to read pixel color in a java BufferedImage with transparency

Hi, I am reading pixel color in a BufferedImage as follows: ..... InputStream is = new BufferedInputStream(conn.getInputStream()); BufferedImage image = ImageIO.read(is); int co …
0
votes
1answer
76 views

Render to BufferedImage in Java3D

Is there a simple way of rendering to a BufferedImage in Java3D? I know you can extend Canvas3D, but it seems cumbersome if I just want to render directly.
0
votes
1answer
119 views

Why does my off screen rendering Canvas3D not work?

I've been trying to make off screen rendering to work, using Java3D 1.5.2. In my source code I've been trying to attach an extended Canvas3D that will do off-screen rendering to Si …
0
votes
2answers
42 views

IOException while changing from File to BufferedImage

Error: Unhandled exception type IOException. File imgLoc = new File("player.png"); BufferedImage img = ImageIO.read(imgLoc); How do I get a bufferedImage from a file location?
0
votes
4answers
64 views

Obtaining a screen shot of an Applet?

Given an Applet object, is it possible to programatically obtain a "screen shot" of the applet window (represented as say a BufferedImage)? JApplet applet = this; // ... code he …
0
votes
1answer
70 views

Java TGA loader

Hello, I am looking for a small and free TGA image loading class or library for java. Ideally the result is a BufferedImage. Yes, I have already googled, but most results are outd …
0
votes
2answers
106 views

Set bufferedimage to be a color in Java

I need to create a rectangular BufferedImage with specified color as a background, draw some pattern on the background and save it to file. My problem comes from how to create the …
0
votes
4answers
527 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)
0
votes
2answers
429 views

Creating very large image files with BufferedImage, strange issues depending on compilation and computer

I'm attempting to create a very large image in Java like so: BufferedImage bi = new BufferedImage(58240, 1664, BufferedImage.TYPE_INT_RGB); obviously the image is very large. N …
1
vote
0answers
188 views

Java Convert ColorSpace of BufferedImage to CS_GRAY without using ConvertColorOp

I know its possible to convert an image to CS_GRAY using public static BufferedImage getGrayBufferedImage(BufferedImage image) { BufferedImageOp op = new ColorConvertOp(ColorSpa …
0
votes
1answer
223 views

Trying to read raw image data into Java through JNI.

I'm using JNI to obtain raw image data in the following format: The image data is returned in the format of a DATA32 (32 bits) per pixel in a linear array ordered from the top le …
2
votes
3answers
1k views

Load a PNG image into Java as BufferedImage through JNI C code

Hi, I have the following problem. I have C code that acquires a PNG image as basically raw data and keeps it in memory. I would like this raw data to be translated to a BufferedIm …
2
votes
3answers
585 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 a …
1
vote
1answer
645 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 …
1
vote
1answer
61 views

MemoryCacheImageOutputStream To BufferedImage

I have some image constrain code that allows you to output to a MemoryCacheImageOutputStream, but I need to get this back into a BufferedImage, any suggestions?

1 2 next
15 30 50 per page