imagesetthickness

(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)

imagesetthickness设定画线的粗细

说明

imagesetthickness(GdImage $image, int $thickness): bool

imagesetthickness() 将绘制矩形、多边形、圆弧等绘制的线条粗细设置为 thickness 像素。

参数

image

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

thickness

粗细,以像素为单位。

返回值

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

更新日志

版本 说明
8.0.0 image 现在需要 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);
?>

以上例程的输出类似于:

示例输出:imagesetthickness()

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top