3

在文件资源管理器或 shotwell 中,一些图像似乎是纵向模式,有些是横向模式。但是该identify命令无法区分它们:

景观 :

IMG_0064.JPG JPEG 3648x2736 3648x2736+0+0 8-bit DirectClass 3.319MB 0.000u 0:00.000

肖像 :

IMG_0108.JPG JPEG 3648x2736 3648x2736+0+0 8-bit DirectClass 3.004MB 0.000u 0:00.000

我使用以下脚本来获取图像的宽度和高度:

批量裁剪和调整图像大小以创建缩略图

有没有办法也得到方向?

-------------------------------------------------- --------------------------------------

我想要的是批量裁剪和调整图像大小以创建缩略图(解决方案),如果我在池中获得一些肖像图像,它会旋转它们。

完整的解决方案:

#! /bin/bash
for img in *.JPG ; do
    identify=$(identify "$img")
    [[ $identify =~ ([0-9]+)x([0-9]+) ]] || \
        { echo Cannot get size >&2 ; continue ; }
    width=${BASH_REMATCH[1]}
    height=${BASH_REMATCH[2]}
    let good_width=height+height/2

    orientation=$(identify -format '%[exif:orientation]' $img)
        if (( orientation > 1 )) ; then # crop horizontally
        echo "$img is portrait"
        name="temp"
        convert -rotate 90 "$img" "$name"
        mv "$img" "portrait_$img"
        mv "$name" "$img"
    fi

    if (( width < good_width )) ; then # crop horizontally
        let new_height=width*2/3
        new_width=$width
        let top='(height-new_height)/2'
        left=0

    elif (( width != good_width )) ; then # crop vertically
        let new_width=height*3/2
        new_height=$height
        let left='(width-new_width)/2'
        top=0
    fi

    convert -auto-orient "$img" -crop "$new_width"x$new_height+$left+$top -resize 120x80 thumb-"$img"
done
4

2 回答 2

4

您可以添加自动旋转图像的-auto-orient选项。convert

如果您只需要获取方向,则必须在 上使用格式说明符identify,例如:

identify -format '%[exif:orientation]' image_file.jpg

有关更多详细信息,请参阅ImageMagick 文档中有关数码照片方向的部分。

于 2013-04-28T11:09:57.030 回答
4

使用该工具尝试-orient-auto-orient标志。convert

于 2013-04-28T11:10:26.627 回答