Python implements color rgb and hex conversion functions

Source: Internet
Author: User
This article mainly introduces python's function of converting colors rgb and hex into hex values, which is of great practical value, for more information about how to convert colors from rgb to hex, see the example in this article. Share it with you for your reference. The specific analysis is as follows:

The following python code provides two functions to convert the color represented by rgb to the hex value, hex to rgb, and rgb to a three-digit ancestor, for example (128,255, 28 ), hex is numeric 876645

Def hex2rgb (hexcolor): rgb = [(hexcolor> 16) & 0xff, (hexcolor> 8) & 0xff, hexcolor & 0xff] return rgbdef rgb2hex (rgbcolor): r, g, B = rgbcolor return (r <16) + (g <8) + B

Call method:

Print ("www.jb51.net rgb2hex (128,128, 18) = % s" % rgb2hex (128,128, 18) print ("www.jb51.net rgb2hex (8421394) = % s "% hex2rgb (8421394 ))

The output result is as follows:

Www.jb51.net rgb2hex (128,128, 18) = 8421394www.jb51.net rgb2hex (8421394) = [128,128, 18]

I hope this article will help you with Python programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.