vue插件--图片裁剪

基础要求

知道如何使用vue-cli
熟悉vue1.0、了解sass
了解html5本地图片裁剪

准备工作

使用vue-cli安装vue1.0 webpack框架
安装node-sass、sass-loader

插件编写

图片裁剪流程为:

  1. 读取图片
  2. 显示裁剪页面
  3. 手动缩放移动图片
  4. 确认裁剪,返回图片数据,隐藏裁剪页面

编写图片裁剪插件我们首先确定裁剪页面元素和样式,然后编写读取图片和显示页面的方法,进入裁剪页面后,对用户手势进行处理完成图片裁剪移动功能,最后返回裁剪后的图片数据并隐藏裁剪页面。

编写裁剪页面

读取图片必然需要input[type="file"]元素,裁剪图片需要显示图片所以需要img元素,要确定裁剪内容的范围,需要一个div元素,这些是必要的元素,为了显示效果不要太难看还添加其他元素:

<template>
  <div class="cropper-page" v-show="isShow" v-el:cropper-page>
    <header-bar v-el:header>
      <span slot="right" @click="confirm">确定</span>
    </header-bar>
    <img src="" alt="" class="cropper-img" :style="imageStyle" v-el:img>
    <div class="cover" :style="{height: coverHeight + 'px'}"></div>
    <div class="cropper-box" @touchstart.prevent="touchStart" @touchmove.prevent="touchMove" @touchend.prevent="touchEnd" v-el:crop-box></div>
    <div class="cover" :style="{height: coverHeight + 'px'}">
      {{info}}
    </div>
  </div>
  <input v-el:file type="file" accept="image/*" @change="readImage">
</template>
<style lang="css" scoped>
  .cropper-page{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #fff;
    overflow: hidden;
  }
  .cover{
    background-color: rgba(0,0,0,0.2);
  }
  .cropper-img{
    position: absolute;
    z-index: -1;
  }
  input[type="file"]{
    opacity: 0;
    position: fixed;
    top: -1000px;
    left: -1000px;
  }
</style>

为了让裁剪窗口出现在合适的位置,方便获取元素位置信息,关于位置的样式我通过js进行实现:

    initCropper () {
      this.isShow = true // 显示裁剪界面
      // 回调会在dom更新后调用,如果不使用$nextTick,无法获取元素正确的高度
      this.$nextTick(() => {
        let cropperPage = this.$els.cropperPage
        let pageWidth = cropperPage.clientWidth
        let pageHeight = cropperPage.clientHeight
        let headerHeight = this.$els.header.clientHeight
        console.log(cropperPage)
        this.coverHeight = (pageHeight - headerHeight - pageWidth) / 2
        let cropBoxTop = this.coverHeight + headerHeight
        this.imageState.left = 0
        this.imageState.top = 0
        this.imageStyle.top = cropBoxTop + 'px'
        this.$els.cropBox.style = 'height:' + pageWidth + 'px'
        // var cropBoxRect = this.$els.cropBox.getBoundingClientRect() // 获取的元素没有预期的参数
        this.cropBoxRect = {
          left: 0,
          top: cropBoxTop,
          width: pageWidth,
          height: pageWidth
        }

        let img = this.$els.img
        var width = this.imageState.width = img.naturalWidth
        var height = this.imageState.height = img.naturalHeight
        // 计算imageState
        if (width > height) {
          this.minScale = this.imageState.scale = this.cropBoxRect.height / height
          this.imageState.left = (width * this.imageState.scale - this.cropBoxRect.width) / 2
        } else {
          this.minScale = this.imageState.scale = this.cropBoxRect.width / width
          this.imageState.top = (height * this.imageState.scale - this.cropBoxRect.height) / 2
        }
      })

读取图片与显示裁剪页面

用户通过this.$broadcast('showCropper')触发组件事件:

 events: {
    showCropper () {
      this.$els.file.click()
    }
  },

组件触发input[type="file"]元素的click事件,用户选择图片,触发change事件,执行方法readImage,将读取图片赋值给页面img元素,初始化页面后显示:

    readImage (event) {
      console.log('read')
      var file = event.target.files[0]
      console.log(file)
      var reader = new window.FileReader()
      reader.onload = () => {
        // 通过 reader.result 来访问生成的 DataURL
        this.$els.img.src = reader.result
        // 显示页面并初始化页面
        this.initCropper()
      }
      reader.readAsDataURL(file)
    },

实现图片的移动与缩放

要实现图片的移动和缩放,需要监听元素的touch事件(如果希望在pc端实现图片缩放需要监听鼠标滚轮事件),根据touch事件的反馈改变图片样式。
实现图片移动较为简单,记录移动距离,然后使图片移动相同的距离,如果又多个触摸点那么就记录中点的移动距离。
实现图片缩放需要至少两个触摸点,记录两点的距离,随着两点距离的改变,对图片进行缩放,图片原本的大小/图片缩放后大小应该等于两点最初距离/两点最后距离,如果图片移动没有记录多点的话,缩放效果会比较奇怪,一般图片缩放的同时,两点之间的中点也是不断改变的。

    touchStart (event) {
      var fingerCount = event.touches.length
      if (fingerCount) {
        // 记录触摸初始位置
        let touchEvent = event.touches[0]
        this.touchPos = {
          x: touchEvent.pageX,
          y: touchEvent.pageY
        }
      }

      if (fingerCount >= 2) {
        // 获取两点距离、中点位置;两点距离old/new=放大倍数;中点位置,缩放中心;
        let point0 = event.touches[0]
        let point1 = event.touches[1]

        this.distance = getDinstance(point0, point1)
        this.touchPos = this.getFocalPoint(point0, point1)
        // 设置缩放倍数,
      }
    },
    touchMove (event) {
      // 根据触摸点位移,移动图片,重置触摸点位置
      var fingerCount = event.touches.length

      var touchEvent = event.touches[0]

      if (fingerCount === 1) {
        let distX = touchEvent.pageX - this.touchPos.x
        let distY = touchEvent.pageY - this.touchPos.y
        let newX = this.imageState.left - distX
        let newY = this.imageState.top - distY

        let scale = this.imageState.scale
        let maxX = this.imageState.width * scale - this.cropBoxRect.width
        let maxY = this.imageState.height * scale - this.cropBoxRect.height
        this.imageState.left = newX < 0 ? 0 : (newX > maxX ? maxX : newX)
        this.imageState.top = newY < 0 ? 0 : (newY > maxY ? maxY : newY)
        this.touchPos.x = touchEvent.pageX
        this.touchPos.y = touchEvent.pageY
      } else if (fingerCount > 1) {
        let point0 = event.touches[0]
        let point1 = event.touches[1]

        let distance = getDinstance(point0, point1)
        let zoom = distance / this.distance

        let scale = zoom * this.imageState.scale
        let maxX = this.imageState.width * scale - this.cropBoxRect.width
        let maxY = this.imageState.height * scale - this.cropBoxRect.height
        let touchPos = this.getFocalPoint(point0, point1)
        let newX = zoom * (this.imageState.left + touchPos.x) - touchPos.x
        let newY = zoom * ((this.imageState.top - this.imgInitTop) + touchPos.y) - touchPos.y + this.imgInitTop
        // 限制缩放

        // 图片新位置:由中点位置确认;(新位置到中点)/(旧位置到中点)=(new scale)/(old scale)
        // newLeft - touchPos.x = (distance / this.distance) * (oldLetf - touchPos.x)
        // oldLeft = 0 - this.imageState.left
        // oldTop = imgInitTop - this.imageState.top
        this.distance = distance
        if (scale < this.minScale) {
          this.imageState.scale = this.minScale
        } else {
          this.imageState.scale = scale
          this.imageState.left = newX < 0 ? 0 : (newX > maxX ? maxX : newX)
          this.imageState.top = newY < 0 ? 0 : (newY > maxY ? maxY : newY)
        }
        this.touchPos = touchPos
      }
    },
    touchEnd (event) {
      console.log('end')
    }

返回裁剪图片数据

使用canvas对图片进行处理,使用回调函数返回图片数据

    confirm () {
      let imageState = this.imageState
      let cropBoxRect = this.cropBoxRect
      let scale = imageState.scale
      let image = this.$els.img
      let height = cropBoxRect.height
      let width = cropBoxRect.width

      let canvas = document.createElement('canvas')
      canvas.width = cropBoxRect.width
      canvas.height = cropBoxRect.height
      let ctx = canvas.getContext('2d')
      ctx.drawImage(image, imageState.left / scale, imageState.top / scale, width / scale, height / scale, 0, 0, width, height)
      let data = canvas.toDataURL()
      // 调用处理函数
      this.callback(data)
      // 隐藏页面
      this.isShow = false
    },

调用页面中:

<template>
  <div id="app">
    <h1>图像裁剪</h1>
    <button @click="getImage">图像裁剪</button>
    <image-cropper :callback="loadImage"></image-cropper>
    <img src="" alt="" v-el:test>
  </div>
</template>

将裁剪图片数据返回给img元素

loadImage (data) {
    console.log(data)
    this.$els.test.src = data
}

其他

git: https://github.com/x007xyz/vue-image-cropper

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,382评论 25 707
  • 问答题47 /72 常见浏览器兼容性问题与解决方案? 参考答案 (1)浏览器兼容问题一:不同浏览器的标签默认的外补...
    _Yfling阅读 13,725评论 1 92
  • 感觉生命没有了希望,灯光一点一点灰暗下去,想要找个出口,你来找我啊,来找我啊,我也好想做一个正常人,有人爱,也有人...
    想你itiswritten阅读 238评论 0 0
  • 本文参加#感悟三下乡,青春筑梦行#活动,本人承诺,文章内容为原创,且未在其他平台发表过。 2017年8月13日,这...
    蛋卷儿丫阅读 2,530评论 0 8
  • 2017年以前,我觉得投资是至少百万存款的人才能做的事。 2017年以后,我开始学习理财,学习投资,才明白这更应该...
    豆浆油条和咸菜阅读 304评论 4 0