📜  Pgmagick resize() 方法 – Python

📅  最后修改于: 2022-05-13 01:54:55.988000             🧑  作者: Mango

Pgmagick resize() 方法 – Python

resize()函数是 Pgmagick 库中的一个内置函数,用于调整图像大小。该函数在成功时返回真值。

输入图像:

示例 1:
resize('widthxheight')

输出:

示例 2:

# import library
from pgmagick import Image, DrawableCircle, DrawableText
from pgmagick import  Geometry, Color
  
# draw the image of dimension 600 * 600
img = Image('input.png')
  
# invoke resize() function
img.resize('100x100')
  
# invoke write function along with filename
img.write('2_a.png')

输出: