java.awt.* is not supported by GAE? how to resolve this?

后端 未结 5 1362
失恋的感觉
失恋的感觉 2021-01-21 04:16

BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);

in app engine , i found it doesn\'t work, it said that java.awt.image.bufferedImage i

5条回答
  •  北荒
    北荒 (楼主)
    2021-01-21 04:52

    The Google App Engine has a great built-in Images API for image processing tasks. For filesystem emulation on the Google App Engine, have a look at GAE VFS

    In short, the way you are trying to accomplish your goal is inconsistent with the design of the App Engine.

提交回复
热议问题