Using java image api application with eclipse + dev server?

I am using api image for javas. I uploaded the image using my dev server + eclipse, but trying to use any of the api images does not work. This is due to the exception that is selected:

July 6, 2010 5:28:02 am com.google.appengine.api.images.dev.LocalImagesService init WARNING: no image reader was found for the ico format. The ImageIO plugin must be installed to use this format with DevAppServer.

July 6, 2010 5:28:02 am com.google.appengine.api.images.dev.LocalImagesService init WARNING. No image for "tif" format. The ImageIO plugin must be installed to use this format with DevAppServer.

Is there a plugin that we can use locally in the dev server, or is it our only option to run it in real time in the application to see if it works?

thank

+3
source share
1 answer

You are trying to work with "ico" and "tif" images. None of them are supported in App Engine - only JPG, PNG and GIF.

0
source

Source: https://habr.com/ru/post/1753435/


All Articles