我在 Linux Mint 机器上有一个包含 170 张 png 照片的目录,我想将其分成两半。我想出了一个解决方案,但它没有正常工作,因为它使缓存超载。我编写的命令对 1 张图片有效,该命令是:
convert -crop 50%x100% ../image_location.png image_location_cropped.png
我尝试写一个循环,但没有成功。如下所示:
for i in Testovnica_chemia-???.png
do
convert -crop 50%x100% ../Testovnica_chemia-???.png Testovnica_chemia-???_upravene.png
done
错误信息如下:
convert-im6.q16: cache resources exhausted `../Testovnica_chemia-056.png' @ error/cache.c/OpenPixelCache/4083.
我该如何修改呢?