Python Forum
Converting string to hex triplet
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Converting string to hex triplet
#5
PIL has a colormap dictionary.
from PIL import ImageColor

def print_color_info(name):
    color = ImageColor.colormap[name]
    print(f'{name} = {color}, RGB = {color[1:3]},{color[3:5]},{color[5:7]}')

print_color_info('red')
print_color_info('green')
print_color_info('blue')
print_color_info('orange')
print_color_info('yellow')
Output:
red = #ff0000, RGB = ff,00,00 green = #008000, RGB = 00,80,00 blue = #0000ff, RGB = 00,00,ff orange = #ffa500, RGB = ff,a5,00 yellow = #ffff00, RGB = ff,ff,00
Reply


Messages In This Thread
Converting string to hex triplet - by menator01 - Aug-03-2020, 06:10 AM
RE: Converting string to hex triplet - by perfringo - Aug-03-2020, 06:17 AM
RE: Converting string to hex triplet - by bowlofred - Aug-03-2020, 06:25 AM
RE: Converting string to hex triplet - by deanhystad - Aug-03-2020, 01:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Formatting DateTime string and and converting it from AM/PM to 24 hours tester_V 2 254 Jun-08-2024, 05:16 PM
Last Post: tester_V
  Converting '1a2b3c' string to Dictionary PythonNoobLvl1 6 2,062 May-13-2022, 03:44 PM
Last Post: deanhystad
  Need help converting string to int dedesssse 7 2,885 Jul-07-2021, 09:32 PM
Last Post: deanhystad
  Beautify dictionary without converting to string. sharoon 6 3,577 Apr-11-2021, 08:32 AM
Last Post: buran
  how to deal with problem of converting string to int usthbstar 1 2,113 Jan-05-2021, 01:33 PM
Last Post: perfringo
  Triplet Combinations of All Values quest 2 2,121 Nov-05-2020, 09:22 AM
Last Post: quest
  converting string object inside a list into an intiger bwdu 4 2,795 Mar-31-2020, 10:36 AM
Last Post: buran
  Converting query string as a condition for filter data. shah_entrance 1 1,894 Jan-14-2020, 09:22 AM
Last Post: perfringo
  Converting a patterned string or text into excel table soup1987 1 2,226 Oct-03-2019, 01:37 AM
Last Post: Larz60+
  converting array to and from string in python 3.7.2 srm 5 6,478 Jul-03-2019, 01:11 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020