2021-11-24 11:07:17 +01:00
|
|
|
/*
|
|
|
|
|
2021-11-26 22:51:22 +01:00
|
|
|
QOI - The "Quite OK Image" format for fast, lossless image compression
|
2021-11-24 11:07:17 +01:00
|
|
|
|
|
|
|
Dominic Szablewski - https://phoboslab.org
|
|
|
|
|
|
|
|
|
|
|
|
-- LICENSE: The MIT License(MIT)
|
|
|
|
|
|
|
|
Copyright(c) 2021 Dominic Szablewski
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files(the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and / or sell copies
|
|
|
|
of the Software, and to permit persons to whom the Software is furnished to do
|
|
|
|
so, subject to the following conditions :
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
SOFTWARE.
|
|
|
|
|
|
|
|
|
|
|
|
-- About
|
|
|
|
|
|
|
|
QOI encodes and decodes images in a lossless format. An encoded QOI image is
|
|
|
|
usually around 10--30% larger than a decently optimized PNG image.
|
|
|
|
|
|
|
|
QOI outperforms simpler PNG encoders in compression ratio and performance. QOI
|
|
|
|
images are typically 20% smaller than PNGs written with stbi_image but 10%
|
|
|
|
larger than with libpng. Encoding is 25-50x faster and decoding is 3-4x faster
|
|
|
|
than stbi_image or libpng.
|
|
|
|
|
|
|
|
|
|
|
|
-- Synopsis
|
|
|
|
|
|
|
|
// Define `QOI_IMPLEMENTATION` in *one* C/C++ file before including this
|
|
|
|
// library to create the implementation.
|
|
|
|
|
|
|
|
#define QOI_IMPLEMENTATION
|
|
|
|
#include "qoi.h"
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
// Encode and store an RGBA buffer to the file system. The qoi_desc describes
|
|
|
|
// the input pixel data.
|
|
|
|
qoi_write("image_new.qoi", rgba_pixels, &(qoi_desc){
|
|
|
|
.width = 1920,
|
|
|
|
.height = 1080,
|
|
|
|
.channels = 4,
|
|
|
|
.colorspace = QOI_SRGB
|
|
|
|
});
|
|
|
|
|
|
|
|
// Load and decode a QOI image from the file system into a 32bbp RGBA buffer.
|
|
|
|
// The qoi_desc struct will be filled with the width, height, number of channels
|
|
|
|
// and colorspace read from the file header.
|
|
|
|
qoi_desc desc;
|
|
|
|
void *rgba_pixels = qoi_read("image.qoi", &desc, 4);
|
2021-11-24 11:07:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Documentation
|
|
|
|
|
|
|
|
This library provides the following functions;
|
|
|
|
- qoi_read -- read and decode a QOI file
|
|
|
|
- qoi_decode -- decode the raw bytes of a QOI image from memory
|
|
|
|
- qoi_write -- encode and write a QOI file
|
|
|
|
- qoi_encode -- encode an rgba buffer into a QOI image in memory
|
|
|
|
|
|
|
|
See the function declaration below for the signature and more information.
|
|
|
|
|
|
|
|
If you don't want/need the qoi_read and qoi_write functions, you can define
|
|
|
|
QOI_NO_STDIO before including this library.
|
|
|
|
|
|
|
|
This library uses malloc() and free(). To supply your own malloc implementation
|
|
|
|
you can define QOI_MALLOC and QOI_FREE before including this library.
|
|
|
|
|
|
|
|
|
|
|
|
-- Data Format
|
|
|
|
|
2021-11-27 18:41:02 +01:00
|
|
|
A QOI file has a 14 byte header, followed by any number of data "chunks".
|
2021-11-24 11:07:17 +01:00
|
|
|
|
|
|
|
struct qoi_header_t {
|
2021-11-27 17:23:52 +01:00
|
|
|
char magic[4]; // magic bytes "qoif"
|
|
|
|
uint32_t width; // image width in pixels (BE)
|
|
|
|
uint32_t height; // image height in pixels (BE)
|
|
|
|
uint8_t channels; // must be 3 (RGB) or 4 (RGBA)
|
|
|
|
uint8_t colorspace; // a bitmap 0000rgba where
|
|
|
|
// - a zero bit indicates sRGBA,
|
|
|
|
// - a one bit indicates linear (user interpreted)
|
|
|
|
// colorspace for each channel
|
2021-11-24 11:07:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
The decoder and encoder start with {r: 0, g: 0, b: 0, a: 255} as the previous
|
|
|
|
pixel value. Pixels are either encoded as
|
|
|
|
- a run of the previous pixel
|
|
|
|
- an index into a previously seen pixel
|
|
|
|
- a difference to the previous pixel value in r,g,b,a
|
|
|
|
- full r,g,b,a values
|
|
|
|
|
|
|
|
A running array[64] of previously seen pixel values is maintained by the encoder
|
|
|
|
and decoder. Each pixel that is seen by the encoder and decoder is put into this
|
|
|
|
array at the position (r^g^b^a) % 64. In the encoder, if the pixel value at this
|
|
|
|
index matches the current pixel, this index position is written to the stream.
|
|
|
|
|
|
|
|
Each chunk starts with a 2, 3 or 4 bit tag, followed by a number of data bits.
|
|
|
|
The bit length of chunks is divisible by 8 - i.e. all chunks are byte aligned.
|
|
|
|
|
2021-11-28 01:08:52 +01:00
|
|
|
The possible chunks are:
|
|
|
|
|
|
|
|
| QOI_INDEX |
|
|
|
|
| Byte + 0 |
|
|
|
|
| 7 6 5 4 3 2 1 0 |
|
|
|
|
|-------------------------|
|
|
|
|
| 0 0 i5 i4 i3 i2 i1 i0 |
|
|
|
|
|
|
|
|
i5...i0 forming the 6-bit index into the color index array: 0..63
|
|
|
|
|
|
|
|
|
|
|
|
| QOI_INDEX |
|
|
|
|
| Byte + 0 |
|
|
|
|
| 7 6 5 4 3 2 1 0 |
|
|
|
|
|-------------------------|
|
|
|
|
| 0 1 0 i4 i3 i2 i1 i0 |
|
|
|
|
|
|
|
|
i4...i0 forming the 5-bit run-length repeating the previous pixel: 1..32
|
|
|
|
|
|
|
|
|
|
|
|
| QOI_RUN_16 |
|
|
|
|
| Byte + 0 | Byte + 1 |
|
|
|
|
| 7 6 5 4 3 2 1 0 | 7 6 5 4 3 2 1 0 |
|
|
|
|
|--------------------------------|-------------------------|
|
|
|
|
| 0 1 1 r12 r11 r10 r9 r8 | r7 r6 r5 r4 r3 r2 r1 r0 |
|
|
|
|
|
|
|
|
r12...r0 forming the 13-bit run-length repeating the previous pixel: 33..8224
|
|
|
|
|
|
|
|
|
|
|
|
| QOI_DIFF_8 |
|
|
|
|
| Byte + 0 |
|
|
|
|
| 7 6 5 4 3 2 1 0 |
|
|
|
|
|-------------------------|
|
|
|
|
| 1 0 r1 r0 g1 g0 b1 b0 |
|
|
|
|
|
|
|
|
r1...r0 forming the red channel difference between -2..1
|
|
|
|
g1...g0 forming the green channel difference between -2..1
|
|
|
|
b1...b0 forming the blue channel difference between -2..1
|
|
|
|
|
|
|
|
|
|
|
|
| QOI_DIFF_16 |
|
|
|
|
| Byte + 0 | Byte + 1 |
|
|
|
|
| 7 6 5 4 3 2 1 0 | 7 6 5 4 3 2 1 0 |
|
|
|
|
|-------------------------|-------------------------|
|
|
|
|
| 1 1 0 r4 r3 r2 r1 r0 | g3 g2 g1 g0 b3 b2 b1 b0 |
|
|
|
|
|
|
|
|
r4...r0 forming the red channel difference between -16..15
|
|
|
|
g3...g0 forming the green channel difference between -8..7
|
|
|
|
b3...b0 forming the blue channel difference between -8..7
|
|
|
|
|
|
|
|
|
|
|
|
| QOI_DIFF_24 |
|
|
|
|
| Byte + 0 | Byte + 1 | Byte + 1 |
|
|
|
|
| 7 6 5 4 3 2 1 0 | 7 6 5 4 3 2 1 0 | 7 6 5 4 3 2 1 0 |
|
|
|
|
|-------------------------|-------------------------|-------------------------|
|
|
|
|
| 1 1 1 0 r4 r3 r2 r1 | r0 g4 g3 g2 g1 g0 b4 b3 | b2 b1 b0 a4 a3 a2 a1 a0 |
|
|
|
|
|
|
|
|
r4...r0 forming the red channel difference between -16..15
|
|
|
|
g4...g0 forming the green channel difference between -16..15
|
|
|
|
b4...b0 forming the blue channel difference between -16..15
|
|
|
|
a4...a0 forming the alpha channel difference between -16..15
|
|
|
|
|
|
|
|
|
|
|
|
| QOI_COLOR |
|
|
|
|
| Byte + 0 |
|
|
|
|
| 7 6 5 4 3 2 1 0 |
|
|
|
|
|-------------------------|
|
|
|
|
| 1 1 1 1 r g b a |
|
|
|
|
|
|
|
|
for each set bit r, g, b and a another byte follows in the order written here. If such a byte follows,
|
|
|
|
it will replace the current color channel value with the value of this byte.
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
|
2021-11-24 22:09:08 +01:00
|
|
|
The byte stream is padded with 4 zero bytes. Size the longest chunk we can
|
|
|
|
encounter is 5 bytes (QOI_COLOR with RGBA set), with this padding we just have
|
|
|
|
to check for an overrun once per decode loop iteration.
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Header - Public functions
|
|
|
|
|
|
|
|
#ifndef QOI_H
|
|
|
|
#define QOI_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
// A pointer to qoi_desc struct has to be supplied to all of qoi's functions. It
|
|
|
|
// describes either the input format (for qoi_write, qoi_encode), or is filled
|
|
|
|
// with the description read from the file header (for qoi_read, qoi_decode).
|
|
|
|
|
|
|
|
// The colorspace in this qoi_desc is a bitmap with 0000rgba where a 0-bit
|
|
|
|
// indicates sRGB and a 1-bit indicates linear colorspace for each channel. You
|
|
|
|
// may use one of the predefined constants: QOI_SRGB, QOI_SRGB_LINEAR_ALPHA or
|
|
|
|
// QOI_LINEAR. The colorspace is purely informative. It will be saved to the
|
|
|
|
// file header, but does not affect en-/decoding in any way.
|
|
|
|
|
|
|
|
#define QOI_SRGB 0x00
|
|
|
|
#define QOI_SRGB_LINEAR_ALPHA 0x01
|
|
|
|
#define QOI_LINEAR 0x0f
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
unsigned int width;
|
|
|
|
unsigned int height;
|
|
|
|
unsigned char channels;
|
|
|
|
unsigned char colorspace;
|
|
|
|
} qoi_desc;
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
#ifndef QOI_NO_STDIO
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
// Encode raw RGB or RGBA pixels into a QOI image and write it to the file
|
|
|
|
// system. The qoi_desc struct must be filled with the image width, height,
|
|
|
|
// number of channels (3 = RGB, 4 = RGBA) and the colorspace.
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
// The function returns 0 on failure (invalid parameters, or fopen or malloc
|
|
|
|
// failed) or the number of bytes written on success.
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
int qoi_write(const char *filename, const void *data, const qoi_desc *desc);
|
2021-11-24 11:07:17 +01:00
|
|
|
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
// Read and decode a QOI image from the file system. If channels is 0, the
|
|
|
|
// number of channels from the file header is used. If channels is 3 or 4 the
|
|
|
|
// output format will be forced into this number of channels.
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
// The function either returns NULL on failure (invalid data, or malloc or fopen
|
2021-11-27 18:36:17 +01:00
|
|
|
// failed) or a pointer to the decoded pixels. On success, the qoi_desc struct
|
|
|
|
// will be filled with the description from the file header.
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
// The returned pixel data should be free()d after use.
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
void *qoi_read(const char *filename, qoi_desc *desc, int channels);
|
2021-11-24 11:07:17 +01:00
|
|
|
|
|
|
|
#endif // QOI_NO_STDIO
|
|
|
|
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
// Encode raw RGB or RGBA pixels into a QOI image in memory.
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
// The function either returns NULL on failure (invalid parameters or malloc
|
2021-11-27 18:36:17 +01:00
|
|
|
// failed) or a pointer to the encoded data on success. On success the out_len
|
2021-11-24 11:07:17 +01:00
|
|
|
// is set to the size in bytes of the encoded data.
|
2021-11-27 18:36:17 +01:00
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
// The returned qoi data should be free()d after user.
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
void *qoi_encode(const void *data, const qoi_desc *desc, int *out_len);
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
// Decode a QOI image from memory.
|
2021-11-24 11:07:17 +01:00
|
|
|
|
|
|
|
// The function either returns NULL on failure (invalid parameters or malloc
|
2021-11-27 18:36:17 +01:00
|
|
|
// failed) or a pointer to the decoded pixels. On success, the qoi_desc struct
|
|
|
|
// is filled with the description from the file header.
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
// The returned pixel data should be free()d after use.
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
void *qoi_decode(const void *data, int size, qoi_desc *desc, int channels);
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif // QOI_H
|
|
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
|
|
|
#ifdef QOI_IMPLEMENTATION
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifndef QOI_MALLOC
|
|
|
|
#define QOI_MALLOC(sz) malloc(sz)
|
|
|
|
#define QOI_FREE(p) free(p)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define QOI_INDEX 0x00 // 00xxxxxx
|
|
|
|
#define QOI_RUN_8 0x40 // 010xxxxx
|
|
|
|
#define QOI_RUN_16 0x60 // 011xxxxx
|
|
|
|
#define QOI_DIFF_8 0x80 // 10xxxxxx
|
|
|
|
#define QOI_DIFF_16 0xc0 // 110xxxxx
|
|
|
|
#define QOI_DIFF_24 0xe0 // 1110xxxx
|
|
|
|
#define QOI_COLOR 0xf0 // 1111xxxx
|
|
|
|
|
|
|
|
#define QOI_MASK_2 0xc0 // 11000000
|
|
|
|
#define QOI_MASK_3 0xe0 // 11100000
|
|
|
|
#define QOI_MASK_4 0xf0 // 11110000
|
|
|
|
|
|
|
|
#define QOI_COLOR_HASH(C) (C.rgba.r ^ C.rgba.g ^ C.rgba.b ^ C.rgba.a)
|
2021-11-25 13:51:05 +01:00
|
|
|
#define QOI_MAGIC \
|
|
|
|
(((unsigned int)'q') << 24 | ((unsigned int)'o') << 16 | \
|
|
|
|
((unsigned int)'i') << 8 | ((unsigned int)'f'))
|
2021-11-27 18:41:02 +01:00
|
|
|
#define QOI_HEADER_SIZE 14
|
2021-11-24 22:09:08 +01:00
|
|
|
#define QOI_PADDING 4
|
2021-11-24 11:07:17 +01:00
|
|
|
|
|
|
|
typedef union {
|
|
|
|
struct { unsigned char r, g, b, a; } rgba;
|
|
|
|
unsigned int v;
|
|
|
|
} qoi_rgba_t;
|
|
|
|
|
2021-11-26 13:22:00 +01:00
|
|
|
void qoi_write_32(unsigned char *bytes, int *p, unsigned int v) {
|
2021-11-27 17:23:52 +01:00
|
|
|
bytes[(*p)++] = (0xff000000 & v) >> 24;
|
|
|
|
bytes[(*p)++] = (0x00ff0000 & v) >> 16;
|
|
|
|
bytes[(*p)++] = (0x0000ff00 & v) >> 8;
|
|
|
|
bytes[(*p)++] = (0x000000ff & v);
|
2021-11-26 13:22:00 +01:00
|
|
|
}
|
|
|
|
|
2021-11-27 17:23:52 +01:00
|
|
|
unsigned int qoi_read_32(const unsigned char *bytes, int *p) {
|
2021-11-26 13:22:00 +01:00
|
|
|
unsigned int a = bytes[(*p)++];
|
|
|
|
unsigned int b = bytes[(*p)++];
|
2021-11-27 17:23:52 +01:00
|
|
|
unsigned int c = bytes[(*p)++];
|
|
|
|
unsigned int d = bytes[(*p)++];
|
|
|
|
return (a << 24) | (b << 16) | (c << 8) | d;
|
2021-11-26 13:22:00 +01:00
|
|
|
}
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
void *qoi_encode(const void *data, const qoi_desc *desc, int *out_len) {
|
2021-11-24 11:07:17 +01:00
|
|
|
if (
|
2021-11-27 18:36:17 +01:00
|
|
|
data == NULL || out_len == NULL || desc == NULL ||
|
|
|
|
desc->width == 0 || desc->height == 0 ||
|
|
|
|
desc->channels < 3 || desc->channels > 4 ||
|
|
|
|
(desc->colorspace & 0xf0) != 0
|
2021-11-24 11:07:17 +01:00
|
|
|
) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
int max_size =
|
|
|
|
desc->width * desc->height * (desc->channels + 1) +
|
|
|
|
QOI_HEADER_SIZE + QOI_PADDING;
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
int p = 0;
|
|
|
|
unsigned char *bytes = QOI_MALLOC(max_size);
|
|
|
|
if (!bytes) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-11-26 13:22:00 +01:00
|
|
|
qoi_write_32(bytes, &p, QOI_MAGIC);
|
2021-11-27 18:36:17 +01:00
|
|
|
qoi_write_32(bytes, &p, desc->width);
|
|
|
|
qoi_write_32(bytes, &p, desc->height);
|
|
|
|
bytes[p++] = desc->channels;
|
|
|
|
bytes[p++] = desc->colorspace;
|
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
|
|
|
|
const unsigned char *pixels = (const unsigned char *)data;
|
|
|
|
|
|
|
|
qoi_rgba_t index[64] = {0};
|
|
|
|
|
|
|
|
int run = 0;
|
|
|
|
qoi_rgba_t px_prev = {.rgba = {.r = 0, .g = 0, .b = 0, .a = 255}};
|
|
|
|
qoi_rgba_t px = px_prev;
|
2021-11-27 18:36:17 +01:00
|
|
|
|
|
|
|
int px_len = desc->width * desc->height * desc->channels;
|
|
|
|
int px_end = px_len - desc->channels;
|
|
|
|
for (int px_pos = 0; px_pos < px_len; px_pos += desc->channels) {
|
|
|
|
if (desc->channels == 4) {
|
2021-11-24 11:07:17 +01:00
|
|
|
px = *(qoi_rgba_t *)(pixels + px_pos);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
px.rgba.r = pixels[px_pos];
|
|
|
|
px.rgba.g = pixels[px_pos+1];
|
|
|
|
px.rgba.b = pixels[px_pos+2];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (px.v == px_prev.v) {
|
|
|
|
run++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (run > 0 && (run == 0x2020 || px.v != px_prev.v || px_pos == px_end)) {
|
|
|
|
if (run < 33) {
|
|
|
|
run -= 1;
|
|
|
|
bytes[p++] = QOI_RUN_8 | run;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
run -= 33;
|
|
|
|
bytes[p++] = QOI_RUN_16 | run >> 8;
|
|
|
|
bytes[p++] = run;
|
|
|
|
}
|
|
|
|
run = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (px.v != px_prev.v) {
|
|
|
|
int index_pos = QOI_COLOR_HASH(px) % 64;
|
|
|
|
|
|
|
|
if (index[index_pos].v == px.v) {
|
|
|
|
bytes[p++] = QOI_INDEX | index_pos;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
index[index_pos] = px;
|
|
|
|
|
|
|
|
int vr = px.rgba.r - px_prev.rgba.r;
|
|
|
|
int vg = px.rgba.g - px_prev.rgba.g;
|
|
|
|
int vb = px.rgba.b - px_prev.rgba.b;
|
|
|
|
int va = px.rgba.a - px_prev.rgba.a;
|
|
|
|
|
|
|
|
if (
|
2021-11-27 17:23:52 +01:00
|
|
|
vr > -17 && vr < 16 && vg > -17 && vg < 16 &&
|
|
|
|
vb > -17 && vb < 16 && va > -17 && va < 16
|
2021-11-24 11:07:17 +01:00
|
|
|
) {
|
|
|
|
if (
|
2021-11-27 17:23:52 +01:00
|
|
|
va == 0 && vr > -3 && vr < 2 &&
|
|
|
|
vg > -3 && vg < 2 && vb > -3 && vb < 2
|
2021-11-24 11:07:17 +01:00
|
|
|
) {
|
2021-11-27 17:23:52 +01:00
|
|
|
bytes[p++] = QOI_DIFF_8 | ((vr + 2) << 4) | (vg + 2) << 2 | (vb + 2);
|
2021-11-24 11:07:17 +01:00
|
|
|
}
|
|
|
|
else if (
|
2021-11-27 17:23:52 +01:00
|
|
|
va == 0 && vr > -17 && vr < 16 &&
|
|
|
|
vg > -9 && vg < 8 && vb > -9 && vb < 8
|
2021-11-24 11:07:17 +01:00
|
|
|
) {
|
2021-11-27 17:23:52 +01:00
|
|
|
bytes[p++] = QOI_DIFF_16 | (vr + 16);
|
|
|
|
bytes[p++] = ((vg + 8) << 4) | (vb + 8);
|
2021-11-24 11:07:17 +01:00
|
|
|
}
|
|
|
|
else {
|
2021-11-27 17:23:52 +01:00
|
|
|
bytes[p++] = QOI_DIFF_24 | ((vr + 16) >> 1);
|
|
|
|
bytes[p++] = ((vr + 16) << 7) | ((vg + 16) << 2) | ((vb + 16) >> 3);
|
|
|
|
bytes[p++] = ((vb + 16) << 5) | (va + 16);
|
2021-11-24 11:07:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bytes[p++] = QOI_COLOR | (vr?8:0)|(vg?4:0)|(vb?2:0)|(va?1:0);
|
|
|
|
if (vr) { bytes[p++] = px.rgba.r; }
|
|
|
|
if (vg) { bytes[p++] = px.rgba.g; }
|
|
|
|
if (vb) { bytes[p++] = px.rgba.b; }
|
|
|
|
if (va) { bytes[p++] = px.rgba.a; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
px_prev = px;
|
|
|
|
}
|
|
|
|
|
2021-11-24 22:09:08 +01:00
|
|
|
for (int i = 0; i < QOI_PADDING; i++) {
|
2021-11-24 11:07:17 +01:00
|
|
|
bytes[p++] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out_len = p;
|
|
|
|
return bytes;
|
|
|
|
}
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
void *qoi_decode(const void *data, int size, qoi_desc *desc, int channels) {
|
|
|
|
if (
|
|
|
|
data == NULL || desc == NULL ||
|
|
|
|
(channels != 0 && channels != 3 && channels != 4) ||
|
|
|
|
size < QOI_HEADER_SIZE + QOI_PADDING
|
|
|
|
) {
|
2021-11-24 11:07:17 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-11-25 13:51:05 +01:00
|
|
|
const unsigned char *bytes = (const unsigned char *)data;
|
|
|
|
int p = 0;
|
|
|
|
|
2021-11-27 17:23:52 +01:00
|
|
|
unsigned int header_magic = qoi_read_32(bytes, &p);
|
2021-11-27 18:36:17 +01:00
|
|
|
desc->width = qoi_read_32(bytes, &p);
|
|
|
|
desc->height = qoi_read_32(bytes, &p);
|
|
|
|
desc->channels = bytes[p++];
|
|
|
|
desc->colorspace = bytes[p++];
|
2021-11-25 13:51:05 +01:00
|
|
|
|
2021-11-24 11:07:17 +01:00
|
|
|
if (
|
2021-11-27 18:36:17 +01:00
|
|
|
desc->width == 0 || desc->height == 0 ||
|
|
|
|
desc->channels < 3 || desc->channels > 4 ||
|
2021-11-27 17:23:52 +01:00
|
|
|
header_magic != QOI_MAGIC
|
2021-11-24 11:07:17 +01:00
|
|
|
) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
if (channels == 0) {
|
|
|
|
channels = desc->channels;
|
|
|
|
}
|
|
|
|
|
|
|
|
int px_len = desc->width * desc->height * channels;
|
2021-11-24 11:07:17 +01:00
|
|
|
unsigned char *pixels = QOI_MALLOC(px_len);
|
|
|
|
if (!pixels) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
qoi_rgba_t px = {.rgba = {.r = 0, .g = 0, .b = 0, .a = 255}};
|
|
|
|
qoi_rgba_t index[64] = {0};
|
|
|
|
|
|
|
|
int run = 0;
|
2021-11-25 13:51:05 +01:00
|
|
|
int chunks_len = size - QOI_PADDING;
|
|
|
|
for (int px_pos = 0; px_pos < px_len; px_pos += channels) {
|
2021-11-24 11:07:17 +01:00
|
|
|
if (run > 0) {
|
|
|
|
run--;
|
|
|
|
}
|
2021-11-25 13:51:05 +01:00
|
|
|
else if (p < chunks_len) {
|
2021-11-24 11:07:17 +01:00
|
|
|
int b1 = bytes[p++];
|
|
|
|
|
|
|
|
if ((b1 & QOI_MASK_2) == QOI_INDEX) {
|
|
|
|
px = index[b1 ^ QOI_INDEX];
|
|
|
|
}
|
|
|
|
else if ((b1 & QOI_MASK_3) == QOI_RUN_8) {
|
|
|
|
run = (b1 & 0x1f);
|
|
|
|
}
|
|
|
|
else if ((b1 & QOI_MASK_3) == QOI_RUN_16) {
|
|
|
|
int b2 = bytes[p++];
|
|
|
|
run = (((b1 & 0x1f) << 8) | (b2)) + 32;
|
|
|
|
}
|
|
|
|
else if ((b1 & QOI_MASK_2) == QOI_DIFF_8) {
|
2021-11-27 17:23:52 +01:00
|
|
|
px.rgba.r += ((b1 >> 4) & 0x03) - 2;
|
|
|
|
px.rgba.g += ((b1 >> 2) & 0x03) - 2;
|
|
|
|
px.rgba.b += ( b1 & 0x03) - 2;
|
2021-11-24 11:07:17 +01:00
|
|
|
}
|
|
|
|
else if ((b1 & QOI_MASK_3) == QOI_DIFF_16) {
|
|
|
|
int b2 = bytes[p++];
|
2021-11-27 17:23:52 +01:00
|
|
|
px.rgba.r += (b1 & 0x1f) - 16;
|
|
|
|
px.rgba.g += (b2 >> 4) - 8;
|
|
|
|
px.rgba.b += (b2 & 0x0f) - 8;
|
2021-11-24 11:07:17 +01:00
|
|
|
}
|
|
|
|
else if ((b1 & QOI_MASK_4) == QOI_DIFF_24) {
|
|
|
|
int b2 = bytes[p++];
|
|
|
|
int b3 = bytes[p++];
|
2021-11-27 17:23:52 +01:00
|
|
|
px.rgba.r += (((b1 & 0x0f) << 1) | (b2 >> 7)) - 16;
|
|
|
|
px.rgba.g += ((b2 & 0x7c) >> 2) - 16;
|
|
|
|
px.rgba.b += (((b2 & 0x03) << 3) | ((b3 & 0xe0) >> 5)) - 16;
|
|
|
|
px.rgba.a += (b3 & 0x1f) - 16;
|
2021-11-24 11:07:17 +01:00
|
|
|
}
|
|
|
|
else if ((b1 & QOI_MASK_4) == QOI_COLOR) {
|
|
|
|
if (b1 & 8) { px.rgba.r = bytes[p++]; }
|
|
|
|
if (b1 & 4) { px.rgba.g = bytes[p++]; }
|
|
|
|
if (b1 & 2) { px.rgba.b = bytes[p++]; }
|
|
|
|
if (b1 & 1) { px.rgba.a = bytes[p++]; }
|
|
|
|
}
|
|
|
|
|
|
|
|
index[QOI_COLOR_HASH(px) % 64] = px;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (channels == 4) {
|
|
|
|
*(qoi_rgba_t*)(pixels + px_pos) = px;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pixels[px_pos] = px.rgba.r;
|
|
|
|
pixels[px_pos+1] = px.rgba.g;
|
|
|
|
pixels[px_pos+2] = px.rgba.b;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pixels;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef QOI_NO_STDIO
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
int qoi_write(const char *filename, const void *data, const qoi_desc *desc) {
|
2021-11-24 11:07:17 +01:00
|
|
|
int size;
|
2021-11-27 18:36:17 +01:00
|
|
|
void *encoded = qoi_encode(data, desc, &size);
|
2021-11-24 11:07:17 +01:00
|
|
|
if (!encoded) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *f = fopen(filename, "wb");
|
|
|
|
if (!f) {
|
|
|
|
QOI_FREE(encoded);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fwrite(encoded, 1, size, f);
|
|
|
|
fclose(f);
|
|
|
|
QOI_FREE(encoded);
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
void *qoi_read(const char *filename, qoi_desc *desc, int channels) {
|
2021-11-24 11:07:17 +01:00
|
|
|
FILE *f = fopen(filename, "rb");
|
|
|
|
if (!f) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
fseek(f, 0, SEEK_END);
|
|
|
|
int size = ftell(f);
|
|
|
|
fseek(f, 0, SEEK_SET);
|
|
|
|
|
|
|
|
void *data = QOI_MALLOC(size);
|
|
|
|
if (!data) {
|
2021-11-26 21:28:49 +01:00
|
|
|
fclose(f);
|
2021-11-24 11:07:17 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bytes_read = fread(data, 1, size, f);
|
|
|
|
fclose(f);
|
|
|
|
|
2021-11-27 18:36:17 +01:00
|
|
|
void *pixels = qoi_decode(data, bytes_read, desc, channels);
|
2021-11-24 11:07:17 +01:00
|
|
|
QOI_FREE(data);
|
|
|
|
return pixels;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // QOI_NO_STDIO
|
|
|
|
#endif // QOI_IMPLEMENTATION
|