Imagick::commentImage()函數是PHP中的內置函數,用於在圖像中添加注釋。
用法:
bool Imagick::commentImage( $comment )
參數:該函數接受單個參數$comment,該參數用於保存注釋。
返回值:成功時此函數返回True。
原始圖片:
以下示例程序旨在說明PHP中的Imagick::commentImage()函數:
程序1:
<?php
// require_once('vendor/autoload.php');
// Create an Imagick Object
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');
// Add comment to the image
$image->commentImage("GeeksforGeeks");
// Display the comment
echo $image->getImageProperty("comment");
?>
輸出:
GeeksforGeeks
程序2:
由Imagick Function創建的圖像:
<?php
$string = "Computer Science portal for Geeks!";
// creating new image of above String
// and add color and background
$im = new Imagick();
$draw = new ImagickDraw();
// Fill the color in image
$draw->setFillColor(new ImagickPixel('green'));
// Set the text font size
$draw->setFontSize(50);
$metrix = $im->queryFontMetrics($draw, $string);
$draw->annotation(0, 40, $string);
$im->newImage($metrix['textWidth'], $metrix['textHeight'],
new ImagickPixel('white'));
// Draw the image
$im->drawImage($draw);
// Function to add border image
$im->borderImage(new ImagickPixel('Blue'), 5, 5);
// Function to add comment
$im->commentImage("G4G");
// Function to set the image format
$im->setImageFormat('png');
// Printing Added Comment
echo $im->getImageProperty("comment");
?>
輸出:
G4G
參考: http://php.net/manual/en/imagick.commentimage.php
相關用法
- PHP Gmagick commentImage()用法及代碼示例
- PHP Imagick getImageDistortion()用法及代碼示例
- PHP Imagick getImageCompression()用法及代碼示例
- PHP Imagick setImageCompressionQuality()用法及代碼示例
- PHP Imagick getImageExtrema()用法及代碼示例
- PHP Imagick getImageChannelDistortions()用法及代碼示例
- PHP Imagick getImageChannelStatistics()用法及代碼示例
- PHP Imagick getImageCompose()用法及代碼示例
- PHP Imagick setImageClipMask()用法及代碼示例
- PHP Imagick getImageChannelExtrema()用法及代碼示例
- PHP Imagick getImageChannelMean()用法及代碼示例
- PHP Imagick setImageCompose()用法及代碼示例
- PHP Imagick getImageClipMask()用法及代碼示例
- PHP Imagick morphImages()用法及代碼示例
- PHP Imagick resampleImage()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | Imagick commentImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。