I hope you're well, just wondering if anyone has successfully set up the filepond image size metadata plugin.
https://github.com/yoldar/filepond-plugin-image-size-metadata
The documentation, is somewhat lacking, currently I have set allowImageSizeMetadata as a parameter of the FilePond component:
<FilePond
name={file}
files={file}
allowMultiple={false}
allowImageSizeMetadata={true}
server={null}
instantUpload={false}
onupdatefiles={(fileItems) => onFileChange(fileItems)}
/>
I have imported at the top of the file as so:
import { FilePond, registerPlugin } from 'react-filepond';
import 'filepond/dist/filepond.min.css';
import FilePondPluginImageSizeMetaData from 'filepond-plugin-image-size-metadata';
import FilePondPluginImageExifOrientation from 'filepond-plugin-image-exif-orientation';
import FilePondPluginImagePreview from 'filepond-plugin-image-preview';
import 'filepond-plugin-image-preview/dist/filepond-plugin-image-preview.css';
But when i log out the output in the console i'm not seeing anything extra, which I assume I should be like the width and height metadata.
Can anyone see something I might be missing?
Thanks