我正在使用cropit裁剪图片。
<body>
<div class="image-editor">
<input type="file" class="cropit-image-input">
<!-- .cropit-image-preview-container is needed for background image to work -->
<div class="cropit-image-preview-container">
<div class="cropit-image-preview"></div>
</div>
<div class="image-size-label">
Resize image
</div>
<input type="range" class="cropit-image-zoom-input">
<button class="export">Save</button>
</div>
<script>
$(function() {
$('.image-editor').cropit({
exportZoom: 1.25,
imageBackground: true,
imageBackgroundBorderWidth: 10,
imageState: {
src: '../image/default-avatar.png'
}
});
$('.export').click(function() {
var imageData = $('.image-editor').cropit('export');
window.open(imageData);
});
});
</script>
</body>
我遇到了两个问题:
ROOT_PATH.'user/upload/'.$row['UserName'].'/avatar/big/'
AvatarImage
列的MySQL数据库中。找到MySQL数据库信息:
数据库名称:ara
数据库用户:root
数据库密码:
数据库地址:127.0.0.1
答案 0 :(得分:0)
您必须使用php对base64图像文件进行编码,并将图像保存到文件目录中, 请尝试欺骗现有的链接
How to create and save image to a website folder from a base64 encoded data/string using PHP