Extract Metadata From an Image

Introduction

Metadata is "data that provides information about other data", but not the content of the data. There are many types of metadata. (Wikipedia)

Metadata is data about data. (me)

Project #1

Collect several PNG image files. (family and friends?) Read/display their metadata.

What about other image file formats?

Project #2

Select two other file types (extensions). Collect several files of the file types, and display their metadata.

Links

Python: Extract Metadata from PNG

10 Types of Image File Extensions and When to Use Them

Pillow
Pillow documentation - Image file formats
Pillow documentation - PNG

In Python, how do I read the exif data for an image?