Pgmagick blur() 方法 – Python
blur()函数是 Pgmagick 库中的一个内置函数,用于为图像添加模糊滤镜。该函数在成功时返回真值。
Syntax:
Parameters: This function accept two parameters as mentioned above and described below:
- radius:This parameter stores the value of the blur radius.
- sigma: It is an optional parameter which stores the sigma of the object.
Return Value: This function returns the Pgmagick object with image added.
输入图像:
示例 1:
blur( radius, sigma )
输出:
示例 2:
from pgmagick import Image, DrawableCircle, DrawableText
from pgmagick import Geometry, Color
# draw the image of dimension 600 * 600
img = Image('input.png')
# invoke blur function with radius 4 and sigma 6
img.blur(4, 6)
# invoke write function along with filename
img.write('2_a.png')
输出:
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。