Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the image api for google app engine java. I've uploaded an image using my dev server + eclipse, but trying to use any of the image api does not work. This is explained by the exception which is thrown:

Jul 6, 2010 5:28:02 PM com.google.appengine.api.images.dev.LocalImagesService init WARNING: No image reader found for format "ico". An ImageIO plugin must be installed to use this format with the DevAppServer.

Jul 6, 2010 5:28:02 PM com.google.appengine.api.images.dev.LocalImagesService init WARNING: No image reader found for format "tif". An ImageIO plugin must be installed to use this format with the DevAppServer.

is there a plugin we can use locally in the dev server, or is our only option to run it live on app engine to see if it works?

Thanks

share|improve this question

1 Answer

You're trying to work with 'ico' and 'tif' images. Neither of these are supported on App Engine - only JPG, PNG and GIF.

share|improve this answer
Can you provide a prooflink, please? – Antonio Nov 15 '11 at 14:10
@Antonio A what link? – Nick Johnson Nov 15 '11 at 22:24

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.