(PHP 4 >= 4.3.2, PHP 5)
imagesavealpha — 设置标记以在保存 PNG 图像时保存完整的 alpha 通道信息(与单一透明色相反)
$image
, bool $saveflag
)imagesavealpha() 设置标记以在保存 PNG 图像时保存完整的 alpha 通道信息(与单一透明色相反)。
要使用本函数,必须将 alphablending 清位(imagealphablending($im, false))。
不是所有的浏览器都支持 alpha 通道,如果在你的浏览器上碰到问题,试着用兼容 alpha 通道的浏览器(例如最新版的 Mozilla)重新加载脚本。
Note: 此函数需要 GD 2.0.1 或更高版本(推荐 2.0.28 及更高版本)。
image
由图象创建函数(例如 imagecreatetruecolor())返回的图象资源。
saveflag
Whether to save the alpha channel or not. Default to FALSE
.
成功时返回 TRUE
, 或者在失败时返回 FALSE
.
Example #1 imagesavealpha() example
<?php
// Load a png image with alpha channels
$png = imagecreatefrompng('./alphachannel_example.png');
// Do required operations
// Turn off alpha blending and set alpha flag
imagealphablending($png, false);
imagesavealpha($png, true);
// Output image to browser
header('Content-Type: image/png');
imagepng($png);
imagedestroy($png);
?>
Note: 此函数需要 GD 2.0.1 或更高版本(推荐 2.0.28 及更高版本)。