resize()函数是Pgmagick库中的内置函数,用于调整图像大小。成功时该函数返回真实值。
用法:
resize('widthxheight')
参数:此函数接受格式为‘widthxheight’的宽度和高度字符串,该字符串描述了最终图像的尺寸。
返回值:此函数返回添加了图像的Pgmagick对象。
输入图片:
范例1:
# 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')
输出:
范例2:
# import library
from pgmagick import Image, DrawableCircle, DrawableText
from pgmagick import Geometry, Color
# Draw image of dimension 600 * 600 having background green
im = Image(Geometry(600, 600), Color("# 32CD32"))
# invoke DrawableCircle() function
circle = DrawableCircle(100, 100, 300, 20)
# invoke draw() function
im.draw(circle)
# set font size to 40px
im.fontPointsize(40)
# invoke DrawableText() function
text = DrawableText(250, 450, "GeeksForGeeks")
# invoke draw() function
im.draw(text)
# invoke resize() function
im.resize('500x500')
# invoke write function along with filename
im.write('1_b.png')
输出:
相关用法
- Python Pgmagick equalize()用法及代码示例
- Python Pgmagick gamma()用法及代码示例
- Python Pgmagick sharpen()用法及代码示例
- Python Pgmagick enhance()用法及代码示例
- Python Pgmagick contrast()用法及代码示例
- Python Pgmagick shade()用法及代码示例
- Python Pgmagick shear()用法及代码示例
- Python Pgmagick emboss()用法及代码示例
- Python Pgmagick wave()用法及代码示例
- Python Pgmagick edge()用法及代码示例
- Python Pgmagick write()用法及代码示例
- Python Pgmagick despeckle()用法及代码示例
- Python Pgmagick solarize()用法及代码示例
- Python Pgmagick spread()用法及代码示例
- Python Pgmagick charcoal()用法及代码示例
- Python Pgmagick implode()用法及代码示例
- Python Pgmagick blur()用法及代码示例
- Python Pgmagick swirl()用法及代码示例
- Python Pgmagick flip()用法及代码示例
- Python Pgmagick flop()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 Pgmagick resize() method – Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。