gpt4 book ai didi

android - 如何将 ImageView 另存为图像?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:10:13 24 4
gpt4 key购买 nike

我有一个带有共享 Intent 的 ImageView(效果很好,可以调出我可以与之共享图像的所有应用程序),但是,我无法共享照片,因为它在我的手机上没有路径。如何将 ImageView 保存到我的手机上?下面是我的代码。

 public void taptoshare(View v)
{
View content = findViewById(R.id.myimage);
content.setDrawingCacheEnabled(true);
Bitmap bitmap = content.getDrawingCache();
File file = new File("/DCIM/Camera/image.jpg");
try
{
file.createNewFile();
FileOutputStream ostream = new FileOutputStream(file);
bitmap.compress(CompressFormat.JPEG, 100, ostream);
ostream.close();
}
catch (Exception e)
{
e.printStackTrace();
}


Intent shareIntent = new Intent(Intent.ACTION_SEND);
Uri phototUri = Uri.parse("/DCIM/Camera/image.jpg");
shareIntent.setData(phototUri);
shareIntent.setType("image/*");
shareIntent.putExtra(Intent.EXTRA_STREAM, phototUri);
startActivity(Intent.createChooser(shareIntent, "Share Via"));

}
}

更新好的,所以我想通了。现在我有一个新问题,如何将此图像保存到新文件夹?

最佳答案

保存和加载时,需要先获取系统的根路径。我就是这样做的。

File root = Environment.getExternalStorageDirectory();
File cachePath = new File(root.getAbsolutePath() + "/DCIM/Camera/image.jpg");

关于android - 如何将 ImageView 另存为图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8262598/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com