vqoi
1.0.0
QOI-Implementierung in reinem V.
QOI ist schnell. Es komprimiert Bilder verlustfrei auf eine ähnliche Größe wie PNG und bietet gleichzeitig eine 20- bis 50-mal schnellere Kodierung und eine 3- bis 4-mal schnellere Dekodierung.
QOI ist einfach. Der Referenz-En-/Decoder passt in etwa 300 Zeilen C. Die Dateiformatspezifikation ist ein einseitiges PDF.
import vqoi
import os
fn main () {
width := 500
height := 400
rgba := [][ 4 ] u8 {len: width * height, init: [ u8 ( 255 ), 0 , 0 , 255 ] ! }
metadata := vqoi.ImageMetadata{ u32 (width), u32 (height), .rgba, .srgb}
image := vqoi.Image{rgba, metadata}
data := vqoi. encode (image)
os. write_file ( 'hello.qoi' , data. bytestr ()) !
decoded_image := vqoi. decode (data) !
assert decoded_image == image
}