imagemagick — как лучше повернуть изображение с помощью команды php или convert?

Каков наилучший способ повернуть изображение с помощью команды php или convert?

-3

Решение

С Imagick, используйте rotateImage

<?php
$image = new Imagick("source.kpg");
$image->rotateImage ( 'white', 90.0 );
2

Другие решения

Используйте функцию PHP imagerotate
http://php.net/manual/en/function.imagerotate.php

Пример:

<?php
// File and rotation
$filename = 'test.jpg';
$degrees = 180;

// Content type
header('Content-type: image/jpeg');

// Load
$source = imagecreatefromjpeg($filename);

// Rotate
$rotate = imagerotate($source, $degrees, 0);

// Output
imagejpeg($rotate);

// Free the memory
imagedestroy($source);
imagedestroy($rotate);
?>
1

Вы можете сделать это с ImageMagick. Следующая команда повернет изображение:

convert original_file.jpg -rotate 90 new_file.jpg
1
По вопросам рекламы [email protected]