.QOI

QOI-bestand

Quite OK Image Format
Stel een vraag
SNEL ANTWOORD

Een .qoi-bestand is een Quite OK Image, een lossless rasterafbeelding opgeslagen in een open formaat dat in 2021 door Dominic Szablewski is gecreëerd als een veel sneller alternatief voor PNG. Het slaat 24-bits RGB- of 32-bits RGBA-pixels op met behulp van een eenvoudig byte-gealigneerd compressieschema. U kunt .qoi-bestanden openen in afbeeldingsviewers en editors zoals XnView MP, IrfanView (met de bijbehorende plugin), GIMP 3 en ImageMagick, en op Windows 11 met PowerToys geïnstalleerd krijgt u miniaturen en voorvertoningen in Verkenner.

Ontwikkelaar: Dominic Szablewski (phoboslab) Categorie: Rasterafbeeldingen Open standaard MIME: image/qoi
OPENT OP Windows macOS Linux
Gerelateerd: .JPG · .PNG · .TIF · .ECW

Op deze pagina

19k+ extensies geïndexeerd
Laatst beoordeeld op Jun 17, 2026

Niet zeker wat uw bestand is?

Sleep een bestand naar onze identificatietool - we lezen alleen de eerste bytes om het formaat te benoemen.

Identificeer een bestand

Wat is het QOI-bestandsformaat?

Een .qoi-bestand is een Quite OK Image, een lossless rasterafbeeldingsformaat gecreëerd door Dominic Szablewski en uitgebracht op 24 november 2021. Het is ontworpen om veel eenvoudiger en sneller te zijn dan .png terwijl de bestanden ongeveer even groot blijven. De volledige specificatie past op één pagina, en de referentie-encoder en -decoder beslaan ongeveer 300 regels C-code.

Binnenin begint een .qoi-bestand met een 14-byte header die start met de ASCII-markering qoif, gevolgd door de breedte en hoogte van de afbeelding, een kanaal-byte (3 voor RGB of 4 for RGBA) en een kleurruimte-byte. De pixels die volgen zijn gecomprimeerd met run-length encoding, een kleine cache van recent geziene kleuren en delta-codering ten opzichte van de vorige pixel. Het formaat is volledig lossless, ondersteunt 8-bits alfa en is in het publieke domein geplaatst onder CC0.

Beveiliging & veiligheid

RISICO: 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.

Formaatdetails

in een notendop
VOLLEDIGE NAAMQuite OK Image Formatook bekend als Quite OK Image, QOI image
ONTWIKKELAARDominic Szablewski (phoboslab)sinds 2021-11-24
MIME-TYPEimage/qoi
TYPEBinary lossless raster image format
STANDAARDOpen · royaltyvrij
GERELATEERD.jpg.png.tif.ecw
MAGIC BYTES · BESTANDSSIGNATUUR
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.

Programma's die QOI-bestanden openen

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 Betaald 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.

Technische details

diepe specificaties
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.
Uitgebracht2021-11-24
Laatste versie1.0 (2022-01-05)
Open standaardJa · royaltyvrij
Specificatieqoiformat.org

QOI conversies

Community V&A

gevraagd door gebruikers
Stel een korte vraag
Krijg hulp van mensen die met QOI-bestanden werken. Wees specifiek - vermeld uw systeem en softwareversie.
Geen account nodig · antwoorden meestal binnen een dag

Nog geen vragen - wees de eerste om iets te vragen over QOI-bestanden.

Veelgestelde vragen

Hoe open ik een QOI-bestand?
Gebruik een afbeeldingsviewer of editor die het formaat ondersteunt, zoals XnView MP, IrfanView met de bijbehorende plugin, GIMP 3 of ImageMagick. Op Windows 11 met PowerToys geïnstalleerd kunt u ook .qoi-voorvertoningen en miniaturen direct in Verkenner zien.
Hoe converteer ik een QOI-bestand naar PNG?
Gebruik de officiële tool qoiconv input.qoi output.png, of gebruik ImageMagick met magick input.qoi output.png. Beiden zijn lossless, dus de PNG zal exact dezelfde pixels bevatten.
Is QOI beter dan PNG?
Het codeert ongeveer 20 tot 50 keer sneller en decodeert 3 tot 4 keer sneller dan PNG bij een vergelijkbare bestandsgrootte, wat het handig maakt voor games en tools. PNG comprimeert meestal iets kleiner en wordt bijna overal ondersteund, dus QOI is een afweging tussen snelheid en eenvoud in plaats van een directe vervanging.
Is QOI lossless?
Ja. QOI slaat elke pixel exact op, en onderzoekers van de EPFL hebben in 2022 formeel geverifieerd dat de compressie lossless is.
Ondersteunt QOI transparantie?
Ja. QOI verwerkt 32-bits RGBA-afbeeldingen, waardoor een 8-bits alfakanaal behouden blijft. Bestanden gemarkeerd met 3 kanalen zijn alleen ondoorzichtig RGB.
Zijn QOI-bestanden veilig om te openen?
Ja. Een .qoi-bestand bevat alleen afbeeldingsgegevens zonder scripts of ingebedde programma's, dus het openen ervan in een actuele viewer brengt weinig risico met zich mee.

Referenties

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

Blijf ontdekken

door de database

Populaire extensies deze week

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

Gerelateerde extensies

.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)

Gratis bestandstools

Een bestandsidentificatie en afbeeldingsconverter in de browser - alles draait op uw eigen apparaat.

Open de gereedschapskist

Blader door bestandsextensies A-Z