欢迎访问服务器技术网-www.fuwuqijishu.com

PHP imagealphablending – 设定图像的混色模式

PHP fuwuqijishu 2年前 (2022-09-04) 78次浏览 0个评论 扫描二维码

PHP imagealphablending – 设定图像的混色模式

PHP 图像处理

imagealphablending — 设定图像的混色模式。

语法

bool imagealphablending ( resource $image , bool $blendmode )

imagealphablending() 允许在真彩色图像上使用两种不同的绘画模式。

在混色(blending)模式下,alpha 通道色彩成分提供给所有的绘画函数,例如 imagesetpixel() 决定底层的颜色应在何种程度上被允许照射透过。作为结果,GD 自动将该点现有的颜色和画笔颜色混合,并将结果储存在图像中。结果的像素是不透明的。

在非混色模式下,画笔颜色连同其 alpha 通道信息一起被拷贝,替换掉目标像素。混色模式在画调色板图像时不可用。

如果 blendmode 为 TRUE,则启用混色模式,否则关闭。成功时返回 TRUE, 或者在失败时返回 FALSE。

参数


  • image

    由图象创建函数(例如imagecreatetruecolor())返回的图象资源。

  • blendmode

    不管是否启用混色模式。真彩色图像默认为 True, 否则为 FALSE。

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE。

实例

<?php
//  创建图像
$im = imagecreatetruecolor(100, 100);

// 启用混色模式
imagealphablending($im, true);

// 画一个正方形
imagefilledrectangle($im, 30, 30, 70, 70, imagecolorallocate($im, 255, 0, 0));

// 输出
header('Content-type: image/png');

imagepng($im);
imagedestroy($im);
?>

PHP 图像处理

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2119.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900