An open API service indexing awesome lists of open source software.

https://github.com/stynh/imageflipper

Small CLI tool to convert image formats for either a single file or entire folder.
https://github.com/stynh/imageflipper

cli converting-images image-format image-format-conversion image-manipulation rust

Last synced: about 1 month ago
JSON representation

Small CLI tool to convert image formats for either a single file or entire folder.

Awesome Lists containing this project

README

        

# ![icon](https://raw.github.com/stynh/ImageFlipper/master/icon.png)
Example usage on a folder:
```
./ImageFlipper.exe --folder "C:/MyFolder" --from "jpg" --to "png"
```

Converting all images that are not the target format:
```
./ImageFlipper.exe --folder "C:/MyFolder" --all --to "png"
```

Or for a single file:
```
./ImageFlipper.exe --file "C:/MyFolder/image.png" --to "webp"
```

You can also specify an output folder (created if it does not exist):
```
./ImageFlipper.exe --folder "C:/MyFolder" --all --to "png" --output "./converted"
```