Skip to content

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

License

Notifications You must be signed in to change notification settings

StynH/ImageFlipper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

icon

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"