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.
- Host: GitHub
- URL: https://github.com/stynh/imageflipper
- Owner: StynH
- License: mit
- Created: 2024-02-05T13:40:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-21T10:03:34.000Z (11 months ago)
- Last Synced: 2025-02-09T23:39:15.429Z (3 months ago)
- Topics: cli, converting-images, image-format, image-format-conversion, image-manipulation, rust
- Language: Rust
- Homepage:
- Size: 452 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 
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"
```