图片上传缩略图预览

在上传图片举行预览时,直接抓取原图时因为原图过大会影响机能,即对所上传图片举行压减少图展现;

思绪: 应用 canvas 对原图举行紧缩重绘,抓取地区以中间为基点最大局限绘制缩略图;

对input[file]举行事宜绑定


// 监控 file 变化
imgfile.addEventListener('change', function () {
    ...
}

应用 FileReader 读取上传的图片

var reader = new FileReader()
reader.onload = function () {
    ...
}
reader.readAsDataURL(file);

建立 canvas、image,并猎取宽高

var canvas = document.createElement('canvas');
// 设置 canvas 画布大小
canvas.width = thumbnailWidth, 
canvas.height = thumbnailHeight;

var ctx = canvas.getContext("2d");
var thumbnailItem = new Image();

//猎取图片宽高
thumbnailItem.onload = function () {
    var imgWidth = this.width,
        imgHeight = this.height,
        drawWidth = '',
        drawHeight = '',
        dx,
        dy;
}

对原图举行宽高剖析,最大化展现原图地区

// 推断原图宽高
if (imgWidth > imgHeight) {
    drawWidth = drawHeight = imgHeight;
    dx = (imgWidth - imgHeight) / 2, dy = 0
} else {
    drawWidth = drawHeight = imgWidth;
    dx = 0, dy = (imgHeight - imgWidth) / 2
}

举行绘制缩略图

//void ctx.drawImage(image, sx, sy, sWidth, sHeight, dx, dy, dWidth, dHeight);

ctx.drawImage(thumbnailItem, dx, dy, drawWidth, drawHeight, 0, 0, thumbnailWidth, thumbnailHeight)

//dx
//目的画布的左上角在目的canvas上 X 轴的位置。
//dy
//目的画布的左上角在目的canvas上 Y 轴的位置。
//dWidth
//在目的画布上绘制图象的宽度。 许可对绘制的图象举行缩放。 假如不申明, 在绘制时图片宽度不//会缩放。
//dHeight
//在目的画布上绘制图象的高度。 许可对绘制的图象举行缩放。 假如不申明, 在绘制时图片高度不//会缩放。
//sx
//须要绘制到目的高低文中的,源图象的矩形挑选框的左上角 X 坐标。
//sy
//须要绘制到目的高低文中的,源图象的矩形挑选框的左上角 Y 坐标。
//sWidth
//须要绘制到目的高低文中的,源图象的矩形挑选框的宽度。假如不申明,全部矩形从坐标的sx和sy开//始,到图象的右下角完毕。
//sHeight
//须要绘制到目的高低文中的,源图象的矩形挑选框的高度。

天生base64

// 天生base64
dataUrl = canvas.toDataURL()

中心代码

// 监控 file 变化
imgfile.addEventListener('change', function () {

    if (!this.files.length) return;

    var files = Array.prototype.slice.call(this.files);

    if (files.length > maxQuantity) {
        alert("最多同时只可上传100张图片");
        return;
    }

    files.forEach(function (file, i) {

        var reader = new FileReader(),
            dataUrl = '';
        reader.onload = function () {
            var canvas = document.createElement('canvas');
            // 设置 canvas 画布大小
            canvas.width = thumbnailWidth, canvas.height = thumbnailHeight;

            var ctx = canvas.getContext("2d");
            var thumbnailItem = new Image();

            // 增加原图 url 至数组
            // imgUrls.push(this.result);
            imgUrls[i] = this.result
            thumbnailItem.onload = function () {
                var imgWidth = this.width,
                    imgHeight = this.height,
                    drawWidth = '',
                    drawHeight = '',
                    dx,
                    dy;
                // 推断原图宽高
                if (imgWidth > imgHeight) {
                    drawWidth = drawHeight = imgHeight;
                    dx = (imgWidth - imgHeight) / 2, dy = 0
                } else {
                    drawWidth = drawHeight = imgWidth;
                    dx = 0, dy = (imgHeight - imgWidth) / 2
                }

                // console.log('dx :' + dx, 'dy: ' + dy, 'drawWidth :' + drawWidth, 'thumbnailWidth :' + thumbnailWidth, 'thumbnailHeight :' + thumbnailHeight)
                ctx.drawImage(thumbnailItem, dx, dy, drawWidth, drawHeight, 0, 0, thumbnailWidth, thumbnailHeight)

                // 天生base64
                dataUrl = canvas.toDataURL()

                // thumbnaiUrls.push(dataUrl)
                thumbnaiUrls[i] = dataUrl
                var imglist =
                    '<div class="sn-file-item sn-thumbnail">' +
                    '<input type="checkbox" name="sel" class="sn-thumbnail-sel">' +
                    '<img  src=' + dataUrl + ' data-index=' + i + '>' +
                    '<div class="sn-thumbnail-hidebar"><span class="am-icon-trash js-thumbnail-del" data-index=' + i + ' data-name = "del"></span></div>' +
                    '</div>';

                $('#imgList').append(imglist)

            }

            thumbnailItem.src = this.result

            console.log('缩略图')
            console.log(thumbnaiUrls)

            console.log('原图')
            console.log(imgUrls)

        };
        reader.readAsDataURL(file);
    })
    
})

总结

须要注重 drawImage 须要放在 onload 的回调函数内里,防止图片还未加载完成被绘制出来,即涌现图片一片空白;

若有毛病或不足,迎接指出

    原文作者:小刀
    原文地址: https://segmentfault.com/a/1190000013608790
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞