List of utility methods to do InputStream to Bitmap Convert
Bitmap | toBitmap(InputStream is) to Bitmap if (null == is) return null; return toBitmapDrawable(is).getBitmap(); |
Bitmap | toBitmap(InputStream is) to Bitmap if (null == is) { return null; return toBitmapDrawable(is).getBitmap(); |
BitmapDrawable | toBitmapDrawable(InputStream is) to Bitmap Drawable BitmapDrawable bitmapDrawable = new BitmapDrawable(is); is.close(); return bitmapDrawable; |
BitmapDrawable | toBitmapDrawable(InputStream is) to Bitmap Drawable BitmapDrawable bitmapDrawable = new BitmapDrawable(is); is.close(); return bitmapDrawable; |
BufferedImage | loadCompatibleImage(InputStream stream) load Compatible Image BufferedImage image = ImageIO.read(stream);
return toCompatibleImage(image);
|