Skip to content
Advertisement

How to zoom in and out of an image pygame and using the mousposition as the center of the zoom

I am having an issue with PyGame i can’t resolve. So: my idea is that I have a map I can zoom in/out on. zooming in works fine. But zooming out shows that the rest of the picture got deleted and only the part of the image that was previously visible on the window exists now. This is my code:

JavaScript

Here are the screenshots of my problem:

so far so good:

enter image description here

zooming in works fine:

enter image description here

zooming out causes this:

enter image description here

Advertisement

Answer

You’ll need to scale and blit the original image when you zoom. Use the attribute maprect to define the scaled size and relative location of the map. Add a method blit map that can scale and blit the map. Use the method in the constructor of the class App:

JavaScript

When the image is zoomed, calculate the new mapping rectangle (self.maprect) and call the method again:

JavaScript

See also Scale and zoom window


Complete example:

repl.it/@Rabbid76/PyGame-ZoomInAndOut

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement