当前位置:   article > 正文

android studio使用系统自带的剪切工具,出现“无法加载此图片”的问题--------已解决_android studio androidstudio:image not loaded

android studio androidstudio:image not loaded

按照下图修改即可

private void startImageCrop(Uri uri) {

    Intent intent = new Intent( "com.android.camera.action.CROP" );
    Log.i( TAG, "startImageCrop: " + "执行到压缩图片了" + "uri is " + uri );
    intent.setDataAndType( uri, "image/*" );//设置Uri及类型
    
   //添加下面两个语句
    intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    intent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);

    intent.putExtra( "crop", "true" );//
    intent.putExtra( "aspectX", 1 );//X方向上的比例
    intent.putExtra( "aspectY", 1 );//Y方向上的比例
    intent.putExtra( "outputX", 150 );//裁剪区的X方向宽
    intent.putExtra( "outputY", 150 );//裁剪区的Y方向宽
    intent.putExtra( "scale", true );//是否保留比例
    intent.putExtra( "outputFormat", Bitmap.CompressFormat.PNG.toString() );
    intent.putExtra( "return-data", true );//是否将数据保留在Bitmap中返回dataParcelable相应的Bitmap数据
    Log.i( TAG, "startImageCrop: " + "即将跳到剪切图片" );
    startActivityForResult( intent, CROP_IMAGE );
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/314058
推荐阅读
相关标签
  

闽ICP备14008679号