Why convert QOI to WEBP?
QOI is fast but produces relatively large files and is not viewable in browsers, so people convert to .webp for small, web-ready images with alpha. Lossless WebP preserves the exact pixels, while lossy WebP trades some quality for a much smaller size.
How to convert QOI to WEBP
ImageMagick OPEN-SOURCE
Run magick input.qoi output.webp. Add -define webp:lossless=true to stay pixel-perfect, or -quality 80 for a smaller lossy file.
XnView MP APP
Open the .qoi, then File > Export... and choose WEBP, where a checkbox toggles lossless vs lossy quality. XnConvert batches folders.
GIMP 3.0 OPEN-SOURCE
Open the .qoi in GIMP 3.0, then File > Export As... with a .webp name; the export dialog lets you tick 'Lossless' or set a quality slider.
About these formats
A .qoi file is a Quite OK Image, a lossless raster image saved in an open format created by Dominic Szablewski in 2021 as a much faster alternative to PNG. It stores 24-bit RGB or 32-bit…
Open .QOI details →A WebP file is a raster image format made by Google that stores photos and graphics at smaller file sizes than JPEG or PNG. Any web browser opens it instantly - drag the file onto a tab. On…
Open .WEBP details →Quality & what to watch
- Lossless WebP keeps pixels and alpha exactly; lossy WebP discards detail to shrink the file, so choose deliberately.
- WebP maxes out at 16383x16383 pixels, so very large QOI images may not fit.
- Older software and some editors still open WebP poorly, so keep the source QOI or a PNG as a fallback.
Frequently asked questions
Will WebP keep transparency?
Lossless or lossy WebP?
How do I force lossless in ImageMagick?
-define webp:lossless=true to the magick input.qoi output.webp command.