Heim > Fragen und Antworten > Hauptteil
ringa_lee2017-04-18 10:49:00
你不能在Android
中使用BufferedImage
,因为它不存在于Android SDK
中.你可以使用Android中的BitmapFactory
来代替:
BitmapFactory.decode...();
参考资料:How to load BufferedImage in android?
BufferedImage in Android