Learn Before
Concept
ImageDraw Class (Pillow)
The ImageDraw class allows for generating simple 2D graphics. It can be used for creating new images, or annotating/retouching existing images. The central function of an ImageDraw object is the ImageDraw.Draw() function. This creates an object that can be used for drawing inside an image given through an argument.
d = ImageDraw.Draw(image)
0
1
Updated 2021-08-23
Tags
Python Programming Language
Data Science