= 4.3.0, PHP 5, PHP 7, PHP 8)imagelayereffect — 設(shè)定 alpha 混色標(biāo)志以使用綁定的 libgd 分層效果 說(shuō)明imagelayereffect(resource $image, int $effect">
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
imagelayereffect — 設(shè)定 alpha 混色標(biāo)志以使用綁定的 libgd 分層效果
$image
, int $effect
): bool設(shè)定 alpha 混色標(biāo)志以使用綁定的 libgd 分層效果。
image
由圖象創(chuàng)建函數(shù)(例如imagecreatetruecolor())返回的 GdImage 對(duì)象。
effect
One of the following constants:
IMG_EFFECT_REPLACE
true
to
imagealphablending())
IMG_EFFECT_ALPHABLEND
false
to
imagealphablending())
IMG_EFFECT_NORMAL
IMG_EFFECT_ALPHABLEND
.
IMG_EFFECT_OVERLAY
成功時(shí)返回 true
, 或者在失敗時(shí)返回 false
。
示例 #1 imagelayereffect() example
<?php
// Setup an image
$im = imagecreatetruecolor(100, 100);
// Set a background
imagefilledrectangle($im, 0, 0, 100, 100, imagecolorallocate($im, 220, 220, 220));
// Apply the overlay alpha blending flag
imagelayereffect($im, IMG_EFFECT_OVERLAY);
// Draw two grey ellipses
imagefilledellipse($im, 50, 50, 40, 40, imagecolorallocate($im, 100, 255, 100));
imagefilledellipse($im, 50, 50, 50, 80, imagecolorallocate($im, 100, 100, 255));
imagefilledellipse($im, 50, 50, 80, 50, imagecolorallocate($im, 255, 100, 100));
// Output
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
以上例程的輸出類(lèi)似于: