.QOI

File QOI

Quite OK Image Format
Fai una domanda
RISPOSTA RAPIDA

Un file .qoi è una Quite OK Image, un'immagine raster lossless (senza perdita) salvata in un formato aperto creato da Dominic Szablewski nel 2021 come alternativa molto più veloce al PNG. Memorizza pixel RGB a 24 bit o RGBA a 32 bit utilizzando uno schema di compressione semplice allineato ai byte. È possibile aprire i file .qoi in visualizzatori ed editor di immagini come XnView MP, IrfanView (con il relativo plugin), GIMP 3 e ImageMagick; inoltre, su Windows 11 con PowerToys installati, si ottengono miniature e anteprime in Esplora file.

Sviluppatore: Dominic Szablewski (phoboslab) Categoria: File di immagini raster Standard aperto MIME: image/qoi
SI APRE SU Windows macOS Linux
Correlati: .JPG · .PNG · .TIF · .ECW

In questa pagina

19k+ estensioni indicizzate
Ultima revisione Jun 17, 2026

Non sei sicuro di cosa sia il tuo file?

Trascina qualsiasi file nel nostro identificatore - leggiamo solo i primi byte per dare un nome al formato.

Identifica un file

Che cos'è il formato di file QOI?

Un file .qoi è una Quite OK Image, un formato di immagine raster lossless creato da Dominic Szablewski e rilasciato il 24 novembre 2021. È stato progettato per essere molto più semplice e veloce del .png, pur producendo file di dimensioni simili. L'intera specifica occupa una singola pagina e l'encoder e il decoder di riferimento sono composti da circa 300 righe di codice C.

All'interno, un file .qoi inizia con un'intestazione di 14 byte che si apre con il marcatore ASCII qoif, seguito dalla larghezza e dall'altezza dell'immagine, un byte per i canali (3 per RGB o 4 per RGBA) e un byte per lo spazio colore. I pixel che seguono sono compressi con la codifica run-length (RLE), una piccola cache di colori visti di recente e la codifica delta rispetto al pixel precedente. Il formato è completamente lossless, supporta l'alfa a 8 bit ed è stato rilasciato nel pubblico dominio sotto licenza CC0.

Sicurezza e incolumità

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

Dettagli del formato

in sintesi
NOME COMPLETOQuite OK Image Formatanche noto come Quite OK Image, QOI image
SVILUPPATOREDominic Szablewski (phoboslab)dal 2021-11-24
TIPO MIMEimage/qoi
TIPOBinary lossless raster image format
STANDARDAperto · royalty-free
MAGIC BYTES · FIRMA DEL FILE
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.

Programmi che aprono file 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 A pagamento 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.

Dettagli tecnici

specifiche approfondite
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.
Rilasciato2021-11-24
Ultima versione1.0 (2022-01-05)
Standard aperto · royalty-free
Specificaqoiformat.org

Conversioni QOI

Domande e risposte della community

chiesto dagli utenti
Fai una domanda veloce
Ottieni aiuto da persone che lavorano con i file QOI. Sii specifico - includi il tuo sistema e la versione del software.
Nessun account necessario · risposte solitamente entro un giorno

Ancora nessuna domanda - sii il primo a chiedere informazioni sui file QOI.

Domande frequenti

Come si apre un file QOI?
Utilizza un visualizzatore o un editor di immagini che supporti il formato, come XnView MP, IrfanView con il suo plugin, GIMP 3 o ImageMagick. Su Windows 11 con PowerToys installati, puoi anche vedere anteprime e miniature .qoi direttamente in Esplora file.
Come si converte un file QOI in PNG?
Esegui lo strumento ufficiale qoiconv input.qoi output.png, oppure usa ImageMagick con magick input.qoi output.png. Entrambi sono lossless, quindi il PNG conterrà esattamente gli stessi pixel.
QOI è migliore di PNG?
Codifica circa 20-50 volte più velocemente e decodifica 3-4 volte più velocemente di PNG a parità di dimensioni del file, il che lo rende utile per giochi e strumenti di sviluppo. PNG solitamente comprime un po' di più ed è supportato quasi ovunque, quindi QOI rappresenta un compromesso tra velocità e semplicità piuttosto che una sostituzione diretta.
QOI è lossless?
Sì. QOI memorizza ogni pixel in modo esatto e i ricercatori dell'EPFL hanno verificato formalmente nel 2022 che la sua compressione è senza perdita.
QOI supporta la trasparenza?
Sì. QOI gestisce immagini RGBA a 32 bit, quindi viene preservato un canale alfa a 8 bit. I file contrassegnati con 3 canali sono solo RGB opachi.
I file QOI sono sicuri da aprire?
Sì. Un file .qoi contiene solo dati d'immagine senza script o programmi incorporati, quindi aprirne uno in un visualizzatore aggiornato comporta rischi minimi.

Riferimenti

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

Continua a esplorare

nel database

Migliori estensioni della settimana

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

Estensioni correlate

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

Strumenti file gratuiti

Un identificatore di file e convertitore di immagini nel browser - tutto viene eseguito sul tuo dispositivo.

Apri la cassetta degli attrezzi

Sfoglia le estensioni dei file A-Z