Python Forum
Manipulating an image in python - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: Manipulating an image in python (/thread-15059.html)



Manipulating an image in python - z4rn4v - Jan-01-2019

Hi guys,

I am trying to build a program which takes an input from an external source - WEB - and insert it into my app.

I am thinking on having a map as an image and then based on the input I receive to make modification to that particular image.

The question is : which is the easiest way to start in : - adding images into my python code background etc.
- manipulating the images inside my app.

Example: I have in my background a map of a city. I would like to cut that map into multiple sections, like neighborhoods or maybe streets etc.

Then I would take an external input from web lets say and then based on that input I can say make a led flash on the map.

Appreciate any responses given, thanks!

#sorry if my question is stupid :)


RE: Manipulating an image in python - j.crater - Jan-02-2019

Hello and welcome to the forums!
I am not very familiar with the subject, but I suppose your best bet is to check Pillow module.
Let us know if it suits your needs, and if not, explain further what you need. Good luck!


RE: Manipulating an image in python - z4rn4v - Jan-02-2019

Thanks for replying. Will give it a try. Thanks.