ImagickDraw::setStrokeDashArray()函數是PHP中的內置函數,用於設置用於描邊路徑的虛線和間隙的模式。在奇數個值的情況下,重複值列表以產生偶數個值。要刪除現有的破折號數組,請傳遞零number_elements參數或空dash_array。
用法:
bool ImagickDraw::setStrokeDashArray( array $dashArray )
參數:該函數接受單個參數$dashArray,該參數保存筆劃破折號。
返回值:成功時此函數返回TRUE。
異常:該函數在錯誤時引發ImagickException。
下麵給出的程序說明了PHP中的ImagickDraw::setStrokeDashArray()函數:
程序1:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the stroke dash array
$draw->setStrokeDashArray([80, 5, 2, 5, 15, 51, ]);
// Get the stroke dash array
$array = $draw->getStrokeDashArray();
print("<pre>".print_r($array, true)."</pre>");
?>
輸出:
Array ( [0] => 80 [1] => 5 [2] => 2 [3] => 5 [4] => 15 [5] => 51 )
程序2:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'black');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the fill color
$draw->setFillColor('black');
// Set the color of stroke
$draw->setStrokeColor('cyan');
// Set the stroke dash array
$draw->setStrokeDashArray([2, 1, 3]);
// Draw a ellipse
$draw->ellipse(400, 100, 150, 70, 60, 900);
// Render the draw commands
$imagick->drawImage($draw);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
輸出:
參考: https://www.php.net/manual/en/imagickdraw.setstrokedasharray.php
相關用法
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw arc()用法及代碼示例
- PHP ImagickDraw setFontSize()用法及代碼示例
- PHP ImagickDraw setStrokeOpacity()用法及代碼示例
- PHP ImagickDraw setGravity()用法及代碼示例
- PHP ImagickDraw setFontFamily()用法及代碼示例
- PHP ImagickDraw scale()用法及代碼示例
- PHP ImagickDraw setFontStyle()用法及代碼示例
- PHP ImagickDraw setFont()用法及代碼示例
- PHP ImagickDraw setFillColor()用法及代碼示例
- PHP ImagickDraw translate()用法及代碼示例
- PHP ImagickDraw getGravity()用法及代碼示例
- PHP ImagickDraw getFontStyle()用法及代碼示例
- PHP ImagickDraw setFillRule()用法及代碼示例
- PHP ImagickDraw getStrokeColor()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw setStrokeDashArray() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。