PHP imagecolorallocatealpha 图像GD库函数

  • 定义和用法

    imagecolorallocatealpha - 为一幅图像分配颜色 + alpha
  • 版本支持

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

    imagecolorallocatealpha ( resource $image , int $red , int $green , int $blue , int $alpha )
    
    imagecolorallocatealpha() 的行为和 imagecolorallocate() 相同,但多了一个额外的透明度参数 alpha,其值从 0 到 127。0 表示完全不透明,127 表示完全透明。 如果分配失败则返回 FALSE。
  • 参数

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

    颜色标识符或FALSE(如果分配失败)。此函数可能返回布尔值FALSE,但也可能可能返回相等于FALSE的非布尔值。请阅读布尔类型章节以获取更多信息。应使用===运算符来测试此函数的返回值。
  • 示例

    $size = 300;
    $image=imagecreatetruecolor($size, $size);
    
    // something to get a white background with black border
    $back = imagecolorallocate($image, 255, 255, 255);
    $border = imagecolorallocate($image, 0, 0, 0);
    imagefilledrectangle($image, 0, 0, $size - 1, $size - 1, $back);
    imagerectangle($image, 0, 0, $size - 1, $size - 1, $border);
    
    $yellow_x = 100;
    $yellow_y = 75;
    $red_x    = 120;
    $red_y    = 165;
    $blue_x   = 187;
    $blue_y   = 125;
    $radius   = 150;
    
    // allocate colors with alpha values
    $yellow = imagecolorallocatealpha($image, 255, 255, 0, 75);
    $red    = imagecolorallocatealpha($image, 255, 0, 0, 75);
    $blue   = imagecolorallocatealpha($image, 0, 0, 255, 75);
    
    // drawing 3 overlapped circle
    imagefilledellipse($image, $yellow_x, $yellow_y, $radius, $radius, $yellow);
    imagefilledellipse($image, $red_x, $red_y, $radius, $radius, $red);
    imagefilledellipse($image, $blue_x, $blue_y, $radius, $radius, $blue);
    
    // don't forget to output a correct header!
    header('Content-Type: image/png');
    
    // and finally, output the result
    imagepng($image);
    imagedestroy($image);
    $black = imagecolorallocatealpha($im, 0x00, 0x00, 0x00);
    
    以上示例输出:
    gd_7
    
  • 相关函数

    imagecolorallocate() - 为一幅图像分配颜色
    imagecolordeallocate() - 取消图像颜色的分配