Coder Social home page Coder Social logo

Comments (6)

rikschennink avatar rikschennink commented on May 13, 2024

@weiliank Have you added the image-transform plugin?

from filepond.

weiliank avatar weiliank commented on May 13, 2024

Hi @rikschennink

Yes, I did included the plugin library and also I have registered the plugin

FilePond.registerPlugin(
            // encodes the file as base64 data
            FilePondPluginFileEncode,
            // validates the size of the file
            FilePondPluginFileValidateSize,
            // corrects mobile image orientation
            FilePondPluginImageExifOrientation,
            // previews dropped images
            FilePondPluginImagePreview,
            FilePondPluginFileValidateType,
            FilePondPluginImageTransform
        );

I am wondering how to get the compressed/resized image upload to the server (localhost/cloud).

Thanks!

from filepond.

rikschennink avatar rikschennink commented on May 13, 2024

@weiliank If you're uploading using XMLHttpRequest ( the server config property ) you can leave out the File Encode plugin. How have you configured the server property?

from filepond.

weiliank avatar weiliank commented on May 13, 2024

Hi @rikschennink,

I configured it as below:

const inputElement = document.querySelector('.filepond');
        const pond = FilePond.create(inputElement, {
            labelIdle: 'Drag & Drop your picture or <span class="filepond--label-action">Browse Your PC</span>',
            imagePreviewHeight: 400,
            imageCropAspectRatio: '1:1',
            imageResizeTargetWidth: 300,
            imageResizeTargetHeight: 300,
            imageResizeMode: 'cover',
            instantUpload: true,
            allowFileEncode: true,
            allowImageTransform: true,
            server: {
                url: '<?php echo base_url()?>', // http://localhost/wine/
                timeout: 7000,
                process: {
                    url: 'products/azure',
                    method: 'POST'
                }
            }
        });

Is this correct?

from filepond.

rikschennink avatar rikschennink commented on May 13, 2024

@weiliank Looks okay to me. You can remove these lines allowFileEncode: true and allowImageTransform: true as plugins are enabled by default. It looks okay otherwise.

Just took a look at the registerPlugin snippet for the second time, it seems the Image Crop and Image Resize plugins are not loaded.

from filepond.

rikschennink avatar rikschennink commented on May 13, 2024

@weiliank Will close for now as the issue is probably related to the Image Crop and Image Resize plugins not being loaded.

from filepond.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.