Tagged Questions
The imageio tag has no wiki summary.
10
votes
4answers
14k views
Turn an array of pixels into an Image object with Java's ImageIO?
I'm currently turning an array of pixel values (originally created with a java.awt.image.PixelGrabber object) into an Image object using the following code:
public Image getImageFromArray(int[] ...
8
votes
2answers
2k views
JAI and ImageIO for 64 bit Windows
i searched JAI and ImageIO library for 64 bit windows, but i didn't find any version of these.
Last 64 bit win vesion request on Java Bug tracking system 6-7 years ago.
I think, jai's developers will ...
8
votes
3answers
3k views
Problem setting exif data for an image
I'm using the new ImageIO framework in iOS 4.1. I successfully retrieve the exif metadata using the following:
CFDictionaryRef metadataDict = CMGetAttachment(sampleBuffer, ...
8
votes
4answers
13k views
How to get image height and width using java?
Is there any other way beside using imageIO.read to get image height and width?
Because I encounter some issue that will lockup the thread.
at com.sun.medialib.codec.jpeg.Decoder.njpeg_decode(Native ...
7
votes
2answers
5k views
Write dpi metadata to a jpeg image in Java
I am trying to programatically set the dpi metadata of an jpeg image in Java. The source of the image is a scanner, so I get the horizontal/vertical resolution from TWAIN, along with the image raw ...
6
votes
4answers
628 views
100% Java library for JPEG lossless decoding
I'm searching for a library in 100% Java which could decode JPEG images with jpeg-lossless compression.
I know that ImageIO and JAI already could decode this images, but they're needed a native code ...
6
votes
1answer
3k views
Is there a 100% Java alternative to ImageIO for reading JPEG files?
We are using Java2D to resize photos uploaded to our website, but we run into an issue (a seemingly old one, cf.: http://forums.sun.com/thread.jspa?threadID=5425569) - a few particular JPEGs raise a ...
6
votes
4answers
3k views
Why Java ImageIO flattens JPEG colors
When I read certain JPG files, colors are flattened. Here is a simple example that reads a jpg and just writes the same image to another file.
import java.awt.image.BufferedImage;
import ...
5
votes
1answer
1k views
ImageIO: ERROR - MetadataLib.dylib not found
I'm getting an odd error in my console when running my app sometimes:
ImageIO: ERROR - MetadataLib.dylib not found
I'm not sure what this is related to, but I am running AdMobs ads.
5
votes
3answers
4k views
Loading animated gif from JAR file into ImageIcon
I'm trying to create a ImageIcon from a animated gif stored in a jar file.
ImageIcon imageIcon = new ImageIcon(ImageIO.read(MyClass.class.getClassLoader().getResourceAsStream("animated.gif")));
The ...
4
votes
3answers
97 views
CBM image file format: what is it? how to read it?
I have a collection of images in the CBM file format.
What is this format? How to read it? How to convert it to, say, a BMP bitmap?
Searching the net, I found that it could mean one of those three ...
4
votes
1answer
811 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
2answers
483 views
Why does this GIF end up as a black square when resizing with Java ImageIO
Java ImageIO correctly displays this black & white image http://www.jthink.net/jaikoz/scratch/black.gif but when I try and resize it using this code
public static BufferedImage resize2D(Image ...
4
votes
1answer
2k views
ImageIO not able to write a JPEG file
I have a BufferedImage I'm trying to write to a jpeg file, but my Java program throws an exception. I'm able to successfully save the same buffer to a gif and png. I've tried looking around on Google ...
4
votes
3answers
6k views
Problem reading JPEG image using ImageIO.read(File file)
I'm having problems reading this one JPEG file using ImageIO.read(File file) - it throws an exception with the message "Unsupported Image Type".
I have tried other JPEG images, and they seem to work ...
4
votes
3answers
2k views
Looking for a faster alternative to ImageIO
I'm attempting to encode a large quantity of BufferedImages to JPEG using the ImageWriter class in javax.imageio. Unfortunately, the encoding operation is quite slow (about 80 to 250 ms per image, not ...
4
votes
3answers
3k views
Java/ImageIO Getting Image Dimension without reading the entire file?
is there a way to get the dimension of an image without reading the entire file ?
URL url=new URL(<BIG_IMAGE_URL>);
BufferedImage img=ImageIO.read(url);
System.out.println(img.getWidth()+" ...
4
votes
4answers
12k views
Convert Byte Array to image in Java - without knowing the type
Sounds simple right? Use
ImageIO.read(new ByteArrayInputStream(bytes));
Here's the wrinkle. For some reason it is detecting a jpeg as a bmp, and that is the first ImageReader returned when I call
...
4
votes
2answers
8k views
How to get an InputStream from a BufferedImage?
How can I get an InputStream from a BufferedImage object? I tried this but ImageIO.createImageInputStream() always returns NULL
BufferedImage bigImage = ...
4
votes
2answers
6k views
ImageIO.write not saving out as gif, but works for jpgs and pngs?
I suspect the solution here is probably really simple, but I'm stumped...
// Create the buffered image.
BufferedImage bufferedImage = new BufferedImage(w,h,BufferedImage.TYPE_INT_RGB);
... //fill ...
3
votes
2answers
101 views
Reading JPEGs: ImageIO.read() messes up color space
I'm trying to read, rescale and save images within a Servlet. That's the relevant code:
BufferedImage image = ImageIO.read(file);
BufferedImage after = new BufferedImage(width, height, ...
3
votes
2answers
75 views
Specify image name in “on the fly” java image generation
I have some java code that generates an image from scratch.
I also have a servlet that serves the image according to some parameters (fyi, it is QR Code generation).
I would like to specify a name ...
3
votes
1answer
338 views
What is the fastest Java Image Reader
I have a program where I have to serialize a BufferedImage to disk and then read it back in. Currently I'm using a raw image format
ImageIO.getImageReadersByFormatName("raw");
After a lot of ...
3
votes
3answers
480 views
Is ImageIO.write buffered?
Should I write
BufferedOutputStream os = new BufferedOutputStream(new FileOutputStream(file));
ImageIO.write(im, "JPEG", os);
instead of
ImageIO.write(im, "JPEG", file);
I.e. are ImageIO file ...
3
votes
3answers
5k views
Can't read and write a TIFF image file using Java ImageIO standard library
I don't know what to do with TIFF images, but I can't read or write any of them using straight Java standard ImageIO library. Any thoughts?
Thanks.
3
votes
2answers
385 views
Does ImageIO read imply anti-aliased scaling?
I've replaced the Java internal ImageFetcher with an own implementation using ImageIO. Some image renderers of our software, which use these images, now draw anti-aliased scaled images instead of non ...
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
2answers
2k views
Creating animated GIF with ImageIO?
Has anybody managed to convince ImageIO to write an animated GIF, and in particular setting the correct metadata? My first attempt is roughly as follows (where b1 and b2 are BufferedImages):
...
2
votes
5answers
104 views
Faster alternative to ColorConvertOp
I have a method converting BufferedImages who's type is TYPE_CUSTOM to TYPE_INT_RGB. I am using the following code, however I would really like to find a faster way of doing this.
BufferedImage ...
2
votes
1answer
70 views
Java ImageIO, unable to change metadata tree
I'm trying to use ImageIO to change the JPEG Comment field (COM) of a file. I read the metadata, do some changes to the DOM (change attribute of the comment field), then save / print the metadata. But ...
2
votes
1answer
88 views
Java - my paint program needs a menu bar with a submenu with an image - how to do?
SO I have this program that is kind of like paint, it lets you draw shapes and lines, but my assignment is to add a menu bar with a sub menu File-> About, when Click on the about section. It should ...
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
4answers
107 views
I have an OutOfMemory error when reading images
All right, so I am reading images in a subdirectory in the .jar file called 'images', and of course I have to access them via a stream because it's in a .jar. This is what reads the images:
...
2
votes
0answers
190 views
Write output tiff by Tile using ImageIO in Java
What i have is a large number of frames that need to be placed together in a larger image (ie mosaic). The required positions of the images are known.
There are a very large number of images so ...
2
votes
2answers
738 views
Pure Java alternative to JAI ImageIO for detecting CMYK images
first I'd like to explain the situation/requirements that lead to the question:
In our web application we can't support CMYK images (JPEG) since IE 8 and below can't display them.
Thus we need to ...
2
votes
3answers
270 views
Download an image from a URL
I am trying to use HTTP:Get in Ruby to download an image of a google chart from a URL I created.
This was my first attempt:
failures_url = [title, type, data, size, colors, ...
2
votes
0answers
124 views
Reading specific image MetaData efficiently using javax.imageio
I'm trying to read a PNG image using javax.imageio and then extract the bit-depth and color-type MetaData.
Right now I'm using:
Iterator<ImageReader> itr = ImageIO.getImageReaders(stream);
...
2
votes
2answers
77 views
Help on adding plug-in to Java ImageWriter
I am trying to save a BufferedImage as a PNM file. I already installed the JAI (Java Advanced Imaging), and have the PNMWriter plug-in imported. However, I don't know how to add it to my ImageWriter ...
2
votes
1answer
390 views
ImageIO.read throws exception in multithreaded execution
I am trying to use ImageIO.read to read image from inputstream in a multithreaded environment. The following is the code,
entity = httpResponse.getEntity(); //httpResponse is apache hc response ...
2
votes
2answers
328 views
How to resize an image without loading into memory?
I'd like to check the dimensions of an image, and then size it down if the width exceeds a given threshold. When I load a 6MB JPEG image with ImageIO.read(), the BufferedImage allocates about 45MB of ...
2
votes
3answers
321 views
stitch images together in java
I'm trying to stitch some images together using java. I have a bunch of images I'd like to stitch together and they are all the same dimensions so it's really just a question of lining them up next ...
2
votes
2answers
299 views
PNG Encoder - Add own filter implementation
I am currently working on my own implementation of a PNG Filter. I am using a Neural Network to try to create a better prediction than the current existing PNG Filters:
0 - None
1 - Sub
2 - Up
3 - ...
2
votes
2answers
734 views
Convert a 2D array of int ranging from 0-256 into a grayscale png?
How can I convert a 2D array of ints into a grayscale png. right now I have this:
BufferedImage theImage = new BufferedImage(100, 100, BufferedImage.TYPE_INT_RGB);
for(int y = 0; y<100; ...
2
votes
1answer
303 views
Compress JPG make the image turn green
When I try to compress the a jpg image, most of the time it work perfectly, however some jpg image turn green after the compression. Here is my code
public void compressImage(String filename, String ...
2
votes
2answers
219 views
Create bitmap or image row by row? or create bitmap/image from 2D array in Java
This amounts to a pretty basic programming question, but essentially I am creating an array of 1s and 0s that I want to represent a single row of black (1) or white (0) pixels. Here is the code I ...
2
votes
1answer
472 views
Applet not creating image file via ImageIO.write
I have been struggling with an issue involving a Processing sketch which I want to use to create an image file (to a server-side directory). In the Java, I use a PImage of the canvas, converted to a ...
2
votes
1answer
870 views
Why does loading this jpg using JavaIO give CMMException?
ImageIO.read(imagePath) with this file gives a CMMException, why cant Java cope with this seemingly valid file http://www.jthink.net/jaikoz/scratch/front.jpg
java.awt.color.CMMException: Invalid ...
2
votes
3answers
922 views
Fast loading of PNG image into an array in java
I want to load (and decode) PNG images and convert them into a one-dimensional array in Java. I can obviously do this with ImageIO.read() and then copy the pixels into the array, but that consumes ...
2
votes
2answers
1k views
Unable to acquire image through ImageIO.read(url) because of connection timed out
The following code always seems to fail:
URL url = new URL("http://userserve-ak.last.fm/serve/126/8636005.jpg");
Image img = ImageIO.read(url);
System.out.println(img);
I've checked the ...
2
votes
3answers
289 views
Java 1.5.0_16 corrupted colours when saving jpg image
i have a loaded image from disk (stored as a BufferedImage), which i display correctly on a JPanel but when i try to re-save this image using the command below, the image is saved in a reddish hue.
...