检测EXIF方向并使用ImageMagick旋转图像

2022-08-30 07:35:38

佳能数码单反相机似乎以横向方式保存照片,并用于进行旋转。exif::orientation

问题:如何使用 imagemagick 使用 exif 方向数据将图像重新保存到预期方向,以便不再需要 exif 数据以正确的方向显示?


答案 1

使用ImageMagick的自动定向选项来执行此操作。convert

convert your-image.jpg -auto-orient output.jpg

或者用于就地完成mogrify

mogrify -auto-orient your-image.jpg

答案 2

PHP Imagick方法是测试图像方向并相应地旋转/翻转图像:

function autorotate(Imagick $image)
{
    switch ($image->getImageOrientation()) {
    case Imagick::ORIENTATION_TOPLEFT:
        break;
    case Imagick::ORIENTATION_TOPRIGHT:
        $image->flopImage();
        break;
    case Imagick::ORIENTATION_BOTTOMRIGHT:
        $image->rotateImage("#000", 180);
        break;
    case Imagick::ORIENTATION_BOTTOMLEFT:
        $image->flopImage();
        $image->rotateImage("#000", 180);
        break;
    case Imagick::ORIENTATION_LEFTTOP:
        $image->flopImage();
        $image->rotateImage("#000", -90);
        break;
    case Imagick::ORIENTATION_RIGHTTOP:
        $image->rotateImage("#000", 90);
        break;
    case Imagick::ORIENTATION_RIGHTBOTTOM:
        $image->flopImage();
        $image->rotateImage("#000", 90);
        break;
    case Imagick::ORIENTATION_LEFTBOTTOM:
        $image->rotateImage("#000", -90);
        break;
    default: // Invalid orientation
        break;
    }
    $image->setImageOrientation(Imagick::ORIENTATION_TOPLEFT);
}

该函数可以按如下方式使用:

$img = new Imagick('/path/to/file');
autorotate($img);
$img->stripImage(); // if you want to get rid of all EXIF data
$img->writeImage();

推荐