PythonTutorials.net
Toggle Menu
Home
Online Python Compiler
Tutorials
Django
Flask
Scikit-Learn
NumPy
NLTK
Pillow
Blog
All Posts
Image Processing with Pillow
Test your skills in image transformations,filtering,and format conversions using Pillow.
1. Which module must be imported from PIL to work with images in Pillow?
PIL
pillow
Image
img
2. Which of the following are valid image modes in Pillow that support transparency?
RGB
RGBA
LA
CMYK
PA
3. Pillow is a fork of the Python Imaging Library (PIL).
True
False
4. What is the name of the function in the Image module used to open an image file?
5. What is the default color mode when opening a standard JPEG image with Pillow?
L
RGB
RGBA
CMYK
6. Which methods can be used to resize an image in Pillow?
resize()
thumbnail()
scale()
resample()
7. The 'thumbnail()' method modifies the original image object in place.
True
False
8. What is the abbreviation for the image mode that represents grayscale (luminance)?
9. Which ImageFilter constant is used for sharpening an image?
ImageFilter.SHARPEN
ImageFilter.ENHANCE
ImageFilter.SHARP
ImageFilter.BLUR
10. Which image file formats are supported by Pillow without additional libraries?
JPEG
SVG
PNG
TIFF
PDF
11. Pillow's ImageDraw module can be used to draw text on an image.
True
False
12. What does the 'convert()' method of an Image object return?
A new Image object
None (modifies in place)
A pixel array
A file path
13. Which image modes support 8-bit color depth?
L
P
RGB
1
14. The JPEG file format supports transparency via an alpha channel.
True
False
15. What is the method name to apply a filter (e.g., blur, sharpen) to an image?
16. Which method is used to crop an image in Pillow?
cut()
crop()
trim()
slice()
17. Which are valid resampling filters for the 'resample' parameter in resize()?
Image.NEAREST
Image.BILINEAR
Image.BICUBIC
Image.SMOOTH
18. Pillow can read and write animated GIFs.
True
False
19. What is the name of the object created to draw on images (from PIL.ImageDraw)?
20. Which color space conversion is NOT directly supported by Image.convert()?
RGB to CMYK
RGB to HSV
RGB to Grayscale
RGB to RGBA
Reset
Answered 0 of 0 — 0 correct