我正在将Filepond与VueJS一起用于上传图像。如果需要,我应该在上传时裁剪图像。
我在全球注册了Filepond插件。
import Vue from 'vue';
import vueFilePond from 'vue-filepond';
import FilePondPluginFileValidateType from 'filepond-plugin-file-validate-type';
import FilePondPluginImagePreview from 'filepond-plugin-image-preview';
import FilePondPluginImageCrop from 'filepond-plugin-image-crop';
import 'filepond/dist/filepond.min.css';
import 'filepond-plugin-image-preview/dist/filepond-plugin-image-preview.min.css';
const FilePond = vueFilePond(FilePondPluginFileValidateType, FilePondPluginImagePreview, FilePondPluginImageCrop);
Vue.component('filePond', FilePond);
然后我正在使用组件
<file-pond
name="image"
ref="pond"
:label-idle="$t('complaint_detail.label-idle')"
:allow-multiple="false"
accepted-file-types="image/*"
:server="{ process }"
:allowImagePreview="true"
:allowImageCrop= "true"
:allow-revert = "false"
v-on:init="handleFilePondInit"
v-on:addfile="handleFilePondAddFile"
/>
这是我的process
方法
process(fieldName, file, metadata, load) {
load(file);
},
handleFilePondInit() {
this.$refs.pond.getFiles();
},
但是使用此代码,图像裁剪无效。在文档中,仅额外存在allowImageCrop,但对我不起作用。这是文档的链接: https://pqina.nl/filepond/docs/patterns/plugins/image-crop/
答案 0 :(得分:0)
您需要使用imageCropAspectRatio
属性定义裁剪比例。
对于方形作物:
<file-pond
image-crop-aspect-ratio="1"
name="image"
ref="pond"
/>