我正在使用cropit,我想以模态预览裁剪的图像。如何获取裁剪图像的 src url
我复制了这个插件HTML的部分基本 html 代码
<div class="image-editor">
<input type="file" class="cropit-image-input">
<div class="cropit-preview"></div>
<div class="image-size-label">
Resize image
</div>
<input type="range" class="cropit-image-zoom-input">
<button class="rotate-ccw">Rotate counterclockwise</button>
<button class="rotate-cw">Rotate clockwise</button>
<button class="export">Export</button>
</div>
JS
$(function() {
$('.image-editor').cropit({
imageState: {
src: 'http://lorempixel.com/500/400/',
},
});
$('.rotate-cw').click(function() {
$('.image-editor').cropit('rotateCW');
});
$('.rotate-ccw').click(function() {
$('.image-editor').cropit('rotateCCW');
});
$('.export').click(function() {
var imageData = $('.image-editor').cropit('export');
window.open(imageData);
});
});
到目前为止我尝试的是从文档中使用
$('.image-editor').cropit('imageSrc'); //but it returns null. Is there any other way to do this?
演示和文档似乎没有融合,所以我很难使用插件。