使用Pillow无法将图像调整为更大尺寸?

时间:2014-08-27 00:37:59

标签: python image image-processing resize pillow

似乎调整到较小尺寸(缩略图)的工作正常。但是,调整大小不适用。你知道为什么吗?你会建议什么作为替代方案?

1 个答案:

答案 0 :(得分:2)

.resize()接受元组,无论是向下扩展还是向上扩展的请求

双向工作

>>> from PIL import Image                                  # .INIT
>>> im = Image.open( "ColorLookUpTABLE___TEST_CHART.png" ) # .GET 258,200 [px]
>>> imB = im.resize( ( 516, 400 ) )                        # .SET 516,400 [px] a double
>>> imB                                                    # .CHK instance
<PIL.Image.Image image mode=P size=516x400 at 0x19D9968>
>>> imB.show()                                             # .GUI shown

enter image description here