ImagickDraw::clone()函數是PHP中的內置函數,用於對指定的ImagickDraw對象進行精確複製。
用法:
ImagickDraw ImagickDraw::clone( void )
參數:此函數不接受任何參數。
返回值:成功時此函數返回指定ImagickDraw對象的精確副本,失敗時返回錯誤。
異常:該函數在錯誤時引發ImagickException。
以下示例程序旨在說明PHP中的ImagickDraw::clone()函數:
示例1:
<?php
// Create a new Imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'white');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the text properties
$draw->setFontSize(100);
$draw->setFillColor('blue');
// Apply the annotation() function
$draw->annotation(50, 150, 'GeeksforGeeks');
// Create a new ImagickDraw object
$copied = new ImagickDraw();
// Copy the object
$copied = $draw->clone();
// Render the draw commands from copied object
$imagick->drawImage($copied);
// Show the output
$imagick->setImageFormat("png");
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
輸出:
示例2:
<?php
// Create a new Imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'white');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Draw a circle
$draw->circle(200, 100, 100, 100);
// Create a new ImagickDraw object
$copied = new ImagickDraw();
// Copy the object
$copied = $draw->clone();
// Render the draw commands from copied object
$imagick->drawImage($copied);
// Add a border
$imagick->borderImage('black', 1, 1);
// Show the output
$imagick->setImageFormat("png");
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
輸出:
參考: https://www.php.net/manual/en/imagickdraw.clone.php
相關用法
- PHP Imagick clone()用法及代碼示例
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw arc()用法及代碼示例
- PHP ImagickDraw setTextEncoding()用法及代碼示例
- PHP ImagickDraw setStrokeColor()用法及代碼示例
- PHP ImagickDraw comment()用法及代碼示例
- PHP ImagickDraw pushPattern()用法及代碼示例
- PHP ImagickDraw rotate()用法及代碼示例
- PHP ImagickDraw pushClipPath()用法及代碼示例
- PHP ImagickDraw popClipPath()用法及代碼示例
- PHP ImagickDraw setStrokeAlpha()用法及代碼示例
- PHP ImagickDraw setTextAlignment()用法及代碼示例
- PHP ImagickDraw popDefs()用法及代碼示例
- PHP ImagickDraw popPattern()用法及代碼示例
- PHP ImagickDraw setTextUnderColor()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw clone() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。