我有一个BMP图像,我希望将其转换为Android中的Bitmap对象。谁能解释我怎么做到这一点?
答案 0 :(得分:5)
1)阅读.bmp文件
2)完成:))
实施例
InputStream input = connection.getInputStream();
Bitmap myBitmap = BitmapFactory.decodeStream(input);
以下是支持的位图格式的链接:
http://developer.android.com/guide/appendix/media-formats.html
< =包括JPEG(.jpg),GIF(.gif),PNG(.png)和BMP