forked fromkornelski/cavif-rs
- Notifications
You must be signed in to change notification settings - Fork0
AVIF image creator in pure Rust
License
NotificationsYou must be signed in to change notification settings
avif-community/cavif-rs
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Encoder/converter for AVIF images. Based onrav1e andavif-serialize, which makes it a pure Rust tool, with no C code!
➡️Download the latest release ⬅️
The pre-built zip includes a portable static executable, with no dependencies, that runs on any Linux distro. It also includes executables for macOS and Windows.
- Chrome 85 desktop and libavif: full support. Support for
--premultiplied-alpha
option is coming soon. - Chrome on Android 12: full support.
- Firefox 86: not compatible with images with alpha channel yet.
Run in a terminal (hint: you don't need to type the path, terminals accept file drag'n'drop)
cavif image.png
It makesimage.avif
. You can adjust quality (it's in 1-100 scale):
cavif --quality 60 image.png
You can also specify multiple images (encoding is multi-threaded, so the more, the better!).
cavif [OPTIONS] IMAGES...
--quality=n
— Quality from 1 (worst) to 100 (best), the default value is 80. The numbers have different meaning than JPEG's quality scale.Beware when comparing codecs. There is no lossless compression support.--speed=n
— Encoding speed between 1 (best, but slowest) and 10 (fastest, but a blurry mess), the default value is 1. Encoding of AVIF is pretty slow, so you need either a) beefy multicore machine b) avoid large images c) patience.--overwrite
— Replace files if there's .avif already. By default existing files are left untouched.-o path
— Write output to this path instead of samefile.avif. If multiple input files are specified, it's interpreted as a directory.--quiet
— Don't print anything during conversion.--premultiplied-alpha
— May improve compression of transparent images by lowering quality of semi-transparent colors. Warning: new feature, may not be compatible with all decoders yet.--dirty-alpha
— Don't change RGB values of transparent pixels. By default irrelevant color of transparent pixels is cleared to avoid wasting space.--color=rgb
— encode using RGB color space instead of YCbCr color space. Makes color closer to lossless, but makes files larger.
To build it from source you need:
Then run in a terminal:
cargo install cavif
About
AVIF image creator in pure Rust
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
No packages published
Languages
- Rust100.0%