.QOI

Fichier QOI

Quite OK Image Format
Poser une question
RÉPONSE RAPIDE

Un fichier .qoi est une image « Quite OK Image », un format d'image matricielle sans perte enregistré dans un format ouvert créé par Dominic Szablewski en 2021 comme une alternative beaucoup plus rapide au PNG. Il stocke des pixels RVB 24 bits ou RVBA 32 bits à l'aide d'un schéma de compression simple aligné sur les octets. Vous pouvez ouvrir les fichiers .qoi dans des visionneuses et éditeurs d'images tels que XnView MP, IrfanView (avec son plugin), GIMP 3 et ImageMagick, et sur Windows 11 avec PowerToys installé, vous obtenez des miniatures et des aperçus dans l'Explorateur de fichiers.

Développeur : Dominic Szablewski (phoboslab) Catégorie : Fichiers d`image raster Standard ouvert MIME: image/qoi
S'OUVRE SUR Windows macOS Linux
Lié : .JPG · .PNG · .TIF · .ECW

Sur cette page

19k+ extensions indexées
Dernière révision le Jun 17, 2026

Pas sûr de la nature de votre fichier ?

Déposez n'importe quel fichier dans notre identificateur - nous lisons juste les premiers octets pour nommer le format.

Identifier un fichier

Qu'est-ce que le format de fichier QOI ?

Un fichier .qoi est une image « Quite OK Image », un format d'image matricielle sans perte créé par Dominic Szablewski et publié le 24 novembre 2021. Il a été conçu pour être bien plus simple et beaucoup plus rapide que le .png tout en produisant des fichiers de taille similaire. L'intégralité de la spécification tient sur une seule page, et l'encodeur ainsi que le décodeur de référence font environ 300 lignes de C.

À l'intérieur, un fichier .qoi commence par un en-tête de 14 octets qui débute par le marqueur ASCII qoif, suivi de la largeur et de la hauteur de l'image, d'un octet pour les canaux (3 pour RVB ou 4 pour RVBA) et d'un octet pour l'espace colorimétrique. Les pixels qui suivent sont compressés avec un codage par plages (RLE), un petit cache des couleurs récemment vues et un codage delta par rapport au pixel précédent. Le format est totalement sans perte, prend en charge l'alpha 8 bits et a été placé dans le domaine public sous licence CC0.

Sécurité et sûreté

RISQUE : LOW

QOI is a plain image format with no scripting, macros, or embedded executable content, so a .qoi file cannot run code on its own. It also has no checksum, so a corrupted file may simply fail to decode. As with any image type, the only real risk comes from bugs in a specific decoder, so keep your viewer up to date.

Détails du format

en bref
NOM COMPLETQuite OK Image Formatalias Quite OK Image, QOI image
DÉVELOPPEURDominic Szablewski (phoboslab)depuis 2021-11-24
TYPE MIMEimage/qoi
TYPEBinary lossless raster image format
STANDARDOuvert · libre de droits
OCTETS MAGIQUES · SIGNATURE DE FICHIER
OFFSET
00010203
HEX
716F6966
ASCII
qoif
Fixed 4-byte signature at the start of the 14-byte header. The four ASCII characters q, o, i, f.

Programmes qui ouvrent les fichiers QOI

Windows6 apps
GIMP Open-source Open and edit .qoi files natively in GIMP 3.0 or later and export them to other formats.
IrfanView Freemium View .qoi images after installing the IrfanView plugin pack, then re-save to .png or .jpg.
ImageMagick Open-source Display or convert .qoi files from the command line with magick input.qoi output.png (build 7.1.0-20 or later).
XnView MP Freemium Open a .qoi file directly to view it, browse folders of them, and batch-convert to other image formats.
Microsoft PowerToys Open-source Enable the Image Previewer to see .qoi thumbnails and previews inside Windows File Explorer.
qoiconv (reference tool) Open-source Convert between .qoi and .png with the official command-line tool qoiconv input.qoi output.png.
macOS5 apps
GIMP Open-source Open and edit .qoi images natively in GIMP 3 and export to other formats.
GraphicConverter Payant Open, view, and batch-convert .qoi files in version 11.8 or later.
ImageMagick Open-source Convert .qoi files in Terminal with magick input.qoi output.png.
XnView MP Freemium Open .qoi files for viewing and convert them to other formats.
QOIql (QuickLook plugin) Open-source Preview .qoi files in Finder with a spacebar QuickLook press after installing the plugin.
Linux5 apps
GIMP Open-source Open and edit .qoi files natively in GIMP 3 and export to other formats.
FFmpeg Open-source Decode or encode .qoi files with ffmpeg -i input.qoi output.png (version 5.1 or later).
ImageMagick Open-source View or convert .qoi files from the shell with magick input.qoi output.png.
XnView MP Freemium Browse and convert .qoi files through the graphical viewer.
qoiconv (reference tool) Open-source Build the official converter and run qoiconv input.qoi output.png for lossless PNG conversion.

Détails techniques

spécifications approfondies
EncodingByte-aligned tagged chunks; no bit-packing across byte boundaries
Byte orderBig-endian (width and height stored as 32-bit big-endian integers)
Container14-byte header, variable-length data chunks, 8-byte end marker (seven 0x00 bytes followed by 0x01)
CompressionLossless. Combines run-length encoding, a 64-entry running hash index of previously seen pixels, and small per-channel delta coding
Typical sizeComparable to PNG for the same RGB or RGBA image
StructureHeader holds magic 'qoif', width (u32 BE), height (u32 BE), channels (1 byte: 3=RGB, 4=RGBA), and colorspace (1 byte: 0=sRGB with linear alpha, 1=all linear). Pixels are encoded left to right, top to bottom using five chunk types: QOI_OP_RUN, QOI_OP_INDEX, QOI_OP_DIFF, QOI_OP_LUMA, and QOI_OP_RGB / QOI_OP_RGBA. The index uses the hash (r*3 + g*5 + b*7 + a*11) % 64.
IntegrityNone. There is no CRC or checksum; a fixed 8-byte end marker signals the end of the stream
Color depth24-bit RGB or 32-bit RGBA, 8 bits per channel
ColorspacesRGB with linear alpha, or all channels linear (informational flag only; does not affect decoding)
PlatformsWindows, macOS, Linux
Initial Release FullNovember 24, 2021 (specification finalized as version 1.0 on January 5, 2022)
Reference ImplementationSingle-file MIT-licensed C/C++ library qoi.h (about 300 lines). The specification itself is public domain (CC0).
NotesDesigned to be far faster to encode and decode than PNG (roughly 20x-50x faster encoding, 3x-4x faster decoding) while keeping file sizes similar. No animation, no tiling, no interlacing, and a maximum of 8 bits per channel. GameMaker uses QOI (with bzip2) as its default texture storage format since 2022.1.
Publié2021-11-24
Dernière version1.0 (2022-01-05)
Standard ouvertOui · libre de droits
Spécificationqoiformat.org

Conversions QOI

Q&R de la communauté

posées par les utilisateurs
Poser une question rapide
Obtenez de l'aide de personnes qui travaillent avec des fichiers QOI. Soyez précis - incluez votre système et la version du logiciel.
Aucun compte requis · réponses généralement sous un jour

Pas encore de questions - soyez le premier à poser une question sur les fichiers QOI.

Foire aux questions

Comment ouvrir un fichier QOI ?
Utilisez une visionneuse ou un éditeur d'images prenant en charge le format, tel que XnView MP, IrfanView avec son plugin, GIMP 3 ou ImageMagick. Sur Windows 11 avec PowerToys installé, vous pouvez également voir des aperçus et des miniatures .qoi directement dans l'Explorateur de fichiers.
Comment convertir un fichier QOI en PNG ?
Exécutez l'outil officiel qoiconv input.qoi output.png, ou utilisez ImageMagick avec magick input.qoi output.png. Les deux sont sans perte, donc le PNG contiendra exactement les mêmes pixels.
Le QOI est-il meilleur que le PNG ?
Il encode environ 20 à 50 fois plus vite et décode 3 à 4 fois plus vite que le PNG pour une taille de fichier similaire, ce qui le rend pratique pour les jeux et les outils. Le PNG compresse généralement un peu plus et est pris en charge presque partout, donc le QOI est un compromis de vitesse et de simplicité plutôt qu'un remplacement direct.
Le QOI est-il sans perte ?
Oui. QOI stocke chaque pixel exactement, et des chercheurs de l'EPFL ont formellement vérifié en 2022 que sa compression est sans perte.
Le QOI prend-il en charge la transparence ?
Oui. QOI gère les images RVBA 32 bits, donc un canal alpha 8 bits est préservé. Les fichiers marqués avec 3 canaux sont uniquement RVB opaques.
Les fichiers QOI sont-ils sûrs à ouvrir ?
Oui. Un fichier .qoi ne contient que des données d'image sans scripts ni programmes intégrés, donc en ouvrir un dans une visionneuse actuelle présente peu de risques.

Références

1QOI (image format) - Wikipediaen.wikipedia.org
2QOI official site and specificationqoiformat.org

Continuer l'exploration

à travers la base de données

Top des extensions cette semaine

1.AQQAQQ Instant Messenger File
2.CRDOWNLOADChrome Partial Download File
3.MDMarkdown Document
4.BINCD/DVD Disc Image (BIN/CUE)
5.NOMEDIAAndroid No-Media Marker File
6.PARTPartial Download File
7.RPMSGRestricted Permission Message
8.EXEWindows Executable (Portable Executable)
9.AVIFAV1 Image File Format (AVIF)
10.DBSQLite Database File

Extensions liées

.JPGJPEG Image
.PNGPortable Network Graphics
.TIFTagged Image File Format
.ECWEnhanced Compression Wavelet (ECW) image
.AVIFAV1 Image File Format (AVIF)
.JP2JPEG 2000 Image (ISO/IEC 15444-1)

Outils de fichiers gratuits

Un identificateur de fichier et un convertisseur d'images dans le navigateur - tout s'exécute sur votre appareil.

Ouvrir la boîte à outils

Parcourir les extensions de fichiers A-Z