При загрузке видео на сервер возвращается ошибка
Ругается на $orientation = $img->getImageOrientation();
Хотя функция работает только над фото при чем тут видео понят не могу
Uncaught exception 'ImagickException' with message 'Can not process empty Imagick object' in /var/www/парапам/data/www/парапам/addpostmysql.php:103
Stack trace:
#0 /var/www/парапам/data/www/парапам/addpostmysql.php(103): Imagick->getimageorientation()
#1 {main} thrown in
$file_name=$_FILES['userfile']['tmp_name'];
$img = new Imagick($file_name);
$orientation = $img->getImageOrientation();
switch($orientation) {
case imagick::ORIENTATION_BOTTOMRIGHT:
$img->rotateimage("#000", 180); // rotate 180 degrees
break;
case imagick::ORIENTATION_RIGHTTOP:
$img->rotateimage("#000", 90); // rotate 90 degrees CW
break;
case imagick::ORIENTATION_LEFTBOTTOM:
$img->rotateimage("#000", -90); // rotate 90 degrees CCW
break;
}