In the last chapter, you started with image processing using Pillow. You also used Tkinter for displaying images. In this chapter, you will learn various arithmetic and logical operations on images. You will explore Image, ImageChops, and ImageOps modules in Pillow for implementing arithmetic and logical operations. You will also learn how to use the slide bar in Tkinter to dynamically change the input to the Pillow methods.
Image Module
In the last chapter, you used the open() and show() functions in the Image module of Pillow. In this chapter, you will explore the ...