0

I need to use Buffered Image into android.So I used java.awt.image.BufferedImage class jar.but it Showsjava.lang.noClassDefFoundError.anybody can i use BufferedImage into android?if yes,can tell what jar i should use?

1 Answers1

1

java.awt library is not supported by android,

if you need to do image manipulations you can use BitmapFactory and Bitmap classes, they are native android code

but you have not stated what exactly you need to do

Lena Bru
  • 13,521
  • 11
  • 61
  • 126