js通过canvas进行图片压缩

  • Post author:
  • Post category:其他


<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title></title>
	</head>
	<body>
		<input id="input" type="file" value=""></input>
		<script>
			document.querySelector("#input").onchange = function() {
				const file = this.files[0]
				compressImage(file, file => {
					// const formData = new FormData()
					// formData.append('file', file, file.name)
					let alink = document.createElement('a')
					alink.href = URL.createObjectURL(file)
					alink.download = file.name
					alink.click()
				})
			}
			// 压缩图片
			compressImage = (file, success) => {
			    // 图片小于1M不压缩
			    // if (file.size < Math.pow(1024, 2)) {
			    //     return success(file);
			    // }
			    const name = file.name.split('.')[0]; //文件名
			    const reader = new FileReader();
			    reader.readAsDataURL(file);
			    reader.onload = e => {
			        const src = e.target.result;
			        const img = new Image();
			        img.src = src;
			        img.onload = e => {
			            const w = img.width;
			            const h = img.height;
			            const quality = 1;  // 默认图片质量为0.92
			            // 生成canvas
			            const canvas = document.createElement('canvas');
			            const ctx = canvas.getContext('2d');
			            // 创建属性节点
			            const anw = document.createAttribute("width");
			            anw.nodeValue = w;
			            const anh = document.createAttribute("height");
			            anh.nodeValue = h;
			            canvas.setAttributeNode(anw);
			            canvas.setAttributeNode(anh);
			
			            // 铺底色 PNG转JPEG时透明区域会变黑色
			            ctx.fillStyle = "#fff";
			            ctx.fillRect(0, 0, w, h);
			
			            ctx.drawImage(img, 0, 0, w, h);
			            // quality值越小,所绘制出的图像越模糊
			            const base64 = canvas.toDataURL('image/jpeg', quality); // 图片格式jpeg或webp可以选0-1质量区间
			
			            // 返回base64转blob的值
			            console.log(`原图${(src.length/1024).toFixed(2)}kb`, `新图${(base64.length/1024).toFixed(2)}kb`);
			            // 去掉url的头,并转换为byte
			            const bytes = window.atob(base64.split(',')[1]);
			            // 处理异常,将ascii码小于0的转换为大于0
			            const ab = new ArrayBuffer(bytes.length);
			            const ia = new Uint8Array(ab);
			            for (let i = 0; i < bytes.length; i++) {
			                ia[i] = bytes.charCodeAt(i);
			            }
			            file = new Blob([ab], {type : 'image/jpeg'});
			            file.name = name;
			
			            success(file);
			        }
			        img.onerror = e => {
			            console.log(e);
			        }
			    }
			    reader.onerror = e => {
			        console.log(e);
			    }
			}
		</script>
	</body>
</html>



版权声明:本文为Jeo_blue原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。