上传图片判断上传的图片是横向还是纵向

文章介绍了使用JavaScript进行文件上传时,如何检测文件大小、创建URL对象处理图片,并基于图片尺寸判断其横向或纵向,确保上传操作的优化。
摘要由CSDN通过智能技术生成
 uploadFile(event) {
      event.preventDefault();
      this.fd = new FormData(); //内置方法new FormData()  新建一个表格
      const files = event.target.files;
      // 文件大小限制
      if (files[0].size > 2 * 1024 * 1024) {
        this.$message.error("文件大小不能超过2M");
        return;
      }
      this.file = event.target.files[0]; // 获取上传的图片文件对象
      const image = new Image();
      image.src = URL.createObjectURL(this.file); // 设置图片源路径

      image.onload = () => {
        if (image.width >= image.height) {
          this.isHorizontal = true; // 图片为横向
          console.log("图片为横向");
           this.fd.append("file", files[0]);
     		 this.loading = true;
     		 file(this.fd).then((res) => {
       		 if (res.data.code == 200) {
         		console.log(res)
        		}
      			});
        } else {
          this.isHorizontal = false; // 图片不是横向
          console.log("图片是纵向");
        }

        URL.revokeObjectURL(image.src); // 清除内存中的临时URL地址
      };
      
     
    },
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值