pgmagick – Agrega texto en imágenes

En este artículo veremos cómo agregar texto a las imágenes usando la biblioteca pgmagick en Python. Podemos hacer esto usando annotate()la función. A veces, necesitamos agregar texto a las imágenes como por ejemplo para su copyright o el nombre de la organización con la que está asociada la imagen.

En este artículo, crearemos una imagen con un texto de fondo verde «GeeksforGeeks» y manipularemos el texto en ella.

# importing library
from pgmagick.api import Image
  
# using image function
img = Image((300, 300), 'green')
img.annotate('GeeksforGeeks')
img.write('GeeksforGeeks.jpg')

Producción :

Ahora, rotaremos el texto a 45 grados.

# importing library
from pgmagick.api import Image
  
img = Image((300, 300), 'green')
  
# annotate function 
img.annotate('GeeksforGeeks', angle = 45)
img.write('geeksforgeeks.png')

Ahora cambiaremos la fuente y el tamaño del texto.

# importing library
from pgmagick.api import Image
  
img = Image((300, 200), 'green')
img.font("/usr/share/fonts/truetype/ttf-japanese-gothic.ttf")
img.font_pointsize(26)
  
# annotate function 
img.annotate('GeeksforGeeks')
img.write('GeeksforGeeks.png')

Producción :

Publicación traducida automáticamente

Artículo escrito por RahulSabharwal 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 *