BufferedImage in Android
No. You can't use BufferedImage
because, like you said, javax.imageio
isn't in the Android SDK. The Bitmap
class, however, does support getting individual pixels using the getPixel()
and getPixels()
methods so you should be able to use those to do any type of image transform you want to do.