在android中将图像转换为位图
我想从手机的SD卡中选择一张图片。我正在使用下面的代码来选择并在我的 Activity 中显示
Uri selectedImageUri = data.getData();
selectedImagePath = getPath(selectedImageUri);
Uri uri = Uri.parse(selectedImagePath);
uploadimage.setImageURI(uri);
它工作正常,但我想将此图像转换为 Bitmap,我有图像路径和 URI。
在这种情况下如何将图像转换为位图?请帮助我,提前致谢。
i want to choose a picture from SD card of the mobile. i am using below code to choose and to display in my activity
Uri selectedImageUri = data.getData();
selectedImagePath = getPath(selectedImageUri);
Uri uri = Uri.parse(selectedImagePath);
uploadimage.setImageURI(uri);
It is working fine, but I want to convert this image into Bitmap
, I have image path and URI.
How to convert image to Bitmap in this case? Please help me, thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用此代码
use this code