GmagickDraw::setstrokecolor()函數是PHP中的內置函數,用於設置用於描畫對象輪廓的顏色。
用法:
public GmagickDraw::setstrokecolor( $color ) : GmagickDraw
參數:該函數接受單個參數$color,該參數用於保存顏色值。
返回值:成功時,此函數返回GmagickDraw對象。
以下示例程序旨在說明PHP中的GmagickDraw::setstrokecolor()函數:
程序1:
<?php
// require_once('path/vendor/autoload.php');
// Create an GmagickDraw object
$draw = new \GmagickDraw ();
// Set stroke opacity
$draw->setStrokeOpacity(1);
// Set stroke color
$draw->setStrokeColor('Black');
// Set stroke opacity
$draw->setStrokeOpacity(0.8);
// Set stroke width
$draw->setStrokeWidth(10);
// Set Stroke Line Join
$draw->setStrokeLineJoin(Gmagick::LINEJOIN_ROUND);
// Set Fill Color
$draw->setFillColor('lightgreen');
// Set Stroke Miter Limit
$draw->setStrokeMiterLimit(40 * 12);
$points = [
['x' => 50 * 6, 'y' => 10 * 5],
['x' => 20 * 7, 'y' => 30 * 5],
['x' => 60 * 8, 'y' => 50 * 5],
['x' => 70 * 3, 'y' => 15 * 5],
];
// Draw a polygon
$draw->polygon($points);
// Create a new Gmagick object
$image = new \Gmagick();
// Set image dimensions
$image->newImage(500, 300, 'white');
// Set the image format
$image->setImageFormat("png");
// Draw the image
$image->drawImage($draw);
header("Content-Type: image/png");
// Display the image
echo $image->getImageBlob();
?>
輸出:
程序2:
<?php
// require_once('path/vendor/autoload.php');
// Create an GmagickDraw object
$draw = new \GmagickDraw ();
// Set the stroke color
$draw->setStrokeColor('Green');
// Set Fill Color
$draw->setFillColor('Red');
// Set the stroke width
$draw->setStrokeWidth(7);
// Draw the rectangle
$draw->rectangle(40, 30, 200, 260);
// Create new Gmagick object
$image = new \Gmagick();
// Set the image dimension
$image->newImage(300, 300, 'White');
// Set the image format
$image->setImageFormat("png");
// Draw the image
$image->drawImage($draw);
header("Content-Type: image/png");
// Display the image
echo $image->getImageBlob();
?>
輸出:
參考: http://php.net/manual/en/gmagickdraw.setstrokecolor.php
相關用法
- PHP ImagickDraw setStrokeColor()用法及代碼示例
- PHP GmagickDraw arc()用法及代碼示例
- PHP GmagickDraw getstrokewidth()用法及代碼示例
- PHP GmagickDraw getfontweight()用法及代碼示例
- PHP GmagickDraw getstrokeopacity()用法及代碼示例
- PHP GmagickDraw getfontsize()用法及代碼示例
- PHP GmagickDraw setfont()用法及代碼示例
- PHP GmagickDraw settextencoding()用法及代碼示例
- PHP GmagickDraw getfont()用法及代碼示例
- PHP GmagickDraw setfontsize()用法及代碼示例
- PHP GmagickDraw gettextdecoration()用法及代碼示例
- PHP GmagickDraw rectangle()用法及代碼示例
- PHP GmagickDraw gettextencoding()用法及代碼示例
- PHP GmagickDraw rotate()用法及代碼示例
- PHP GmagickDraw getfontstyle()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | GmagickDraw setstrokecolor() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。