PIL es la biblioteca de imágenes de Python que proporciona al intérprete de Python capacidades de edición de imágenes. El ImageColor
módulo contiene tablas de colores y convertidores de especificadores de color de estilo CSS3 a tuplas RGB. Este módulo es utilizado por PIL.Image.Image.new()
y el ImageDraw
módulo, entre otros.
ImageColor.getrgb()
Convierta una string de color en una tupla RGB. Si la string no se puede analizar, esta función genera una ValueError
excepción.
Sintaxis: PIL.ImageColor.getrgb(color)
Parámetros:
color – Una string de colorDevuelve: (rojo, verde, azul [, alfa])
# importing Image module from PIL package from PIL import Image, ImageColor # using getrgb im = ImageColor.getrgb("orange") print(im) im1 = ImageColor.getrgb("red") print(im1)
Producción:
(255, 165, 0) (255, 0, 0)
Otro Ejemplo: – Aquí se usaron diferentes colores.
# importing Image module from PIL package from PIL import Image, ImageColor # using getrgb im = ImageColor.getrgb("blue") print(im) im1 = ImageColor.getrgb("yellow") print(im1)
Producción:
(0, 0, 255) (255, 255, 0)
Publicación traducida automáticamente
Artículo escrito por Sunitamamgai y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA