AutomateTheBoringStuff.Ch17 package¶
Subpackages¶
Submodules¶
AutomateTheBoringStuff.Ch17.P1_imageFundamentals module¶
Image fundamentals
This program uses PIL.ImageColor.getcolor()
to convert color names to RGBA values.
AutomateTheBoringStuff.Ch17.P2_manipulatingImages module¶
Manipulating images
This program uses PIL.Image
to manipulate digital images.
AutomateTheBoringStuff.Ch17.P3_resizeAndAddLogo module¶
Resize and add logo
Resizes all images in current working directory to fit in a 300x300 square, then adds
./catlogo.png
to the lower-right corner.
AutomateTheBoringStuff.Ch17.P4_drawingOnImages module¶
Drawing on images
This program uses PIL.Image
and PIL.ImageDraw
to draw on digital images.