当前位置: 首页 > article >正文

图片旋转并保存图片

let degree = this.rotate;
if (degree === 0) {
this.$message({ message: ‘图片未旋转’, offset: 100 });
return;
}

  const img = new Image();
  // 获取图片src
  img.src = this.currentBigPhoto.img;
  // 获取图片的宽高
  const imgInfo = this.$refs['detail'].getBoundingClientRect();
  if (!imgInfo) {
    return;
  }
  const imgWidth = imgInfo.width;
  const imgHeight = imgInfo.height;
  const canvas = document.createElement('canvas');
  const ctx = canvas.getContext('2d');
  // 获取要旋转的角度
  // 旋转360度 0度
  if (degree === 0) {
    canvas.width = imgWidth;
    canvas.height = imgHeight;
    // ctx.rotate((0 * Math.PI) / 180);
    ctx.drawImage(img, 0, 0, imgWidth, imgHeight);
  } else if (degree === 90) {
    // 旋转90度
    canvas.height = imgHeight;
    canvas.width = imgWidth;
    ctx.rotate((90 * Math.PI) / 180);
    ctx.drawImage(img, 0, -imgWidth, imgHeight, imgWidth);
  } else if (degree === 180) {
    // 旋转180
    canvas.width = imgWidth;
    canvas.height = imgHeight;
    ctx.rotate((180 * Math.PI) / 180);
    ctx.drawImage(img, -imgWidth, -imgHeight, imgWidth, imgHeight);
  } else if (degree === 270) {
    // 旋转270
    canvas.width = imgWidth;
    canvas.height = imgHeight;
    ctx.rotate((270 * Math.PI) / 180);
    ctx.drawImage(img, -imgHeight, 0, imgHeight, imgWidth);
  }
  // 生成图片的url

  const newImg = canvas.toDataURL();
  // this.a = newImg;
  // 重置页面图片的旋转度数
  this.rotate = 0;
  // 新图替换当前图片
  this.currentBigPhoto.img = newImg;
  // 替换存储中的图片
  this.replaceImg(this.currentBigPhoto.id);

http://www.kler.cn/a/272768.html

相关文章:

  • 【服务治理中间件】consul介绍和基本原理
  • doris: Flink导入数据
  • 从字符串使用看Golang和Rust对内存使用的区别
  • 解决报错:未定义标识符 “M_PI“
  • 实现类似Excel的筛选
  • 初始Java4
  • 第3关:注释
  • zookeeper快速入门五:用zookeeper实现服务注册与发现中心
  • QT中connect()的参数5:Qt::DirectConnection、Qt::QueuedConnection区别
  • 【数字孪生】Nginx发布数字孪生三维建模模型服务及调用方法
  • Jasypt 配置文件加密的用法
  • JavaScript爬虫进阶攻略:从网页采集到数据可视化
  • 基于Linux内核的socket编程(TCP)的C语言示例
  • 常用的 C# 第三方开发库
  • .Net使用ElasticSearch
  • (黑马出品_高级篇_03)SpringCloud+RabbitMQ+Docker+Redis+搜索+分布式
  • ICBatlas数据库-转录组免疫检查点阻断疗法数据
  • 使用BBDown下载bilibili视频的方法
  • sentinel黑白名单权限控制
  • 物联网协议模块快速选择实用入门
  • 在Docker上传我们自己的镜像(以springboot项目为例)
  • Gin 框架中实现路由的几种方式介绍
  • 找出字符串中第一个匹配项的下标-力扣
  • 【C语言】linux内核软中断
  • 主播美颜技术原理与应用探究:美颜SDK的前沿技术解析
  • python for循环打印字符串、指定区间范围数字以及打印区间数字内的奇数和偶数