Why convert QOI to BMP?
People convert QOI to .bmp when a program or embedded display expects a plain uncompressed bitmap, since BMP stores raw pixels that are trivial to read without a decoder.
How to convert QOI to BMP
ImageMagick OPEN-SOURCE
QOI is supported natively in ImageMagick 7.1.0-20 and later; run magick input.qoi output.bmp to decode and write the bitmap.
XnView MP FREE
Install the pfusik qoi-fu plugin, open the .qoi, then use File > Export (or batch convert) and pick BMP as the output format.
GIMP OPEN-SOURCE
Add the qoi-fu QOI plugin, open the .qoi, then choose File > Export As and save with a .bmp extension.
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 BMP file is a Windows Bitmap - a simple, usually uncompressed raster image developed by Microsoft. Every major OS and image viewer opens it with no extra software (double-click works).…
Open .BMP details →Quality & what to watch
- BMP is uncompressed, so the output file is typically several times larger than the QOI source.
- Standard 24-bit BMP has no alpha channel, so QOI transparency is flattened unless you save a 32-bit BMP that your target actually supports.
- Older ImageMagick builds predate QOI support; you need version 7.1.0-20 or newer to read
.qoidirectly.