All posts by Tuna Peyo

RGB channels

Mar 16,22

Each pixels is (usually) a combination of red, green, and blue mixed together in various amounts. We can get these …

Read More

Use filters

Mar 16,22

The ImageFilter module is used to apply filters to images. There are plenty of filters available in Pillow, some of …

Read More

Convert image to a new format

Mar 16,22

We can also use the save() method to specify a different format in which we want to convert the image. …

Read More

Save images

Mar 16,22

To save a modified image, we can use the save() method. This methods accepts a single parameter – the name …

Read More

Rotate an image

Mar 16,22

To rotate an image, the rotate() method can be used. This method accepts a single parameter – the angle in …

Read More

Resizing an image

Mar 16,22

To resize an image in Pillow, the resize() method is used. This method takes two parameters – namely, new width …

Read More
Geek University 2022