fengyuanchen / cropper

⚠️ [Deprecated] No longer maintained, please use https://github.com/fengyuanchen/jquery-cropper
MIT License
7.75k stars 1.74k forks source link

Center Cutting Cropper on Load #1048

Closed mrmbarnes2019 closed 5 years ago

mrmbarnes2019 commented 5 years ago

Hi All

I hope this is the right place to post this.

We have managed to set it is that when an image is loaded it is centered in the canvas part however we cannot work out how to center align, vertically and horizontally, the cutting cropper.

We have found a way to set a value however that is no good as the page is responsive and we have made it so that we can pass the crop width and height via the url so the cutting cropper will be different sizes.

Is there a way to center the cutting cropper to the vertically and horizontally center of the canvas?

If so can you please point me in the right direction.

If not then I think this would be a great feature to add.

Thanks for any help.

mrmbarnes

mrmbarnes2019 commented 5 years ago

I found a work around for the copper positioning... I added:

obj.left=parseInt(urlParams.get('cropperLeftPadding')); obj.top=parseInt(urlParams.get('cropperTopPadding'));

And pass the info via the URL which is working great.

mrmbarnes