BufferedImage in Android

前端 未结 3 1010
既然无缘
既然无缘 2020-11-29 12:04

I\'ve an app that takes a camera picture and saves on sdcard as jpeg. i want to distort the picture with a spherize filter. I can read the jpeg to a bitmap, but the code i h

3条回答
  •  臣服心动
    2020-11-29 12:27

    BufferedImage is part of AWT, which is not implemented in Java. You need to find Android replacements for what you're trying to do.

    Read this:

    http://developer.android.com/guide/topics/graphics/index.html

提交回复
热议问题