首页 话题 小组 问答 好文 用户 我的社区 域名交易 唠叨

[函数]imagesetthickness()函数—用法及示例

发布于 2025-04-27 14:48:24
0
21

适用PHP版本(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)


说明

imagesetthickness(GdImage $image, int $thickness): bool
imagesetthickness() 将绘制矩形、多边形、圆弧等绘制的线条粗细设置为 thickness 像素。


参数
image
由图象创建函数(例如imagecreatetruecolor())返回的 GdImage 对象。

thickness
粗细,以像素为单位。

返回值
成功时返回 true, 或者在失败时返回 false。

更新日志

版本说明
8.0.0image 现在需要 GdImage 实例;之前需要有效的 gd resource
示例 ¶
示例 #1 imagesetthickness() 示例
<?php
// Create a 200x100 image
$im = imagecreatetruecolor(200, 100);
$white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF);
$black = imagecolorallocate($im, 0x00, 0x00, 0x00);

// Set the background to be white
imagefilledrectangle($im, 0, 0, 299, 99, $white);

// Set the line thickness to 5
imagesetthickness($im, 5);

// Draw the rectangle
imagerectangle($im, 14, 14, 185, 85, $black);

// Output image to the browser
header('Content-Type: image/png');

imagepng($im);
imagedestroy($im);
?>
以上示例的输出类似于:

评论
一个月内的热帖推荐
啊龙
Lv.1普通用户

9545

帖子

31

小组

3242

积分

赞助商广告
站长交流