我正在尝试另一种解决此问题的方法:Share image without WRITE_EXTERNAL_STORAGE?
我的想法是在data URI scheme中对PNG进行编码。我的代码:
ByteArrayOutputStream baos = new ByteArrayOutputStream();
baos.write("data:image/png;base64,".getBytes());
Base64OutputStream base64 = new Base64OutputStream(baos, Base64.NO_WRAP);
boolean ok = bitmap.compress(Bitmap.CompressFormat.PNG, 0, base64);
base64.close();
if (ok) {
Uri uri = Uri.parse(baos.toString());
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/png");
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(intent);
}
我尝试过的应用程序(例如Android 4.4.4上的Gmail)表示无法打开图片。
我是否正确创建了Uri
?如果是这样,是什么阻止其他应用程序读取我的图像?
答案 0 :(得分:-1)
我是否正确创建了我的Uri?
我不知道。
如果是这样,是什么阻止其他应用程序读取我的图像?
因为他们不知道如何处理data
Uri
。