📜  Pgmagick solarize() 方法 – Python

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

Pgmagick solarize() 方法 – Python

solarize()函数是 Pgmagick 库中的一个内置函数,用于否定高于阈值级别的所有像素。该函数在成功时返回真值。

输入图像:

示例 1:

Python3
solarize(thresholdLevel)


Python3
from pgmagick import Image, DrawableCircle, DrawableText
from pgmagick import Geometry, Color
 
# draw the image of dimension 600 * 600
img = Image('input.png')
 
# invoke solarize function with factor as 60
img.solarize(60)
 
# invoke write function along with filename
img.write('2_a.png')


输出:

示例 2:

Python3

# 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 size function with factor as 10
im.solarize(10)
 
# invoke write function along with filename
im.write('1_b.png')

输出: