Pillow

How to Rotate and Mirror Images with Python and Pillow (Video)

In this video tutorial, you will learn how to rotate and mirror images with Python and the Pillow package. This is also known as transposing an image. Want to learn more about working with images with Python? Check out my book: Pillow: Image Processing with Python Leanpub – eBooks (epub, mobi and PDF) Gumroad – …

How to Rotate and Mirror Images with Python and Pillow (Video) Read More »

Python 101 – How to Work with Images

The Python Imaging Library (PIL) is a 3rd party Python package that adds image processing capabilities to your Python interpreter. It allows you to process photos and do many common image file manipulations. The current version of this software is in Pillow, which is a fork of the original PIL to support Python 3. Several …

Python 101 – How to Work with Images Read More »

An Intro to Image Processing with Wand / ImageMagick and Python

ImageMagick is an open-source tool that you can use to create, edit, compose, or convert digital images. It supports over 200 image formats. According to its website, ImageMagick can resize, flip, mirror, rotate, distort, shear, and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses, and Bézier curves. For …

An Intro to Image Processing with Wand / ImageMagick and Python Read More »

Creating a Warhol Triptych Image with Pillow and Python

Andy Warhol is a well-known artist who created a famous image where there are multiple copies of the same face but with different background colors. You can do a similar trick with software using Python and the Pillow package. You will also need to have NumPy installed to make this work. Let’s find out how …

Creating a Warhol Triptych Image with Pillow and Python Read More »