hello ,
У меня проблемы с поворотом изображения с помощью Кроппи. всякий раз, когда я нажимаю кнопку поворота, появляется сообщение об ошибке «Uncaught Croppie: невозможно повернуть без включения enableOrientation && EXIF.js». вот мой код
1. List item
//Rotate Left Image
$('#rotate-left').on('click', function(ev) {
$uploadCrop.croppie('rotate', 90);
})
//Rotate Right Image
$('#rotate-right').on('click', function(ev) {
$uploadCrop.croppie('rotate', -90);
})
i am on trouble for rotate image task using croppie. when ever i click on rotate button it shown me "Uncaught Croppie: Cannot rotate without enableOrientation && EXIF.js included" this error.
here is my code
and here my croppie code
$uploadCrop = $('#upload-img').croppie({
viewport: { width: 400, height: 400 },
boundary: { width: 450, height: 450 },
showZoomer: true,
enableResize: true,
enableOrientation: true,
mouseWheelZoom: true,
enableExif: true, });
## Heading ##
is any one solved this problem. please suggest me.
i am on trouble for rotate image task using croppie. when ever i click on rotate button it shown me "Uncaught Croppie: Cannot rotate without enableOrientation && EXIF.js included" this error.