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

Taro+Vue实现图片裁剪组件

cropper-image-taro-vue3 组件库

介绍

cropper-image-taro-vue3 是一个基于 Vue 3Taro 开发的裁剪工具组件,支持图片裁剪、裁剪框拖动、缩放和输出裁剪后的图片。该组件适用于 Vue 3 和 Taro 环境,可以在网页、小程序等平台中使用。

源码

https://gitee.com/xctf/cropper-image-taro-vue

安装

你可以通过 npmyarn 安装该组件库。

npm install cropper-image-taro-vue3
# 或者使用 yarn
yarn add cropper-image-taro-vue3

效果

在这里插入图片描述

使用

你可以直接导入并使用 cropper-image-taro-vue3 组件。

1.组件导入与使用:

<template>
  <div>
    <cropper-image-taro-vue3 ref="cropperRef" :imagePath="imagePath" :debug="true" />
    <button @click="handleCrop">裁剪图片</button>
    <button @click="handleReInit">重置裁剪框</button>
  </div>
</template>

<script>
import { ref } from 'vue';
import { cropperImageTaroVue3 } from 'cropper-image-taro-vue3';  // 导入组件

export default {
  components: {
    cropperImageTaroVue3,  // 注册组件
  },
  setup() {
    const imagePath = ref('path_to_image.jpg');  // 图片路径
    const cropperRef = ref(null);  // 用于获取组件的引用

    const handleCrop = () => {
      // 通过 ref 调用组件的方法
      if (cropperRef.value) {
        cropperRef.value.crop();  // 调用 crop 方法进行裁剪
      }
    };

    const handleReInit = () => {
      // 通过 ref 调用组件的 reInit 方法重置裁剪框
      if (cropperRef.value) {
        cropperRef.value.reInit();  // 调用 reInit 方法
      }
    };

    return {
      imagePath,
      cropperRef,
      handleCrop,
      handleReInit,
    };
  },
};
</script>

2. 组件 Props

Prop类型说明默认值
imagePathString图片路径
debugBoolean是否开启调试模式,打印调试信息false
minBoxWidthRatioNumber最小剪裁宽度比例(相对于原图宽度)0.15
minBoxHeightRatioNumber最小剪裁高度比例(相对于原图高度)0.15
initialBoxWidthRatioNumber裁剪框初始宽度比例0.6
aspectRatioNumber | null目标图片宽高比,如果设置,将限制裁剪框宽高比。null
outputFileTypeString输出文件类型,jpgpngjpg
qualityNumber输出图片质量,范围从 0 到 11

3. 组件方法

组件暴露了两个主要方法:

  • crop:用于裁剪图片,调用后将返回裁剪后的文件路径。
  • reInit:重新初始化裁剪框。
可以使用ref获取组件实例操作裁剪组件

4. 组件事件

组件可以触发以下事件:

事件名说明
ok裁剪完成后,返回裁剪后的图片路径。
<cropper-image-taro-vue3 :imagePath="imagePath" @ok="handleCropResult" />

<script>
export default {
  methods: {
    handleCropResult(filePath) {
      console.log('裁剪后的图片路径:', filePath);
    }
  }
};
</script>

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

相关文章:

  • pytest+allure 入门
  • CSS:定位
  • Vue3.js中如何将响应式数据与状态管理Vuex、Pinia结合使用
  • 【adb】5分钟入门adb操作安卓设备
  • 机器学习之奥卡姆剃刀定律
  • CNN Test Data
  • 学习RocketMQ
  • git commit 命令
  • 计算机视觉:解锁未来智能世界的钥匙
  • 迪威云服务支持的3D格式转换方法详解
  • MongoTemplate 性能优化指南
  • 倚光科技博士团队:工业相机镜头设计与加工,助力智能视觉新发展
  • 基于python的网页表格数据下载--转excel
  • 怎么抓取IOS手机app的网络流量,也就是iphone手机抓包
  • # React Router 路由导航hooks使用总结
  • 二分算法笔记
  • C++STL中常用的排序算法:sort、random_shuffle、merge和reverse(附C++代码)
  • 【设计模式】工厂方法
  • spark报错提示(持续汇总)
  • Java后端开发单元测试