Closed BawenderTft closed 5 years ago
Thanks for raising this issue. I am working on a solution and should be available today.
Support will be available from 0.3.1 version.
Use getCropMatrix()
to obtain CropMatrix
and use setCropMatrix(CropMatrix matrix)
to restore the state.
Hi, I am having a problem with the image cropmatrix. The method setCropMatrix(cropmatrix, animate); works only if you set the animate method to be true and not if set to false, I wish to user this without the animation. Can please help.
Hi @BawenderTft, Can you share the snippet of your code where you are calling this method?
Hi @BawenderTft, Just double checked and it does seem to work. Please check the sample: https://github.com/jayrambhia/CropperNoCropper/blob/master/sample/src/main/java/com/fenctose/imagecropper/MainActivity.java#L171
Currently, we need to call setCropMatrix
method after some delay.
mImageView.setImageBitmap(mBitmap);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
mImageView.setCropMatrix(matrix, false);
}
}, 30);
Hi , Thanks for the awesome work on the library. I wish to use the same thing just like instagram does for multi image cropping, my use case is
please suggest if this thing is possible. I am short on time as well here , so would appriciate a quick response.