Voici une function très utile pour convertir une couleur héxa en rgb ou rgba ( avec opacité ).
01 | function convertColor( $color ){ |
02 | #convert hexadecimal to RGB |
03 | if (! is_array ( $color ) && preg_match( "/^[#]([0-9a-fA-F]{6})$/" , $color )){ |
05 | $hex_R = substr ( $color ,1,2); |
06 | $hex_G = substr ( $color ,3,2); |
07 | $hex_B = substr ( $color ,5,2); |
08 | $RGB = hexdec( $hex_R ). "," .hexdec( $hex_G ). "," .hexdec( $hex_B ); |
13 | #convert RGB to hexadecimal |
15 | if (! is_array ( $color )){ $color = explode ( "," , $color );} |
17 | foreach ( $color as $value ){ |
18 | $hex_value = dechex ( $value ); |
19 | if ( strlen ( $hex_value )<2){ $hex_value = "0" . $hex_value ;} |
Voici comment l'utilisé :
Conversion hexadécimal => RGB
3 | echo convertColor( $couleur ); |
Ce qui renverra cette couleur en rgb que voici :
240,240,240
Conversion RGB => hexadecimal
1 | $couleur = "85,170,102" ; |
3 | echo convertColor( $couleur ); |
Ce qui renverra l'héxa suivant :
C'est pratique aussi si vous avez une opacité a faire avec votre bgcolor du thème du style:
3 | $opacitengcolor = convertColor( $couleur ); |
5 | ce qui renverra par exemple pour un background en rgba : |
7 | background: rgba( $opacitengcolor , 0.5); |
9 | vous aurez une opacité à 0.5 |
|