调整Pil图像大小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了调整Pil图像大小相关的知识,希望对你有一定的参考价值。
def resize(im,percent): """ retaille suivant un pourcentage 'percent' """ w,h = im.size return im.resize(((percent*w)/100,(percent*h)/100)) def resize2(im,pixels): """ retaille le coté le plus long en 'pixels' (pour tenir dans une frame de pixels x pixels) """ (wx,wy) = im.size rx=1.0*wx/pixels ry=1.0*wy/pixels if rx>ry: rr=rx else: rr=ry return im.resize((int(wx/rr), int(wy/rr)))
以上是关于调整Pil图像大小的主要内容,如果未能解决你的问题,请参考以下文章