Open gongff opened 9 years ago
uploader.makeThumb(file, function (error, src) {
console.log(file._info.width + '*' + file._info.height)
}, 100, 100);
之前也是这么取的是undefined不知咋回事,现在解决了,谢谢你
碰到相同的问题 楼上怎么解决的?
就是 huhu11lala 写的那样
undefined怎么解决的?
uploader.on('fileQueued', file => { uploader.makeThumb(file, function (error, src) { console.log(file._info.width + '*' + file._info.height) }, 100, 100); })
插件已经设置了图片预览的大小,创建一个image对象后获取的宽高永远是thumb预览的宽高,用naturalWidth也不行,怎么解决呢