markdown 如何使用CLI /终端批量调整照片大小?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 如何使用CLI /终端批量调整照片大小?相关的知识,希望对你有一定的参考价值。

```
$ cd /path/to/photos/folder
$ image-batch-resizer --directory . --size 500 --remove-original-file yes
```

To auto-rename `res_xxx.jpg` to `xxx.jpg` (original file name), run:

`for i in  "res_"*;do mv "$i" "${i#"res_"}";done`

```
$ cd /path/to/photos/folder
$ image-batch-resizer --directory . --size 500 --remove-original-file yes && for i in  "res_"*;do mv "$i" "${i#"res_"}";done
```

If you have Terminal alias called `ibr`, this is the shorter version of the command above:

```
$ ibr -d . -s 500 -R yes && for i in  "res_"*;do mv "$i" "${i#"res_"}";done
```

**Dependencies**

- `brew install imagemagick`
- `yarn global add image-batch-resizer`

**References**

- https://github.com/Meettya/image-batch-resizer

以上是关于markdown 如何使用CLI /终端批量调整照片大小?的主要内容,如果未能解决你的问题,请参考以下文章

以省时的方式在终端中批量裁剪/调整照片大小

批量裁剪图像到固定高度 (CLI)

markdown 如何使用CLI缩小PDF文件大小?

求问怎么把照片裁剪成证件照?希望可以批量处理的。

如何批量调整Word中图片大小

Linux中如何使用gThumb批量调整图片大小