jQuery cropit 导出方法 return 仅 'data:,' 字符串
jQuery cropit export method return only 'data:,' string
我的 html cropit 代码:
<div id="image-cropper" style="direction: ltr">
<div class="row margin-top-25">
<div class="col-md-8 col-md-offset-2">
<div class="cropit-image-preview-container">
<div class="cropit-image-preview"></div>
</div>
</div>
</div>
<div class="row margin-top-15">
<div class="col-md-4 col-md-offset-4">
<input type="range" class="cropit-image-zoom-input" />
</div>
</div>
<div class="row margin-top-15">
<div class="col-md-4 col-md-offset-4">
<input type="file" style="display: none" class="cropit-image-input" />
<div class="R_butt_blue choose_pic text-center">انتخاب تصویر</div>
</div>
</div>
</div>
和我的 javascript cropit 代码:
$('.choose_pic').click(function(){
$('.cropit-image-input').click();
});
var z = $('#image-cropper').cropit({
exportZoom: 1,
imageBackground: true,
imageBackgroundBorderWidth: 15 // Width of background border
});
$('.send_image').click(function(){
var h = z.cropit('export');
$('#photo_show img').attr({ src: h });
});
我想使用 cropit jquery 插件裁剪图像,我阅读了完整的文档和多个 ,但是 return 只有一个包含 data:,
的字符串
我不知道怎么了?
您应该定义 .cropit-image-preview
css class 以设置裁剪图像的宽度和高度。
.cropit-image-preview {
/* You can specify preview size in CSS */
width: 100px;
height: 100px;
}
并像这样使用选择器:
var z = $('#image-cropper');
z.cropit({
exportZoom: 1,
imageBackground: true,
imageBackgroundBorderWidth: 15 // Width of background border
});
我的 html cropit 代码:
<div id="image-cropper" style="direction: ltr">
<div class="row margin-top-25">
<div class="col-md-8 col-md-offset-2">
<div class="cropit-image-preview-container">
<div class="cropit-image-preview"></div>
</div>
</div>
</div>
<div class="row margin-top-15">
<div class="col-md-4 col-md-offset-4">
<input type="range" class="cropit-image-zoom-input" />
</div>
</div>
<div class="row margin-top-15">
<div class="col-md-4 col-md-offset-4">
<input type="file" style="display: none" class="cropit-image-input" />
<div class="R_butt_blue choose_pic text-center">انتخاب تصویر</div>
</div>
</div>
</div>
和我的 javascript cropit 代码:
$('.choose_pic').click(function(){
$('.cropit-image-input').click();
});
var z = $('#image-cropper').cropit({
exportZoom: 1,
imageBackground: true,
imageBackgroundBorderWidth: 15 // Width of background border
});
$('.send_image').click(function(){
var h = z.cropit('export');
$('#photo_show img').attr({ src: h });
});
我想使用 cropit jquery 插件裁剪图像,我阅读了完整的文档和多个 data:,
的字符串
我不知道怎么了?
您应该定义 .cropit-image-preview
css class 以设置裁剪图像的宽度和高度。
.cropit-image-preview {
/* You can specify preview size in CSS */
width: 100px;
height: 100px;
}
并像这样使用选择器:
var z = $('#image-cropper');
z.cropit({
exportZoom: 1,
imageBackground: true,
imageBackgroundBorderWidth: 15 // Width of background border
});