Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16147 программистов и 1779 роботов. Сейчас ищут 1712 программистов ...
Imagick::setImageOrientation - Sets the image orientation
Вернуться к: Imagick
Imagick::setImageOrientation
(PECL imagick 2.0.0)
Imagick::setImageOrientation — Sets the image orientation
Описание
bool Imagick::setImageOrientation
( int
$orientation
)Sets the image orientation.
Возвращаемые значения
В случае успешной работы возвращает TRUE
.
Примеры
Пример #1 Imagick::setImageOrientation()
<?php
//Doesn't appear to do anything
function setImageOrientation($imagePath, $orientationType) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->setImageOrientation($orientationType);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>
Вернуться к: Imagick