首页 > 解决方案 > 有没有办法从android中的图像视图中获取图像路径?

问题描述

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

标签: androidpathimageview

解决方案


//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);

推荐阅读