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

后端 未结 5 1356
失恋的感觉
失恋的感觉 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条回答
  •  -上瘾入骨i
    2021-01-21 05:03

    If the usual built-in packages aren't available, you could try Jimi, which is a pure Java image processing library. It hasn't been updated in the best part of a decade, but it should do the job. No school like the old school.

提交回复
热议问题