lzhe
2024-06-14 963a2313f4f8959715293d38f69894078150d508
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!--
 * @Descripttion: 图像裁剪组件
 * @version: 1.0
 * @Author: sakuya
 * @Date: 2021年7月24日17:05:43
 * @LastEditors:
 * @LastEditTime:
 * @other: 代码完全开源,欢迎参考,也欢迎PR
-->
 
<template>
    <div class="sc-cropper">
        <div class="sc-cropper__img">
            <img :src="src" ref="img">
        </div>
        <div class="sc-cropper__preview">
            <h4>图像预览</h4>
            <div class="sc-cropper__preview__img" ref="preview"></div>
        </div>
    </div>
</template>
 
<script>
    import Cropper from 'cropperjs'
    import 'cropperjs/dist/cropper.css'
 
    export default {
        props: {
            src: { type: String, default: "" },
            compress: {type: Number, default: 1},
            aspectRatio:  {type: Number, default: NaN},
        },
        data() {
            return {
                crop: null
            }
        },
        watch:{
            aspectRatio(val){
                this.crop.setAspectRatio(val)
            }
        },
        mounted() {
            this.init()
        },
        methods: {
            init(){
                this.crop = new Cropper(this.$refs.img, {
                    viewMode: 2,
                    dragMode: 'move',
                    responsive: false,
                    aspectRatio: this.aspectRatio,
                    preview: this.$refs.preview
                })
            },
            setAspectRatio(aspectRatio){
                this.crop.setAspectRatio(aspectRatio)
            },
            getCropData(cb, type='image/jpeg'){
                cb(this.crop.getCroppedCanvas().toDataURL(type, this.compress))
            },
            getCropBlob(cb, type='image/jpeg'){
                this.crop.getCroppedCanvas().toBlob((blob) => {
                    cb(blob)
                }, type, this.compress)
            },
            getCropFile(cb, fileName='fileName.jpg', type='image/jpeg'){
                this.crop.getCroppedCanvas().toBlob((blob) => {
                    let file = new File([blob], fileName, {type: type})
                    cb(file)
                }, type, this.compress)
            }
        }
    }
</script>
 
<style scoped>
    .sc-cropper {height:300px;}
    .sc-cropper__img {height:100%;width:400px;float: left;background: #EBEEF5;}
    .sc-cropper__img img {display: none;}
    .sc-cropper__preview {width: 120px;margin-left: 20px;float: left;}
    .sc-cropper__preview h4 {font-weight: normal;font-size: 12px;color: #999;margin-bottom: 20px;}
    .sc-cropper__preview__img {overflow: hidden;width: 120px;height: 120px;border: 1px solid #ebeef5;}
</style>