PHP/Graphics Image/imagecolorexact

Материал из Web эксперт
Версия от 07:05, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Color-retrieval functions could be combined into a custom function

 
<?php
    function getcolor($img, $red, $green, $blue) {
        $color = imagecolorexact($img, $red, $green, $blue);
        if($color == -1) {
            $color = imagecolorallocate($img, $red, $green, $blue);
            if($color == -1) {
                $color = imagecolorclosest($img, $red, $green, $blue);
            }
        }
        return $color;
    }
?>