答案1
答案2
(A)这是我使用自动化程序的解决方案:
for theFilePath in "$@"; do
sips --cropOffset 1 1 -c 925 925 -o "${theFilePath%%.*}.png" "$theFilePath"
sips -r 180 -o "${theFilePath%%.*}.png" "$theFilePath"
sips --cropOffset 1 1 -c 826 826 -o "${theFilePath%%.*}.png" "$theFilePath"
sips -r 180 -o "${theFilePath%%.*}.png" "$theFilePath"
done