Can i keep a fix size of the cropping window. the width and height should 300 X 300. User can just reduce the cropping window but cannot make it a larger one because my server side can store image of width and height upto 300 x 300.
Thanks
@Ani24may Hey have you found any solution?
no, not yet
@Ani24may hello I have found something you can set this both as same to crop of fixed size
.setMinCropResultSize(1000,500)
.setMaxCropResultSize(1000,500)
Thanks mate. Will definitely try this.
thanks @abbasalid
Below code works for me.
CropImage.activity().setGuidelines(CropImageView.Guidelines.ON)
.setMinCropResultSize(500, 300)
.setMaxCropResultSize(500, 300)
.start(this);
Most helpful comment
@Ani24may hello I have found something you can set this both as same to crop of fixed size
.setMinCropResultSize(1000,500)
.setMaxCropResultSize(1000,500)