Hi,
I need a function for zooming very large images (5000 x 7000 pixel) in pyqt.
I´ve tried out the functions from gwenview (Image viewer coded in C++ and Qt), but it`s too difficult for me to understand.
Thanks!
Hi,
I need a function for zooming very large images (5000 x 7000 pixel) in pyqt.
I´ve tried out the functions from gwenview (Image viewer coded in C++ and Qt), but it`s too difficult for me to understand.
Thanks!
In my app I have a grid which I hide when the user zooms out beyond a certain point. I acheived this by sending a signal of the zoom level whenever it changes, and catching that in a slot in the scene to enable or diable the grid. You could do the same to switch image files to a lower resolution copy of the image when you're zoomed out beyond a certain point.