Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I actually get the input source from PostgreSQL. The table column type is bytea. I want to convert the byte back to original image.

BuffredImage bImageFromConvert = ImageIo.read(new ByteArrayInputStream(rsvalue.getBytes(10)));

ImageIO.write(bImageFromConvert, "jpg", new File("D:\\"+ rsvalue.getString(2) +".jpg"));

The error as below :

Exception in thread "main" java.lang.IllegalArgumentException: im == null!
    at javax.imageio.ImageIO.write(ImageIO.java:1457)
    at javax.imageio.ImageIO.write(ImageIO.java:1521)
    at my.lincdoc.controller.ProposalController.RetrieveProposalForm(ProposalController.java:66)
    at my.lincdoc.common.App.main(App.java:16)

Anyone can help me ?

share|improve this question

1 Answer

up vote 2 down vote accepted

The docs for ImageIO.read state:

If no registered ImageReader claims to be able to read the resulting stream, null is returned.

And if bImageFromConvert is null, you'll get the exception you've shown. So that's almost certainly what's happening. You should look at the data returned from rsvalue.getBytes(10) - see whether it's incomplete, corrupt or something similar. A starting point would be to write it to a file and see whether you can open it using a picture viewer.

share|improve this answer
Hi Jon, just wondering how to register ImageReader ? I'm new to java. – Jason Nov 13 '11 at 14:38
@Jason: I don't know offhand, but I'd check that the data is correct first. After that, find an ImageIO tutorial :) – Jon Skeet Nov 13 '11 at 14:42
The data seem correct cause the first byte data is JFIF which is JPG format ... – Jason Nov 13 '11 at 14:48
@Jason: Don't just rely on the first byte being fetched correctly. Dump the whole thing to a file, and check you can load it. Otherwise you could easily be chasing your tail for ages. – Jon Skeet Nov 13 '11 at 14:49
I use paint to open the file, but hit error "This is not a valid bitmap file, or its format not currently supported" – Jason Nov 13 '11 at 14:57
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.