vqoi
1.0.0
Implementasi QOI dalam V murni.
QOI cepat. Ini mengkompres gambar secara lossless ke ukuran PNG yang serupa, sekaligus menawarkan pengkodean 20x-50x lebih cepat dan decoding 3x-4x lebih cepat.
QOI itu sederhana. Referensi en-/decoder muat dalam sekitar 300 baris C. Spesifikasi format file adalah satu halaman 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
}