有没有办法从android中的图像视图获取图像路径?

问题描述 投票:0回答:1

我已经使用imageview从图库中捕获和加载图像但是现在我需要使用图像的路径将该图像发送到服务器。任何人都可以帮助我从imageview获取该图像的文件路径。

android path imageview
1个回答
0
投票
//First set imageview imageview.buildDrawingCache(); //getBitmap from ImageView Bitmap bm=imageview.getDrawingCache(); FileOutputStream out = new FileOutputStream(filePath); bitmap.compress(Bitmap.CompressFormat.PNG, 90, out); MediaStore.Images.Media.insertImage(getContentResolver(), bitmap, imagePath, name, description);
© www.soinside.com 2019 - 2024. All rights reserved.