PIL es la biblioteca de imágenes de Python que proporciona al intérprete de Python capacidades de edición de imágenes. El ImageDraw
módulo proporciona gráficos 2D simples para objetos de imagen. Puede usar este módulo para crear nuevas imágenes, anotar o retocar imágenes existentes y generar gráficos sobre la marcha para uso web.
ImageDraw.Draw.chord()
Igual que arc()
, pero conecta los puntos finales con una línea recta.
Sintaxis: PIL.ImageDraw.Draw.chord(xy, inicio, fin, relleno=Ninguno, contorno=Ninguno)
Parámetros:
xy : cuatro puntos para definir el cuadro delimitador. Secuencia de [(x0, y0), (x1, y1)] o [x0, y0, x1, y1].
contorno : color que se utilizará para el contorno.
relleno : color que se utilizará para el relleno.Devoluciones: una imagen.
# importing image object from PIL import math from PIL import Image, ImageDraw w, h = 220, 190 shape = [(40, 40), (w - 10, h - 10)] # creating new Image object img = Image.new("RGB", (w, h)) # create chord image img1 = ImageDraw.Draw(img) img1.chord(shape, start = 30, end = 200, fill ="# 800080", outline ="red") img.show()
Producción:
Otro ejemplo: aquí usamos diferentes colores para el relleno.
# importing image object from PIL import math from PIL import Image, ImageDraw w, h = 220, 190 shape = [(40, 40), (w - 10, h - 10)] # creating new Image object img = Image.new("RGB", (w, h)) # create chord image img1 = ImageDraw.Draw(img) img1.chord(shape, start = 30, end = 200, fill ="# ffff33", outline ="blue") img.show()
Producción:
Publicación traducida automáticamente
Artículo escrito por Sunitamamgai y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA