1. Introduction

1.1. PC-Pillow

These docs will help you with your python coding with the pillow library.
They provide some brief sample code and a library of example images.
See the pillow documentation for full syntax.

1.2. Key references:


1.3. Pillow Introduction

Pillow is a python package to manipulate images.
You can use the library to create thumbnails, convert between file formats, print images.
The library contains basic image processing, image resizing, rotation and transforms.

1.4. Install or update pillow

  • To install pillow, check the output from typing in the VSCode terminal:

pip install pillow
  • To check the installed version numbers and other info about pillow, check the output from typing in the VSCode terminal:

pip show pillow
  • To update pillow, to the latest version, run pip install with the –upgrade or -U option.

pip install --upgrade pillow