A Java system library class that provides static methods to read and write images to and from files or streams in various formats. Available since v 1.4.
0
votes
1answer
33 views
Extract image metadata from byte[]
I have an image's data in an array of bytes (byte[] imgData). I'd like to get its metadata such as:
Dimensions
Color / Black & White
File type (JPEG, PNG, ...)
...
How can I do this? If ...
0
votes
2answers
38 views
Linux: How to save a image using ImageIO.write()?
I am writing a screen capture program on Linux using Java. How can I use ImageIO.write() like I used it on windows like:
ImageIO.write(screenshot, "png", new File("c:/output.png"));
0
votes
1answer
55 views
Java- export to jar- i/o problems
I work on Eclipse (Juno with JDK7), and the program runs (on Eclipse) fine.
My problematic lines are:
URL imageURL = new URL("http://www.idautomation.com/ocr-a-and-ocr-b-fonts/new_sizes_ocr.png");
...
0
votes
1answer
62 views
ImageIO dirty memory is not automatically cleared by iOS
I am creating an application which is a kind of gallery - it shows different media content as a fullscreen viewer. Allocations instrument shows that Live Bytes parameter doesn't grow higher than 40 Mb ...
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
60 views
iOS: ImageIO resizing on a rectangular image
I'm trying to create thumbnails of images for my app. I'm using CGImageSourceCreateThumbnailAtIndex to do it. One problem I'm seeing is that for the options, kCGImageSourceThumbnailMaxPixelSize is the ...
0
votes
1answer
86 views
NoSuchMethodError: skipInputBytes
I am getting this strange Exception on JPEG upload. PNG works fine.
play.api.Application$$anon$1: Execution exception[[RuntimeException: java.lang.NoSuchMethodError: skipInputBytes]]
at ...
0
votes
0answers
27 views
Does iOS (ImageIO/etc.) support rendering of progressive JPEGs?
I'm aware that ImageIO supports incremental rendering of images, but I'm not sure if it supports rendering of progressive JPEGs, specifically, I'd like to be able to render a low fidelity image ...
0
votes
1answer
58 views
ImageIO.read() returns 403 error
I have the following code:
public BufferedImage urlToImage(String imageUrl) throws MalformedURLException, IOException {
URL url = new URL(imageUrl);
BufferedImage image = ImageIO.read(url);
...
0
votes
1answer
26 views
Java Sockets With Continous Communication
I want to be able to do the following on the client side:
Open socket
Send Data
Wait
Send More Data
And server side:
Open msocket
Recive data
Wait
Keep recivieng (Loop over and over)
Currently ...
0
votes
1answer
49 views
No reader matches PNG-Stream in Java.ImageIO
I'm trying to read the meta-data of a PNG file with java following the solution proposed here.
But the method ImageIO.getImageReaders(inputStream) is returning an empty list of readers.
I assured ...
2
votes
1answer
41 views
Read an image from other host
I'm trying to read an image from another host but I failed. Here is what I tried:
ImageIO.read(new File("http://199.231.95.45:8081/images/bg.png"));
How can I do that? Is it even possible?
3
votes
1answer
114 views
Using ImageIO.write() to create a JPEG creates a 0 byte file
I am trying to write a method that takes an image, and saves a 100 by 100 thumbnail of that image. However, when I save the file, it comes out as an unreadable 0 byte image (with the error "Error ...
1
vote
0answers
18 views
ImageIO always throwing exception
public class BackgroundPanel extends JPanel {
File f;
BackgroundPanel(File file) {
f = file;
}
@Override
public void paintComponent(Graphics g) {
Image image;
...
0
votes
0answers
42 views
From BufferredImage to Byte[] without IO -— failed
I am attempting to take continuous screenshots and stream them over a socket to my android phone. I used ImageIO for this like this:
while(true){
baos = new ...
1
vote
1answer
80 views
Java ImageIO.write to classpath?
I am trying to use the ImageIO class to save an image and then get the resource using an input stream. My problem is that I keep getting a NullPointerException whenever I try to create the input ...
0
votes
1answer
29 views
Read with ImageIO non-applet
Okay, so I have all of my classes inside of a few packages:
Game/src/package1/Class.class
and I want to get into a file in:
Game/res/Terrain.png
How would I do this?
public Screen(Game game){
...
0
votes
0answers
172 views
Error “java.lang.IllegalArgumentException: im == null!” while converting byte array into Image file?
I want to convert byte array into Image file . This is the portion of my code
BufferedImage image = user_space(getImage(image_path(path,name,"jpg")));
...
0
votes
1answer
69 views
ImageIO error HTML not displaying images taken from iPhone in web view
In my app i am taking images and saving in documents directory.
when displaying in tableView, images are displaying fine but while loading in web view with same images with locally created HTML from ...
0
votes
2answers
47 views
Cropping an uploaded image with Java
I am reading a image file in a servlet from an http request. I want to crop it as a square and write it to file. I can achieve that with the following code but i am using a temporary file to write the ...
1
vote
0answers
157 views
javax.imageio.ImageIO: “IIOException: Unsupported image type” error when loading a gif file
I want to load the following gif file using
ImageIO.read(new URL("http://logos.affili.net/120x40/10421.gif"))
and this line throws
javax.imageio.IIOException: Unsupported Image Type
Why? Is ...
1
vote
1answer
88 views
sending an image from java server to android
i'm trying to send an image from a java server to an android device.
i can send the image from java server to java client using the ImageIO but since android doesn't support ImageIO i dont know how ...
2
votes
3answers
96 views
Avoid image decompression blocking the main thread
I have some code to display an animated GIF image using a UIImageView, here: https://github.com/amleszk/GifBlocking
It works well for 99% of cases, although there is an issue with a certain type of ...
0
votes
1answer
78 views
JFileChooser saving image isn't adding the file type
My program allows you to save an image that has been made. I only have to save it as a png.
I currently have:
...
File file = fc.getSelectedFile();
try{ ImageIO.write(result.getImage(),"png",file);}
...
0
votes
1answer
49 views
ImageIO.read preventing paintComponent from executing?
I am trying to a sprite image from a sprite mesh using BufferedImage and ImageIO. There is a separate class which handles the loading and storing of sprite images; this is where the problem seems to ...
0
votes
2answers
95 views
Java Servlets and ImageIO error
i'm trying to write a WebApplication which views some DICOM files. My idea was to convert the DICOM files to JPEG on the fly by calling my servlet.
I use dcm4che 2.0.27 to convert the files.
The ...
0
votes
5answers
591 views
java.lang.IllegalArgumentException: input == null! when using ImageIO.read to load image as bufferedImage
This is a question that has been asked like 100 times on this site, but I have looked at all of them and even though they all were solved, none of the solutions worked for me.
Here's what my code ...
0
votes
2answers
118 views
Exception when trying to save images
When starting my Java application, I get exceptions when trying to save images. In Eclipse, however, everything works fine. The application is built using fatjar and the necessary libraries ...
0
votes
1answer
127 views
How do I write a BufferedImage as a PNG with no compression?
I need to write a BufferedImage as a .png with no compression performed. I've looked around, and come up with the following code.
public void save(String outFilePath) throws IOException {
...
2
votes
1answer
65 views
How to use ColorQuantizerDescriptor?
Following the idea of @PhiLho's answer to How to convert a BufferedImage to 8 bit?, I want to use ColorQuantizerDescriptor to convert a BufferedImage, imageType TYPE_INT_RGB, but ...
0
votes
0answers
250 views
Java - Reading in Image (IIOException: Can't Create an ImageInputStream)
I'm writing a simple game using a data driven design in which I read in the images for the various elements of the game. As such I've written a parser to read-in the files, confirm that they're an ...
0
votes
0answers
141 views
ArrayIndexOutOfBoundsException when using ImageIO.write to save an image
I am trying to build a mapreduce code to read and write an image, but I am getting ArrayIndexOutOfBoundsException when using ImageIO.write to save the image, although, I am not making any changes to ...
3
votes
2answers
143 views
Sending a Matlab Image to an Android tablet
I have developed an Android app that connects with a laptop running Matlab over Bluetooth SPP. I am able to send strings back and forth easily and I am now interested in sending an image from Matlab ...
0
votes
3answers
133 views
Image.IO cant read input file - Java
Hey i am currently trying to read the byte contents of an image into a byte array in java but cant seem to open the image from file. The console is throwing this exception:
Exception in thread ...
0
votes
0answers
124 views
iText makes color image appears black and white
I am using Graphics2D itext feature and draw image with g2.drawImage(x, y, null). If i load this image using ImageIO.read() image looks black and white in generated PDF. But ...
0
votes
1answer
199 views
Using buffered image converting using compression
Attempting to read in a buffered bmp image and then convert with compression to jpeg. Something is wrong with the buffered image line. Thank you, any help is appreciated.
public void ...
1
vote
3answers
130 views
Java: reading compression ratio of an jpeg/gif
I try to get the compression ratio of an JPEG and GIF image in Java.
Searched everywhere but cant find anything. Is it possible to read the compression ratio of the files?
When not how could i compute ...
1
vote
1answer
137 views
swing applet.. jtogglebutton size is 6mb. how can i reduce the size
I am working on an application which takes images in a folder and shows them as thumbnails for further selection and operation individually. below is the code that adds them to Jtogglebuttons.
...
0
votes
1answer
33 views
Is it possible to add multiple Font style at the same time at some string text?
I am trying to draw a string into an image.is it possible to add multiple Font style at the same text(bold and italic).?
my code is:
Graphics g = image.getGraphics();
Font font = new ...
1
vote
4answers
121 views
Writing String into a image in java
I am trying to write a string into a image using ImageIo. But while writing a large string ,full string is not written into that image.
Here's my code:
File url=new File(imgUrl);
BufferedImage ...
0
votes
0answers
60 views
receiving null in bytearrayinputstream in second time
Im trying to send bufferedimage to server to client using bytearraystream.
although server send file correect but problem is in client which receive file for the first time but as its in loop to it ...
0
votes
0answers
461 views
ImageIO.read -> Error reading PNG image data
I get an InputStream input, and I want to read this InputStream.
I create a
BufferedImage image = null;
And I read with ImageIO :
read image = ImageIO.read(input);
This code works for JPEG and ...
0
votes
1answer
108 views
Java - ImageIO throws IllegalArgumentException
Hello Java Developers,
So I have recently encountered this problem. Here's and SSCCE:
public class SampleClass extends JPanel{
private Image img;
private final String IMG_DIRECTORY = ...
1
vote
1answer
535 views
Java ImageWriter BufferedImage to GIF
I hope you guys can help me with this one. I'm not sure if it is a bug in Java or if I'm doing something wrong, but I'll go with the latter.
I want to turn a BufferedImage into a GIF image. I then ...
0
votes
0answers
266 views
Converting PNG to GIF - Alpha channels are corrupted
I have a PNG that I am converting to a GIF using objective-c (using the ImageIO framework), but my Alpha channels are being converted strangely.
For example, I have a red square with a glossy ...
0
votes
0answers
70 views
Convert java.awt.Shape to Android
I'm working on a program that is trying to create an Android prototype that emulates our current collaborative system.
We have a necessity to use a standard symbology between the two systems. Our ...
0
votes
2answers
208 views
ImageIO.read() throws IllegalArgumentException
I'm using ImageIO api to read byte array (using ByteArrayInputStream) to get back a BufferredImage. It works most of the time but fails for certain images. After doing extensive research - I found ...
2
votes
2answers
102 views
What format of large background image provide in jar?
I have Java Swing application with maximized bounds for JFrame. The application is distributed as jar file up to now.
Initially for background image I have used some large arbitrary image file of ...
1
vote
0answers
82 views
setRgb in java for tif buffered image loses its coordinate information
I have a program in java where tif file read in source buffered image and then this buffered image is replicated as destination buffered image.
When I write this buffered image on disk, the image ...
0
votes
1answer
137 views
Memory leak when the same BufferedImage object is loading multiple images
I'm trying to make a tool that takes jpeg images (4 images) from a folder and merge them into one big image.
for (int i = desde; i < hasta + 1; i++) {
for (int j = 0; j < 4; j++) {
...

