Imagick::thumbnailImage()函數是PHP中的內置函數,用於將圖像大小更改為給定尺寸並刪除任何關聯的配置文件。此函數的目標是生成適合在Web上顯示的小型low-cost縮略圖。
用法:
bool Imagick::thumbnailImage( $columns, $rows, $bestfit, $fill, $legacy )
參數:該函數接受上述和以下所述的五個參數:
- $columns:此參數用於設置圖像寬度。
- $rows:此參數用於設置圖像高度。
- bestfit:此參數描述是否強製最大值。
返回值:成功時此函數返回True。
錯誤/異常:此函數在錯誤時引發ImagickException。
以下示例程序旨在說明PHP中的Imagick::thumbnailImage()函數:
程序:
<?php
// Create an Imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Function to set the background color
$imagick->setbackgroundcolor('rgb(64, 64, 64)');
// Use thumbnailImage function
$imagick->thumbnailImage(100, 100, true, true);
header("Content-Type: image/jpg");
// Display the output image
echo $imagick->getImageBlob();
?>
輸出:
相關文章:
參考: http://php.net/manual/en/imagick.thumbnailimage.php
相關用法
- PHP Gmagick thumbnailimage()用法及代碼示例
- PHP Imagick getImagePixelColor()用法及代碼示例
- PHP Imagick exportImagePixels()用法及代碼示例
- PHP Imagick getImageBlob()用法及代碼示例
- PHP Imagick getImageProfile()用法及代碼示例
- PHP Imagick getImageGravity()用法及代碼示例
- PHP Imagick identifyFormat()用法及代碼示例
- PHP Imagick setImageDispose()用法及代碼示例
- PHP Imagick raiseImage()用法及代碼示例
- PHP Imagick profileImage()用法及代碼示例
- PHP Imagick setImagePage()用法及代碼示例
- PHP Imagick levelImage()用法及代碼示例
- PHP Imagick linearStretchImage()用法及代碼示例
- PHP Imagick colorFloodfillImage()用法及代碼示例
- PHP Imagick setImageProfile()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Imagick thumbnailImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。