如何在Mac OSX上使用终端调整图像大小?


73

如果需要,我需要一种简单且免费的方法来调整图像大小并执行批处理作业。免费的图像处理软件比它应该的要难用。

Answers:


163

正如LifeHacker指出的那样,以下命令将非常轻松地完成此操作:

sips -Z 640 *.jpg

引用他们的解释:

“那么发生了什么?好吧,“ sips”是正在使用的命令,-Z告诉它保持图像的宽高比。“ 640”是要使用的最大高度和宽度,“ *。jpg”指示计算机缩小尺寸每张以.jpg结尾的图片都非常简单,并且可以非常迅速地缩小图片。如果还要保留较大的图片,请务必先进行复制。”

资料来源:http : //lifehacker.com/5962420/batch-resize-images-quickly-in-the-os-x-terminal


Error: Cannot do --extractTag on file error尝试在High Sierra上转换png时得到提示:-(
Oliver Pearmain

真的有帮助。拯救生命的黑客!
ruucm

1
太棒了 谁知道。谢谢。
PKCLsoft

7
添加--out参数以使其产生而不是直接修改输入文件
Fitsyu

19

imagemagick帮助:

$ convert foo.jpg -resize 50% bar.jpg

它可以做很多事情,包括格式之间的转换,应用效果,裁剪,着色等等。


convert:此图像格式“ PNG”无解码委托
Alexey Sh。

@AlexeySh。您缺少PNG的代表,请尝试从此处
L3viathan

1
赢家,请注意,我只是与homebrew install imagemagick
Oliver Pearmain

或者,如果使用水蟒:conda install -c conda-forge imagemagick
philshem

8

这是一个脚本,用于sips递归地调整给定文件夹(及其子文件夹)中所有图像的大小,并将调整大小后的图像resized放置在与该图像相同的树级别的文件夹中:https : //gist.github.com/ lopespm / 893f323a04fcc59466d7

#!/bin/bash
# This script resizes all the images it finds in a folder (and its subfolders) and resizes them
# The resized image is placed in the /resized folder which will reside in the same directory as the image
#
# Usage: > ./batch_resize.sh

initial_folder="/your/images/folder" # You can use "." to target the folder in which you are running the script for example
resized_folder_name="resized"

all_images=$(find -E $initial_folder -iregex ".*\.(jpg|gif|png|jpeg)")

while read -r image_full_path; do
    filename=$(basename "$image_full_path");
    source_folder=$(dirname "$image_full_path");
    destination_folder=$source_folder"/"$resized_folder_name"/";
    destination_full_path=$destination_folder$filename;

    if [ ! -z "$image_full_path" -a "$image_full_path" != " " ] &&
        # Do not resize images inside a folder that was already resized
        [ "$(basename "$source_folder")" != "$resized_folder_name" ]; then 

        mkdir "$destination_folder";
        sips -Z 700 "$image_full_path" --out "$destination_full_path";

    fi

done <<< "$all_images"

2
在运行脚本之前,应运行“ chmod + x batch_resize.sh”以使脚本可执行。我将700替换为400,并在不到3分钟的时间内调整了文件夹中3000张图像的大小。谢谢。
Sinan Eldem

8

先前的答案是正确的,您也可以使用mogrify。例如,如果要将目录中许多图像的大小减少60%,则可以使用以下命令:

当然,在使用此命令之前,请务必将图像备份到另一个目录中。

mogrify -resize 60% *

6

itunesconnect的魔术:)

    mkdir ./iPhone5-5-Portrait
    sips -z 2208 1242 *.jpg -s formatOptions 70 --out ./iPhone5-5-Portrait
    sips -z 2208 1242 *.png --out ./iPhone5-5-Portrait

3

另外@grepit回复

正确的语法是:

magick mogrify -resize 60% *

而且您需要安装ImageMagick,最简单的方法是使用自制软件:

brew install imagemagick
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.