Php's method of converting colors into their reversed colors

Source: Internet
Author: User
This article mainly introduces how php converts colors into their reversed colors, and involves related techniques for operating color values in php, for more information, see the example in this article. Share it with you for your reference. The specific analysis is as follows:

This php code converts a color to the opposite color encoding, for example, white to black, and blue to yellow.

Function color_inverse ($ color) {$ color = str_replace ('#', '', $ color); if (strlen ($ color )! = 6) {return '000000';} $ rgb = ''; for ($ x = 0; $ x <3; $ x ++) {$ c = 255-hexdec (substr ($ color, (2 * $ x), 2); $ c = ($ c <0 )? 0: dechex ($ c); $ rgb. = (strlen ($ c) <2 )? '0 '. $ c: $ c;} return '#'. $ rgb;} // example: // black-> whiteprint color_inverse ('#000000 '); // --> returns # ffffff // blue-> yellowprint color_inverse ('# 0000FF'); // --> # FFFF00

I hope this article will help you with php 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.