I want to load BufferedImage in my application. For that I am using ImageIO but I am getting java.lang.NoClassDefFoundError:
BufferedImage
ImageIO
java.lang.NoClassDefFoundError
ImageIO is not supported in Android SDK
Could you achieve the same thing with Bitmap and BitmapFactory?? like so...
Bitmap tgtImg = BitmapFactory.decodeFile("ImageD2.jpg");
if tgtImg is not null after this then it was successful.
tgtImg
null