gpt4 book ai didi

javascript - Dropzone.js 调整图像大小以适合缩略图大小

转载 作者:技术小花猫 更新时间:2023-10-29 12:01:38 27 4
gpt4 key购买 nike

我正在尝试调整缩略图中图像的大小以固定框大小。我试过这个:

Dropzone.options.myAwesomeDropzone = {
maxFiles: 20,
maxFilesize: 2,
maxThumbnailFilesize: 20,
acceptedFiles: 'image/*,.jpg,.png,.jpeg',
thumbnailWidth:"250",
thumbnailHeight:"250",
init: function() {
var dropzone = this, xhrs = [];
$.each(uploadedImages, function (index, path) {
var xhr = new XMLHttpRequest();
xhr.open('GET', path);
xhr.responseType = 'blob';//force the HTTP response, response-type header to be blob
xhr.onload = function() {
var file = new File([xhr.response], '', {'type': xhr.response.type});
//dropzone.addUploadedFile(file);
dropzone.emit("addedfile", file);
dropzone.emit("thumbnail", file, path);
dropzone.emit("complete", file);
};
xhrs.push(xhr);
xhr.send();
});
this.options.maxFiles = this.options.maxFiles - uploadedImages.count;
}
};

这是原始图像的外观: http://files.parsetfss.com/12917a88-ac80-4e5e-a009-fc634161b79c/tfss-6c59b59f-8f57-4610-966e-31bbc203707b-samsung-galaxy-note-4-7290-002.jpg

这是它的显示方式: enter image description here

我也试过了:

thumbnailWidth:"300",
thumbnailHeight:"300",
===
thumbnailWidth:"400",
thumbnailHeight:"400",

但是什么都没变,thumbnailWidth 和 thumbnailHeight 没有效果

最佳答案

我遇到了同样的问题,但如果您手动调用拖放区的调整大小功能,缩略图将处于正确的尺寸:

var file = new File([xhr.response], '', {'type': xhr.response.type});
dropzone.createThumbnailFromUrl(file,path);
dropzone.emit("addedfile", file);
dropzone.emit("thumbnail", file, path);
dropzone.emit("complete", file);

关于javascript - Dropzone.js 调整图像大小以适合缩略图大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30081416/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com