3
我想使用Python根據以下2個條件調整任何圖像的大小。當兩邊大於1280時使用Python調整圖像大小
1)如果圖像是橫向,則獲取寬度,如果大於1280
調整圖像寬度爲1280 保持縱橫比。
2)如果圖像是肖像,得到高度,如果大於1280
大小調整高度爲1280 保持縱橫比。
在Python中最好的包裝/方法是什麼?不知道如何使用這個是我看到它的工作原理。
僞代碼:
If image.height > image.width:
size = image.height
If image.height < image.width:
size = image.width
If size > 1280:
resize maintaining aspect ratio
我看着Pillow
(PIL)。
你能解釋一下你的代碼嗎? – kn3l 2015-08-12 11:30:53