显示无法加载图像

时间:2017-07-11 16:11:12

标签: android image cropper

我尝试从互联网下载图片并将其传递给设备的默认裁剪器,但它显示无法加载图片。

我的代码是:

Intent cropApps = new Intent("com.android.camera.action.CROP");
cropApps.setType("image/*");
List<ResolveInfo> list = this.getPackageManager().queryIntentActivities(cropApps, 0);
int size = list.size();
if (size == 0)
{
    Toast.makeText(this, "Can not find image crop app", Toast.LENGTH_SHORT).show();
}
else
{
    Uri picUri = Uri.parse("https://www.irononsticker.com/images/Doraemom43.jpg");
    ResolveInfo res = list.get(0);
    Intent cropIntent = new Intent();
    cropIntent.setClassName(res.activityInfo.packageName, res.activityInfo.name);
    cropIntent.setDataAndType(picUri, "image/*");
    cropIntent.putExtra("outputX", 800);
    cropIntent.putExtra("outputY", 800);
    cropIntent.putExtra("aspectX", 1);
    cropIntent.putExtra("aspectY", 1);
    cropIntent.putExtra("scale", true);
    cropIntent.putExtra("return-data", true);
    startActivity(cropIntent);

1 个答案:

答案 0 :(得分:-1)

您需要做的是转到文件,单击属性,然后复制位置。 范例:(r'C:\ Users \ Owner \ Downloads \ game \ yourimagename.png') 您会注意到,在粘贴完密码后,请输入'\',然后单击所需的文件。

希望这会有所帮助