chrvadala / react-svg-pan-zoom

:eyes: A React component that adds pan and zoom features to SVG
https://chrvadala.github.io/react-svg-pan-zoom/
MIT License
677 stars 125 forks source link

Zoomed in view is blurry until user clicks outside the viewer #175

Open andygock opened 4 years ago

andygock commented 4 years ago

Hi,

When zoomed in a lot on the example, the displayed image is very blurry until the user clicks outside the box. Can this be fixed, so that the rendering is sharp as soon as zooming is finished? See GIF below to illustrate the problem:

blurry-until-click-outside

Thanks.

mrstevedev commented 2 years ago

Hello andy,

Did you ever resolve this issue? Doesn't seem like any other discussions around this as I am facing this exact problem.

Steven

andygock commented 2 years ago

Hello andy,

Did you ever resolve this issue? Doesn't seem like any other discussions around this as I am facing this exact problem.

Steven

Hi Steven, I never found a solution, I ended up abandoning the project I was using it with so never looked into it further.

mrstevedev commented 2 years ago

Hi andy,

Thank you for letting me know.

Steven

szabozsol1224 commented 1 year ago

This bug is still present, but you could improve it a little bit with css:

svg { shape-rendering: geometricPrecision; }

Now every second-third step is blurry when you're zooming in/out...