FilePond Pintura Image Editor

Combine FilePond with Pintura and create the perfect image edit and upload experience.

Learn more about Pintura

Image crop

The Image crop plugin automatically calculates and adds cropping information based on the input image dimensions and the set crop ratio.

The Image preview plugin uses this information to show the correct preview. The Image transform plugin uses this information to transform the image before uploading it to the server.

Installation

Using npm

npm i filepond-plugin-image-crop --save

Now we can add the Image Crop plugin to our project like this.

// Import FilePond
import * as FilePond from 'filepond';

// Import the plugin code
import FilePondPluginImageCrop from 'filepond-plugin-image-crop';

// Register the plugin
FilePond.registerPlugin(FilePondPluginImageCrop);

Using a CDN

<!-- add before </body> -->
<script src="https://unpkg.com/filepond-plugin-image-crop/dist/filepond-plugin-image-crop.js"></script>
<script src="https://unpkg.com/filepond/dist/filepond.js"></script>

<script>
    // Register the plugin
    FilePond.registerPlugin(FilePondPluginImageCrop);

    // ... FilePond initialisation code here
</script>

Manual installation

<!-- add before </body> -->
<script src="filepond-plugin-image-crop.js"></script>
<script src="filepond.js"></script>

<script>
    // Register the plugin
    FilePond.registerPlugin(FilePondPluginImageCrop);

    // ... FilePond initialisation code here
</script>

Properties

Property Default value Description
allowImageCrop
true
Enable or disable image cropping
imageCropAspectRatio
null
The aspect ratio of the crop in human readable format, for example '1:1' or '16:10'