.QOI

QOI ファイル

Quite OK Image Format
質問する
クイック回答

.qoiファイルは、Dominic Szablewski氏によって2021年に作成された、PNGに代わる高速なオープンフォーマットのロスレス(可逆圧縮)ラスター画像です。シンプルなバイトアライメント圧縮スキームを使用して、24ビットRGBまたは32ビットRGBAピクセルを保存します。.qoiファイルは、XnView MP、IrfanView(プラグインが必要)、GIMP 3、ImageMagickなどの画像ビューアやエディタで開くことができ、PowerToysをインストールしたWindows 11ではエクスプローラーでサムネイルやプレビューを表示できます。

開発元: Dominic Szablewski (phoboslab) カテゴリ: プラグインファイル オープンスタンダード MIME: image/qoi
対応OS Windows macOS Linux
関連: .JPG · .PNG · .TIF · .ECW

このページの内容

19k+ 個の拡張子を索引済み
最終確認日:Jun 17, 2026

ファイルの種類がわかりませんか?

ファイルを識別ツールにドロップしてください。最初の数バイトを読み取って形式を特定します。

ファイルを識別する

QOI ファイル形式とは?

.qoiファイルは、Dominic Szablewski氏によって作成され、2021年11月24日にリリースされたロスレス画像フォーマット「Quite OK Image」です。.pngよりもはるかにシンプルかつ高速でありながら、ほぼ同等のファイルサイズを実現するように設計されています。仕様書全体がわずか1ページに収まり、リファレンスのエンコーダとデコーダはC言語で約300行という軽量さです。

内部構造として、.qoiファイルはASCIIマーカーのqoifで始まる14バイトのヘッダーから始まり、その後に画像の幅と高さ、チャンネル数(RGBの場合は3、RGBAの場合は4)、およびカラースペースのバイトが続きます。その後のピクセルデータは、ランレングス符号化、直近に使用された色の小さなキャッシュ、および前のピクセルとの差分符号化(デルタ符号化)を使用して圧縮されます。このフォーマットは完全なロスレスであり、8ビットのアルファチャンネルをサポートし、CC0ライセンスの下でパブリックドメインとして公開されています。

セキュリティと安全性

リスク: 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.

形式の詳細

概要
正式名称Quite OK Image Format別名 Quite OK Image, QOI image
開発元Dominic Szablewski (phoboslab)登場時期 2021-11-24
MIME タイプimage/qoi
タイプBinary lossless raster image format
標準規格オープン・ロイヤリティフリー
マジックバイト ・ ファイルシグネチャ
オフセット
00010203
16進数
716F6966
ASCII
qoif
Fixed 4-byte signature at the start of the 14-byte header. The four ASCII characters q, o, i, f.

QOI ファイルを開くプログラム

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

技術的詳細

詳細仕様
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.
リリース日2021-11-24
最新バージョン1.0 (2022-01-05)
オープンスタンダードはい · ロイヤリティフリー
仕様書qoiformat.org

QOI の変換

コミュニティ Q&A

ユーザーからの質問
質問する
QOI ファイルを扱うユーザーからヘルプを得られます。OSやソフトウェアのバージョンなど、具体的に記載してください。
アカウント不要 ・ 通常1日以内に回答されます

まだ質問はありません。QOI ファイルについて最初の質問をしてみましょう。

よくある質問

QOIファイルを開くにはどうすればよいですか?
XnView MP、IrfanView(プラグインが必要)、GIMP 3、ImageMagickなど、このフォーマットをサポートする画像ビューアやエディタを使用してください。PowerToysをインストールしたWindows 11では、エクスプローラーで直接.qoiのプレビューやサムネイルを確認することもできます。
QOIファイルをPNGに変換するにはどうすればよいですか?
公式ツールの qoiconv input.qoi output.png を実行するか、ImageMagickで magick input.qoi output.png を使用してください。どちらもロスレスであるため、PNGには全く同じピクセルが含まれます。
QOIはPNGよりも優れていますか?
同等のファイルサイズでありながら、PNGよりもエンコードは約20〜50倍、デコードは約3〜4倍高速であるため、ゲームやツールでの利用に便利です。通常、PNGの方がわずかに圧縮率が高く、ほぼどこでもサポートされているため、QOIは汎用性よりも速度とシンプルさを重視した選択肢と言えます。
QOIはロスレスですか?
はい。QOIはすべてのピクセルを正確に保存します。2022年にはEPFLの研究者によって、その圧縮がロスレスであることが正式に検証されました。
QOIは透明度をサポートしていますか?
はい。QOIは32ビットRGBA画像を処理できるため、8ビットのアルファチャンネルが保持されます。3チャンネルとしてマークされたファイルは、不透明なRGBのみとなります。
QOIファイルは安全に開けますか?
はい。.qoiファイルには画像データのみが含まれ、スクリプトや埋め込みプログラムは含まれていないため、最新のビューアで開く際のリスクはほとんどありません。

参考文献

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

さらに探索

データベース全体から

今週のトップ拡張子

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

関連する拡張子

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

無料ファイルツール

ブラウザで動作するファイル識別および画像変換ツール。すべてお使いのデバイス上で実行されます。

ツールボックスを開く

ファイル拡張子を A-Z で閲覧