Code Monkey home page Code Monkey logo

Comments (7)

sekoyo avatar sekoyo commented on June 5, 2024 1

Hi I'm not sure whether I'll try and fix it or deprecate it, it was added via PR from someone but feels extraneous to the core API and never sat well with me. I'll take a look and see if I can replicate this issue but I'm unlikely to add more complexity to the code to try and fix it (more likely to remove complexity from the code by removing it entirely - sorry!)

from react-image-crop.

sekoyo avatar sekoyo commented on June 5, 2024 1

Sorry to say but this feature is going away in v2 I'm releasing probably this weekend, as it's a feature I don't have time/inclination to get working properly and I want to remove bloat from the codebase. v2 has a couple of breaking changes but no major difference so feel free to carry on using v1 if you want it

from react-image-crop.

adelespinasse avatar adelespinasse commented on June 5, 2024

@dominictobias Would you consider keeping it if I submitted a PR to fix it? I haven't looked at the code at all, but I might consider it.

from react-image-crop.

sekoyo avatar sekoyo commented on June 5, 2024

Feel free to try, but you might find it tricky, also since this is just a visual change I would be surprised if the jumping didn't happen for rectangles. IIRC this should only happen when drawing a new shape but I'll have a try and see if I can replicate when I have some time in the next week.

from react-image-crop.

aaronshim avatar aaronshim commented on June 5, 2024

Hi @adelespinasse, have you made any progress on this since? I'm running into a similar problem. Thanks!

from react-image-crop.

adelespinasse avatar adelespinasse commented on June 5, 2024

@aaronshim It hasn't been at the top of my priorities. I just use a square crop. :/

from react-image-crop.

JeevaS0722 avatar JeevaS0722 commented on June 5, 2024

try this

const canvas = getResizedCanvas(previewCanvas, crop.width, crop.height);
 const base64Image = canvas.toDataURL('image/png');
 console.log('base64Image', base64Image);
function getResizedCanvas(canvas, newWidth, newHeight) {
 const tmpCanvas = document.createElement('canvas');
 tmpCanvas.width = newWidth;
 tmpCanvas.height = newHeight;
 const ctx = tmpCanvas.getContext('2d');
 ctx.save();
 ctx.beginPath();
 ctx.arc(newWidth / 2, newHeight / 2, newHeight / 2, 0, Math.PI * 2, false);
 ctx.closePath();
 ctx.clip();

 ctx.drawImage(
   canvas,
   0,
   0,
   canvas.width,
   canvas.height,
   0,
   0,
   newWidth,
   newHeight
 );
 ctx.restore();
 // const base64Image = canvas.toDataURL('image/jpeg');
 return tmpCanvas;
}

from react-image-crop.

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.