Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

image processing and resizing with python

image = Image.open('demo_image.jpg')

image_rot_90 = image.rotate(90)
image_rot_90.save('image_rot_90.jpg')

image_rot_180 = image.rotate(180)
image_rot_180.save('image_rot_180.jpg')
Source by auth0.com #
 
PREVIOUS NEXT
Tagged: #image #processing #resizing #python
ADD COMMENT
Topic
Name
3+1 =