Replies: 1 comment 4 replies
-
Thank you for your interest in libavif. It seems the AVIF files in your Please try the following command line: avifenc --lossless input.png output.avif |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In order to obtain an AVIF image where every pixel displayed on the screen matches the original image, I used the command
avifenc --lossless -j all -y 444 --depth 12 --qcolor 100 --qalpha 100 --min 0 --max 0 --minalpha 0 --maxalpha 0 --speed 0 * *.avif
and iYo Image Converter to compress PNG images. Surprisingly, avifenc was less efficient than iYo Image Converter, with avifenc's compressed images occupying more storage space than those compressed by iYo Image Converter.Original Image:
Images generated by the avifenc command(33.9 KB):
Images converted by iYo Image Converter(23.7 KB):
iYo Image Converter Settings:
My goal is to obtain a lossless AVIF image where every pixel displayed on the screen matches the original image. I would like to know if the issue lies with the parameters I entered for avifenc, or if there is another reason why the images generated by avifenc are not the smallest. Is there a way to make avifenc generate the smallest possible AVIF image?
Additionally, you can find all the files I generated here:files.zip
Beta Was this translation helpful? Give feedback.
All reactions