Как я могу задать цвет для распределения изображений?


У меня есть переменная PHP, которая содержит информацию о цвете. Например $text_color = "ff90f3". Теперь я хочу придать этот цвет imagecolorallocate. imagecolorallocate работает следующим образом:

imagecolorallocate($im, 0xFF, 0xFF, 0xFF);

Итак, я пытаюсь сделать следующее:

$r_bg = bin2hex("0x".substr($text_color,0,2));
$g_bg = bin2hex("0x".substr($text_color,2,2));
$b_bg = bin2hex("0x".substr($text_color,4,2));
$bg_col = imagecolorallocate($image, $r_bg, $g_bg, $b_bg);

Это не работает. Почему? Я пробую это также без bin2hex, это тоже не сработало. Кто-нибудь может мне в этом помочь?

Author: Roman, 2010-06-02

3 answers

Использовать hexdec() (исключение : hexdec("a0"))

Http://fr2.php.net/manual/en/function.hexdec.php

 5
Author: Serty Oan, 2010-06-02 12:32:02

Из http://forums.devshed.com/php-development-5/gd-hex-resource-imagecolorallocate-265852.html

function hexColorAllocate($im,$hex){
    $hex = ltrim($hex,'#');
    $a = hexdec(substr($hex,0,2));
    $b = hexdec(substr($hex,2,2));
    $c = hexdec(substr($hex,4,2));
    return imagecolorallocate($im, $a, $b, $c); 
}

Использование

$img = imagecreatetruecolor(300, 100);
$color = hexColorAllocate($img, 'ffff00');
imagefill($img, 0, 0, $color); 

Цвет может быть передан как шестнадцатеричный ffffff или как #ffffff

 7
Author: Timo Huovinen, 2014-06-16 14:18:53
function hex2RGB($hexStr, $returnAsString = false, $seperator = ',') {
    $hexStr = preg_replace("/[^0-9A-Fa-f]/", '', $hexStr); // Gets a proper hex string
    $rgbArray = array();
    if (strlen($hexStr) == 6) { //If a proper hex code, convert using bitwise operation. No overhead... faster
        $colorVal = hexdec($hexStr);
        $rgbArray['red'] = 0xFF & ($colorVal >> 0x10);
        $rgbArray['green'] = 0xFF & ($colorVal >> 0x8);
        $rgbArray['blue'] = 0xFF & $colorVal;
    } elseif (strlen($hexStr) == 3) { //if shorthand notation, need some string manipulations
        $rgbArray['red'] = hexdec(str_repeat(substr($hexStr, 0, 1), 2));
        $rgbArray['green'] = hexdec(str_repeat(substr($hexStr, 1, 1), 2));
        $rgbArray['blue'] = hexdec(str_repeat(substr($hexStr, 2, 1), 2));
    } else {
        return false; //Invalid hex color code
    }
    return $returnAsString ? implode($seperator, $rgbArray) : $rgbArray; // returns the rgb string or the associative array
}
 0
Author: Andy Xiao, 2016-03-07 00:01:26