blur()函數是Pgmagick庫中的內置函數,用於向圖像添加模糊濾鏡。成功時該函數返回真實值。
用法:
blur( radius, sigma )
參數:該函數接受上述和以下所述的兩個參數:
- radius:此參數存儲模糊半徑的值。
- sigma:它是一個可選參數,用於存儲對象的sigma。
返回值:此函數返回添加了圖像的Pgmagick對象。
輸入圖片:
範例1:
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')
輸出:
範例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 blur function with radius 5 and sigma 8
im.blur(5, 8)
# 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 swirl()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 Pgmagick blur() method – Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。