Beginner's doubt library javax.imageio

3

I'm trying to do this import in java studio

import javax.imageio.ImageIO;
import javax.imageio.ImageReader;
import javax.imageio.stream.ImageInputStream;

but this error is appearing to me:

  

can not resolve symbol'ImageIO '

How can I resolve this?

    
asked by anonymous 01.08.2015 / 03:23

1 answer

1

The problem is that this class is not supported for Android. If you try to look for this class in the Developer.Android , you will see that it does not appear.

According to this question asked in SOen, you can use the Bitmap .

    
01.08.2015 / 15:29