PHP imagecolorexactalpha 图像GD库函数

  • 定义和用法

    imagecolorexactalpha - 取得指定的颜色加透明度的索引值
  • 版本支持

    PHP4 PHP5 PHP7
    支持 支持 支持
  • 语法

    imagecolorexactalpha ( resource $image , int $red , int $green , int $blue , int $alpha )
    
    imagecolorexactalpha() 返回图像调色板中指定颜色加透明度的索引值。
  • 参数

    参数 必需的 描述
    image 由图象创建函数(例如imagecreatetruecolor())返回的图象资源。
    red
    green 绿
    blue
    alpha 介于0和127之间的值。0表示完全不透明,而127表示完全透明。 colors参数是0到255之间的整数或0x00到0xFF之间的十六进制。
  • 返回值

    返回图像调色板中指定颜色加透明度的索引值。 如果颜色不在图像的调色板中,返回 -1。
  • 示例

    // Setup an image
    $im = imagecreatefrompng('./ajax.png');
    
    $colors   = Array();
    $colors[] = imagecolorexactalpha($im, 255, 0, 0, 0);
    $colors[] = imagecolorexactalpha($im, 0, 0, 0, 127);
    $colors[] = imagecolorexactalpha($im, 255, 255, 255, 55);
    $colors[] = imagecolorexactalpha($im, 100, 255, 52, 20);
    
    print_r($colors);
    
    // Free from memory
    imagedestroy($im);
    
    以上示例输出:
    
    Array
    (
        [0] => 16711680
        [1] => 2130706432
        [2] => 939524095
        [3] => 342163252
    )
    
    
    注意: 此函数需要 GD 2.0.1 或更高版本(推荐 2.0.28 及更高版本)。
  • 相关函数

    imagecolorclosestalpha() - 取得与指定的颜色加透明度最接近的颜色