Método Pgmagick solarize() – Python

La función solarize() es una función incorporada en la biblioteca Pgmagick que se usa para negar todos los píxeles por encima del nivel de umbral. La función devuelve el valor verdadero en caso de éxito. 

Sintaxis: 

solarize(thresholdLevel)

Parámetros: esta función acepta un único parámetro de nivel de umbral que se utiliza para especificar el nivel de umbral entre 0 y 100.
Valor devuelto: esta función devuelve el objeto Pgmagick con una imagen añadida. 
 

Imagen de entrada:  

Ejemplo 1:  

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')

Producción: 

Ejemplo 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')

Producción: 

Publicación traducida automáticamente

Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *