移动端图片裁剪器,安装即用

h5-cropper

移动端图片裁剪器,基于 cropperjs 制作的简单裁剪器

项目地址

https://github.com/sayll/h5-cropper

案例演示

HTML部分:




  
  
  裁剪案例



  
  

JS部分:

const img = document.getElementById('image')

document.getElementById('button').onclick = function () {
  var cropper = new window.H5Cropper(img.src, function (base64) {
    img.src = base64
  })
}

演示案例:https://sayll.github.io/h5-cropper/index.html

手机模式查看,效果更佳。

使用方式

直接下载使用

通过下载,直接引用dist/index.js,通过全局的window对象访问。

const cropper = new window.H5Cropper('http://placekitten.com/g/300/200', function (base64) {
  // to do something
  console.log(base64)
})

npm 下载使用

下载方式:

npm i -S h5-cropper

使用方式:

import H5Cropper from 'h5-cropper'
const cropper = new H5Cropper('http://placekitten.com/g/300/200', function (base64) {
  // to do something
  console.log(base64)
})

接口定义

调用方式:

new H5Cropper(url: string, callback?: (data64: string) => any, options?: CropperjsOptions)
参数 描述
url 图片地址或base64
callback 裁剪完成后的回调函数,接收最终的图片base64
options 一些高级配置,详细请查看插件Cropperjs

你可能感兴趣的:(裁剪,html5,canvas,javascript)