The Pillow package gives you the ability to extract Exif (Exchangeable Image File Format) metadata from images. You can get a lot of information about your images via the Exif data. However, there are some key data points that are more useful than others. For those pieces of data, it's nice to create a GUI […]
My Kickstarter for my latest book, Pillow: Image Processing with Python is ending in 8 days. You should check it out and learn how you can edit photos with Python! You will learn about the following topics in this book: Chapter 1 - Pillow Basics Chapter 2 - Colors Chapter 3 - Getting Image Metadata […]
This week we welcome Leodanis Pozo Ramos (@lpozo78) as our PyDev of the Week! Leodanis is a contributor and author for Real Python. You can see some of his projects over on Github or see what he's up to on his own website. Let's spend a few moments getting to know Leodanis better! Can you […]
When you are creating graphical user interfaces (GUIs), you will often find that you need to create more than one window. In this tutorial, you will learn how to create two windows with PySimpleGUI. PySimpleGUI is one of the easiest Python GUIs to get started with. It wraps other Python GUIs and gives them a […]
This week we welcome Claudia Regio (@ClaudiaRegio) as our PyDev of the Week! Claudia is a program manager for Python Data Science with a focus on Python Notebooks in Visual Studio Code at Microsoft. She also blogs on Microsoft's dev blog. Let's spend some time getting to know Claudia better! Can you tell us a […]
Did you know that you can get EXIF data from JPG image files using the Python programming language? You can use Pillow, the Python Imaging Library's friendly fork to do so. You can read an article about that on this website if you want to. Here is some example code for getting regular EXIF data […]