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

I am uploading some image files using servelt. I want to resize the images. I converts the source to BufferedImage using below lines.

InputStream imageStream = item.getInputStream();

BufferedImage imageBuffer = ImageIO.read(imageStream);

Then i resize the image and write in a location. But, all of the output files size is 0.

I am using the following code to resize the image.

AffineTransform at = new AffineTransform();
if(sx != 0)
    at.scale( sx , sx );
AffineTransformOp ato = new AffineTransformOp(at, AffineTransformOp.TYPE_BILINEAR);
uploadImage = ato.filter(uploadImage, null); //uploadImage == BufferedImage

Is there any good way to convert inputstream to bufferedImage without damaging the image? I am sure that the image is getting uploaded. But, after the conversion to BufferedImage, the file damaged.

I am uploading by submitting a form to doPost() method. The below line gives me the InputStream from a list item.

InputStream imageStream = item.getInputStream();

And, i am writing it by

ImageIO.write(image, "jpg", new File(path + ".jpg"));

Update

java.awt.image.ImagingOpException: Unable to transform src image
at java.awt.image.AffineTransformOp.filter(Unknown Source)
at com.pricar.servlet.imageupload.ImageUploadServlet.reSize(ImageUploadServlet.java:100)
at com.pricar.servlet.imageupload.ImageUploadServlet.doPost(ImageUploadServlet.java:74)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:641)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:390)
at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:418)
at org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:943)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:756)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:410)
at org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)

Any suggesstions or link woulb be appreciative!!!

Thanks!

share|improve this question
Please add your writing (output) code – Mark Peters Nov 15 '10 at 21:34
How are you uploading? And writing? Could the problem be at these points? Could you show more code? – Traroth Nov 15 '10 at 21:36
@Mark Peters: Now updated my question – Tamil Vendhan Nov 15 '10 at 21:41
@Traroth: Now updated the question. Check it out! – Tamil Vendhan Nov 15 '10 at 21:55

2 Answers

up vote 5 down vote accepted

The reason your code isn't working is in

uploadImage = ato.filter(uploadImage, null); //uploadImage == BufferedImage

Your destination image is null.

You have to create a new BufferedImage to put the scaled version into, like this:

BufferedImage dstImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
ato.filter(uploadImage, dstImage);

Then, save the dstImage (using ImageIO.write).

Edit:

An easier way to scale down the image would be to just draw it into the dstImage at the right size:

int dstWidth = 100;
int dstHeight = 100;
InputStream imageStream = item.getInputStream();
BufferedImage srcImage = ImageIO.read(imageStream);
if (srcImage == null) { System.err.println("NO SOURCE IMAGE!"); }
BufferedImage dstImage = new BufferedImage(dstWidth, dstHeight,
    BufferedImage.TYPE_INT_RGB);
dstImage.getGraphics().drawImage(
    srcImage, 0, 0, dstWidth, dstHeight, null);
ImageIO.write(dstImage, "jpg", new File(path + ".jpg"));
share|improve this answer
See edit for nicer way of scaling image. – Zarkonnen Nov 15 '10 at 21:58
@Zarkonnen: I used your getGraphics().drawImage(). But again the previous problem. Image file with 0 bytes. No errors in the console. No stack strace. I think the conversion only making the problem. Do we have any other way to convert InputStream to BufferedImage or Is there any way to get BUfferedImage instead of InputStream from the list item. – Tamil Vendhan Nov 15 '10 at 22:14
It's quite possible there's some other issue as well. Are you really seeing an output size of 0 from using ImageIO.write on a freshly created BufferedImage with nonzero width/height? As in, what happens if you just go ImageIO.write(new BufferedImage(100, 100, BufferedImage.TYPE_INT_RGB), "jpg", new File("foo.jpg")); ? – Zarkonnen Nov 15 '10 at 22:17
OK, try the code I've just edited in. That should give you a 100x100 scaled image, or an error message if the loading failed. It's also possible that ImageIO can't recognise the image, or that it did indeed get somehow corrupted. – Zarkonnen Nov 15 '10 at 22:42
@Zarkonnen: May i know what you changed your in code than previous one. I cannot able to see any changes in your code. I am getting correct Output image. Very very Thanks man. Thanks for your support!! :) – Tamil Vendhan Nov 15 '10 at 22:56
show 2 more comments

This may just be a typo in the question, but the filter operation on AffineTransformOp is being used incorrectly.

If uploadImage is the source, it shouldn't also be the destination for filtering. In fact, if you try to specify uploadImage as both parameters filter should throw an exception.

Create a BufferedImage instance to act as your destination and pass that to the filter method.

share|improve this answer
Can you get any additional information from the exception's stack trace? – Jeff Nov 15 '10 at 21:59
See my update. The trace is updated in question. – Tamil Vendhan Nov 15 '10 at 22:02

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.