赞
踩
按照下图修改即可
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 ); }
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。