PIL | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

PIL

How we can resize an image without using functions in python3???

24th Jan 2018, 1:44 PM
یاسر رضایی دینانی
یاسر رضایی دینانی - avatar
1 Answer
0
basewidth = 300 #width, subject to change img = Image.open(‘fullsized_image.jpg') wpercent = (basewidth / float(img.size[0])) hsize = int((float(img.size[1]) * float(wpercent))) img = img.resize((basewidth, hsize), PIL.Image.ANTIALIAS) img.save(‘resized_image.jpg')
9th Apr 2018, 11:20 AM
Sahil Saluja
Sahil Saluja - avatar