my current version is 2.2.0,this is my configuration:
UCrop uCrop = UCrop.of(Uri.fromFile(file), Uri.fromFile(file));
UCrop.Options options = new UCrop.Options();
options.setCompressionQuality(100);
options.setAllowedGestures(UCropActivity.SCALE, UCropActivity.ROTATE, UCropActivity.NONE);
options.setFreeStyleCropEnabled(true);
options.setCircleDimmedLayer(true);
options.setHideBottomControls(true);
options.setToolbarColor(getResources().getColor(R.color.standard_purple_2c2844));
options.setStatusBarColor(getResources().getColor(R.color.standard_purple_2c2844));
uCrop.withOptions(options);
uCrop.start(ProfileActivity.this);
and i found that the photo can't shrink after magnify,but it could be at the lower version like 1.5.0.is my config wrong?or not support at the latest version.it's verry hard to operate.
my current version is 2.2.0,this is my configuration: UCrop uCrop = UCrop.of(Uri.fromFile(file), Uri.fromFile(file)); UCrop.Options options = new UCrop.Options(); options.setCompressionQuality(100); options.setAllowedGestures(UCropActivity.SCALE, UCropActivity.ROTATE, UCropActivity.NONE); options.setFreeStyleCropEnabled(true); options.setCircleDimmedLayer(true); options.setHideBottomControls(true); options.setToolbarColor(getResources().getColor(R.color.standard_purple_2c2844)); options.setStatusBarColor(getResources().getColor(R.color.standard_purple_2c2844)); uCrop.withOptions(options); uCrop.start(ProfileActivity.this); and i found that the photo can't shrink after magnify,but it could be at the lower version like 1.5.0.is my config wrong?or not support at the latest version.it's verry hard to operate.