Gmagick::charcoalimage()函數是PHP中的內置函數,用於按給定角度旋轉圖像。旋轉圖像後,剩下的空三角形被背景色填充。
用法:
Gmagick Gmagick::charcoalimage( $color, $degree)
參數:該函數接受上述和以下描述的兩個參數:
- $color:此參數保留背景色。
- $degree:此參數保存圖像的旋轉度。
返回值:成功時,此函數返回Gmagick對象。
錯誤/異常:此函數在出錯時引發GmagickException。
以下示例程序旨在說明PHP中的Gmagick::charcoalimage()函數:
程序1:
原始圖片:
<?php
// Create a Gmagick object
$gmagick = new Gmagick(
'https://media.geeksforgeeks.org/wp-content/uploads/tech.png');
// Use charcoalimage() function
$gmagick->charcoalimage(10, 13);
header('Content-type: image/png');
// Output the image
echo $gmagick;
?>
輸出:
程序2:
<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Create GmagickPixel object
$strokeColor = new GmagickPixel('Red');
$fillColor = new GmagickPixel('Green');
// Set the color, opacity of image
$draw->setStrokeOpacity(1);
$draw->setStrokeColor('Red');
$draw->setFillColor('Green');
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
// Function to draw circle
$draw->circle(250, 250, 100, 150);
$gmagick = new Gmagick();
$gmagick->newImage(500, 500, 'White');
$gmagick->setImageFormat("png");
$gmagick->drawImage($draw);
// Use charcoalimage() function
$gmagick->charcoalimage(15, 23);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
輸出:
參考: https://www.php.net/manual/en/gmagick.charcoalimage.php/a>
相關用法
- PHP Imagick charcoalImage()用法及代碼示例
- PHP Gmagick setimagerenderingintent()用法及代碼示例
- PHP Gmagick getimageblueprimary()用法及代碼示例
- PHP Gmagick cropimage()用法及代碼示例
- PHP Gmagick getimageunits()用法及代碼示例
- PHP Gmagick getimagechanneldepth()用法及代碼示例
- PHP Gmagick setimagechanneldepth()用法及代碼示例
- PHP Gmagick getimagescene()用法及代碼示例
- PHP Gmagick cyclecolormapimage()用法及代碼示例
- PHP Gmagick getreleasedate()用法及代碼示例
- PHP Gmagick getimagesignature()用法及代碼示例
- PHP Gmagick getpackagename()用法及代碼示例
- PHP Gmagick getquantumdepth()用法及代碼示例
- PHP Gmagick embossimage()用法及代碼示例
- PHP Gmagick getImageMatte()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Gmagick charcoalimage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。