Code Monkey home page Code Monkey logo

Comments (7)

lrphael avatar lrphael commented on May 25, 2024 1

Same here

from react-image-file-resizer.

nduytung avatar nduytung commented on May 25, 2024

I have the same issue. Did u figured out how to fix it? i'd be appreciate it

from react-image-file-resizer.

DevCraftsmanShubham avatar DevCraftsmanShubham commented on May 25, 2024

I have the same issue. Did u figured out how to fix it? i'd be appreciate it

I was unable to do this in the frontend, so I moved the image processing to the backend side

from react-image-file-resizer.

kaloraat avatar kaloraat commented on May 25, 2024

same issue here. I've been using this package for long time, never had this issue:

Screen Shot 2022-07-07 at 4 37 26 PM

from react-image-file-resizer.

PavelLaptev avatar PavelLaptev commented on May 25, 2024

Same here. I create an image like this

const createImage = (imageData: any) => {
    const image = new Image();
    image.src = `url(data:image/jpeg;base64,${imageData})`;
    return image;
};

and then pass it into Resizer

const resizeFile = file =>
    new Promise(resolve => {
        Resizer.imageFileResizer(
            file,
            300,
            300,
            'JPEG',
            100,
            0,
            uri => {
                resolve(uri);
            },
            'base64'
        );
    });

from react-image-file-resizer.

lesrpo avatar lesrpo commented on May 25, 2024

same here 2023 :(

from react-image-file-resizer.

lesrpo avatar lesrpo commented on May 25, 2024

I did a walk around, I was getting an image URL from the camera, I got the image itself like this

async getImage(path){ const response = await fetch(path); const blob = await response.blob(); return blob; };

then I passed it to the resizer and voila

FMSService.getImage(url).then((image: any) => { onResizeImage(image).then((resizedFile: any)=>{ prepareFormData(resizedFile); //to send to the server }); });

I am also using cropperjs, so first crop, then resize.

the other functions

`const onResizeImage = async (imageFile: any) => {
try {
const file = imageFile;
const image = await resizeFile(file);
return image;
} catch (err) {
console.log(err);
}
}

const resizeFile = (file: any) =>
    new Promise((resolve) => {
        Resizer.imageFileResizer(
            file,
            700,
            700,
            "JPEG",
            100,
            0,
            (uri) => {
                resolve(uri);
            },
            "blob"
        );
    });`

from react-image-file-resizer.

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.