Imagick::setImageOrientation()函數是PHP中的內置函數,用於設置圖像方向。此函數實際上不會旋轉圖像,而隻是更改EXIF旋轉信息。
用法:
bool Imagick::setImageOrientation( int $orientation )
參數:該函數接受單個參數$orientation,該參數保存一個包含ORIENTATION常量之一的整數值。我們還可以像setImageOrientation(imagick::ORIENTATION_BOTTOMRIGHT);這樣直接傳遞常量。
ORIENTATION常量列表如下:
- imagick::ORIENTATION_UNDEFINED(0)
- imagick::ORIENTATION_TOPLEFT(1)
- imagick::ORIENTATION_TOPRIGHT(2)
- imagick::ORIENTATION_BOTTOMRIGHT(3)
- imagick::ORIENTATION_BOTTOMLEFT(4)
- imagick::ORIENTATION_LEFTTOP(5)
- imagick::ORIENTATION_RIGHTTOP(6)
- imagick::ORIENTATION_RIGHTBOTTOM(7)
- imagick::ORIENTATION_LEFTBOTTOM(8)
返回值:成功時此函數返回TRUE。
以下示例程序旨在說明PHP中的Imagick::setImageOrientation()函數:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Set the Orientation
$imagick->setImageOrientation(imagick::ORIENTATION_LEFTTOP);
// Get the Orientation
$orientation = $imagick->getImageOrientation();
echo $orientation;
?>
輸出:
5 // Which corresponds to imagick::ORIENTATION_LEFTTOP.
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Set the Orientation
$imagick->setImageOrientation(imagick::ORIENTATION_RIGHTBOTTOM);
// Get the Orientation
$orientation = $imagick->getImageOrientation();
echo $orientation;
?>
輸出:
7 // Which corresponds to imagick::ORIENTATION_RIGHTBOTTOM.
參考: https://www.php.net/manual/en/imagick.setimageorientation.php
相關用法
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick getCopyright()用法及代碼示例
- PHP Imagick extentImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick setColorspace()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick encipherImage()用法及代碼示例
- PHP Imagick embossImage()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick setImageOrientation() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。