在android中将图像转换为位图

发布于 2024-11-27 23:39:54 字数 317 浏览 1 评论 0原文

我想从手机的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

若水微香 2024-12-04 23:39:54

使用此代码

Bitmap bmp=BitmapFactory.decodeStream(getContentResolver().openInputStream(uri));

use this code

Bitmap bmp=BitmapFactory.decodeStream(getContentResolver().openInputStream(uri));
握住你手 2024-12-04 23:39:54
Bitmap bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(),uri);
ImageView imageView = (ImageView) findViewById(R.id.imageView);
imageView.setImageBitmap(bitmap);
Bitmap bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(),uri);
ImageView imageView = (ImageView) findViewById(R.id.imageView);
imageView.setImageBitmap(bitmap);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文