Imagick::newPseudoImage()函數是PHP中的內置函數,用於使用ImageMagick pseudo-formats創建新圖像。
用法:
bool Imagick::newPseudoImage( $columns, $rows, $pseudoString )
參數:此函數接受上麵提到並在下麵描述的三個參數:
- $columns:此參數用於設置新圖像中的列。
- $rows:此參數用於設置新圖像中的行。
- $pseudoString:此參數用於保存包含偽圖像定義的字符串。
返回值:成功時此函數返回True。
錯誤/異常:此函數在錯誤時引發ImagickException。
以下示例程序旨在說明PHP中的Imagick::newPseudoImage()函數:
程序:
<?php
// Create an Imagick object
$imagick = new \Imagick();
// Use newPseudoImage function
$imagick->newPseudoImage(300, 300,
'radial-gradient:red-blue');
// Set the image format
$imagick->setImageFormat("png");
header("Content-Type: image/png");
// Display the output image
echo $imagick->getImageBlob();
?>
輸出:
參考: http://php.net/manual/en/imagick.newpseudoimage.php
相關用法
- PHP Imagick getImageChannelStatistics()用法及代碼示例
- PHP Imagick getImageClipMask()用法及代碼示例
- PHP Imagick getImageCompose()用法及代碼示例
- PHP Imagick setImageClipMask()用法及代碼示例
- PHP Imagick getImageChannelExtrema()用法及代碼示例
- PHP Imagick getImageChannelMean()用法及代碼示例
- PHP Imagick setImageBorderColor()用法及代碼示例
- PHP Imagick haldClutImage()用法及代碼示例
- PHP Imagick getImageBackgroundColor()用法及代碼示例
- PHP Imagick getImageChannelDistortion()用法及代碼示例
- PHP Imagick setImageBluePrimary()用法及代碼示例
- PHP Imagick getImageBorderColor()用法及代碼示例
- PHP Imagick setImageBackgroundColor()用法及代碼示例
- PHP Imagick setImageCompose()用法及代碼示例
- PHP Imagick setImageDelay()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick newPseudoImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。