-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathqoi_decoder.pl
135 lines (103 loc) · 3.64 KB
/
qoi_decoder.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/usr/bin/perl
# Implementation of the QOI decoder (generating a PNG file).
# See also:
# https://qoiformat.org/
# https://github.com/phoboslab/qoi
# https://yewtu.be/watch?v=EFUYNoFRHQI
use 5.020;
use warnings;
use Imager;
use experimental qw(signatures);
sub qoi_decoder ($bytes) {
my sub invalid() {
die "Not a QOIF image";
}
my $index = 0;
pack('C4', map { $bytes->[$index++] } 1 .. 4) eq 'qoif' or invalid();
my $width = unpack('N', pack('C4', map { $bytes->[$index++] } 1 .. 4));
my $height = unpack('N', pack('C4', map { $bytes->[$index++] } 1 .. 4));
my $channels = $bytes->[$index++];
my $colorspace = $bytes->[$index++];
($width > 0 and $height > 0) or invalid();
($channels > 0 and $channels <= 4) or invalid();
($colorspace == 0 or $colorspace == 1) or invalid();
pop(@$bytes) == 0x01 or invalid();
for (1 .. 7) {
pop(@$bytes) == 0x00 or invalid();
}
say "[$width, $height, $channels, $colorspace]";
my $img = 'Imager'->new(
xsize => $width,
ysize => $height,
channels => $channels,
);
my $run = 0;
my @px = (0, 0, 0, 255);
my @pixels;
my @colors = (map { [0, 0, 0, 0] } 1 .. 64);
while (1) {
if ($run > 0) {
--$run;
}
else {
my $byte = $bytes->[$index++] // last;
if ($byte == 0b11_11_11_10) { # OP RGB
$px[0] = $bytes->[$index++];
$px[1] = $bytes->[$index++];
$px[2] = $bytes->[$index++];
}
elsif ($byte == 0b11_11_11_11) { # OP RGBA
$px[0] = $bytes->[$index++];
$px[1] = $bytes->[$index++];
$px[2] = $bytes->[$index++];
$px[3] = $bytes->[$index++];
}
elsif (($byte >> 6) == 0b00) { # OP INDEX
@px = @{$colors[$byte]};
}
elsif (($byte >> 6) == 0b01) { # OP DIFF
my $dr = (($byte & 0b00_11_00_00) >> 4) - 2;
my $dg = (($byte & 0b00_00_11_00) >> 2) - 2;
my $db = (($byte & 0b00_00_00_11) >> 0) - 2;
($px[0] += $dr) %= 256;
($px[1] += $dg) %= 256;
($px[2] += $db) %= 256;
}
elsif (($byte >> 6) == 0b10) { # OP LUMA
my $byte2 = $bytes->[$index++];
my $dg = ($byte & 0b00_111_111) - 32;
my $dr_dg = ($byte2 >> 4) - 8;
my $db_dg = ($byte2 & 0b0000_1111) - 8;
my $dr = $dr_dg + $dg;
my $db = $db_dg + $dg;
($px[0] += $dr) %= 256;
($px[1] += $dg) %= 256;
($px[2] += $db) %= 256;
}
elsif (($byte >> 6) == 0b11) { # OP RUN
$run = ($byte & 0b00_111_111);
}
$colors[($px[0] * 3 + $px[1] * 5 + $px[2] * 7 + $px[3] * 11) % 64] = [@px];
}
push @pixels, @px;
}
foreach my $row (0 .. $height - 1) {
my @line = splice(@pixels, 0, 4 * $width);
$img->setscanline(y => $row, pixels => pack("C*", @line));
}
return $img;
}
@ARGV || do {
say STDERR "usage: $0 [input.qoi] [output.png]";
exit(2);
};
my $in_file = $ARGV[0];
my $out_file = $ARGV[1] // "$in_file.png";
my @bytes = do {
open(my $fh, '<:raw', $in_file)
or die "Can't open file <<$in_file>> for reading: $!";
local $/;
unpack("C*", scalar <$fh>);
};
my $img = qoi_decoder(\@bytes);
$img->write(file => $out_file, type => 'png');