PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities.
ImageChops.screen() method –
This method is used to superimpose two inverted images on top of each other.
Syntax: ImageChops.screen(image1, image2)
Parameters:
image1 first image
image2 second image
Return Value: An Image
Python3
from PIL import Image, ImageChops
im = Image. open (r "C:\Users\Admin\Pictures\images.png" )
im2 = Image. open (r "C:\Users\Admin\Pictures\download.PNG" )
im3 = ImageChops.screen(im, im2)
im3.show()
|
Output:

ImageChops.offset() method –
This method returns a copy of the image where data has been offset by the given distances. Data wraps around the edges. If yoffset is omitted, it is assumed to be equal to xoffset.
Syntax: ImageChops.offset(image1, xoffset, yoffset = None)
Parameters:
image: It is the image on which offset is provided
xoffset: the horizontal distance
yoffset: it is the vertical distance, if omitted both distance are set to same.
Return value: Copy of the original image
Python3
from PIL import Image, ImageChops
im = Image. open (r "C:\Users\Admin\Pictures\images.png" )
im2 = Image. open (r "C:\Users\Admin\Pictures\download.PNG" )
im3 = ImageChops.offset(im, 140 )
im3.show()
|
Output:
