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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
/*
* Copyright (c) 2021, Pierre Hoffmeister
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/String.h>
#include <LibCrypto/Checksum/CRC32.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/PNGWriter.h>
namespace Gfx {
class PNGChunk {
public:
explicit PNGChunk(String);
Vector<u8> const& data() const { return m_data; };
String const& type() const { return m_type; };
void add_u8(u8);
void add_u16_big(u16);
void add_u32_big(u32);
void add_u16_little(u16);
void add_u32_little(u32);
private:
Vector<u8> m_data;
String m_type;
};
class NonCompressibleBlock {
public:
void finalize(PNGChunk&);
void add_byte_to_block(u8 data, PNGChunk&);
u32 adler_s1() const { return m_adler_s1; }
u32 adler_s2() const { return m_adler_s2; }
private:
void add_block_to_chunk(PNGChunk&, bool);
void update_adler(u8);
bool full() { return m_non_compressible_data.size() == 65535; }
Vector<u8> m_non_compressible_data;
u32 m_adler_s1 { 1 };
u32 m_adler_s2 { 0 };
};
PNGChunk::PNGChunk(String type)
: m_type(move(type))
{
}
void PNGChunk::add_u8(u8 data)
{
m_data.append(data);
}
void PNGChunk::add_u16_little(u16 data)
{
m_data.append(data & 0xff);
m_data.append((data >> 8) & 0xff);
}
void PNGChunk::add_u32_little(u32 data)
{
m_data.append(data & 0xff);
m_data.append((data >> 8) & 0xff);
m_data.append((data >> 16) & 0xff);
m_data.append((data >> 24) & 0xff);
}
void PNGChunk::add_u32_big(u32 data)
{
m_data.append((data >> 24) & 0xff);
m_data.append((data >> 16) & 0xff);
m_data.append((data >> 8) & 0xff);
m_data.append(data & 0xff);
}
void PNGChunk::add_u16_big(u16 data)
{
m_data.append((data >> 8) & 0xff);
m_data.append(data & 0xff);
}
void NonCompressibleBlock::add_byte_to_block(u8 data, PNGChunk& chunk)
{
m_non_compressible_data.append(data);
update_adler(data);
if (full()) {
add_block_to_chunk(chunk, false);
m_non_compressible_data.clear();
}
}
void NonCompressibleBlock::add_block_to_chunk(PNGChunk& png_chunk, bool last)
{
if (last) {
png_chunk.add_u8(1);
} else {
png_chunk.add_u8(0);
}
auto len = m_non_compressible_data.size();
auto nlen = ~len;
png_chunk.add_u16_little(len);
png_chunk.add_u16_little(nlen);
for (auto non_compressed_byte : m_non_compressible_data) {
png_chunk.add_u8(non_compressed_byte);
}
}
void NonCompressibleBlock::finalize(PNGChunk& chunk)
{
add_block_to_chunk(chunk, true);
}
void NonCompressibleBlock::update_adler(u8 data)
{
m_adler_s1 = (m_adler_s1 + data) % 65521;
m_adler_s2 = (m_adler_s2 + m_adler_s1) % 65521;
}
void PNGWriter::add_chunk(PNGChunk const& png_chunk)
{
Vector<u8> combined;
for (auto character : png_chunk.type()) {
combined.append(character);
}
combined.append(png_chunk.data());
auto crc = BigEndian(Crypto::Checksum::CRC32({ (const u8*)combined.data(), combined.size() }).digest());
auto data_len = BigEndian(png_chunk.data().size());
ByteBuffer buf;
buf.append(&data_len, sizeof(u32));
buf.append(combined.data(), combined.size());
buf.append(&crc, sizeof(u32));
m_data.append(buf.data(), buf.size());
}
void PNGWriter::add_png_header()
{
const u8 png_header[8] = { 0x89, 'P', 'N', 'G', 13, 10, 26, 10 };
m_data.append(png_header, sizeof(png_header));
}
void PNGWriter::add_IHDR_chunk(u32 width, u32 height, u8 bit_depth, u8 color_type, u8 compression_method, u8 filter_method, u8 interlace_method)
{
PNGChunk png_chunk { "IHDR" };
png_chunk.add_u32_big(width);
png_chunk.add_u32_big(height);
png_chunk.add_u8(bit_depth);
png_chunk.add_u8(color_type);
png_chunk.add_u8(compression_method);
png_chunk.add_u8(filter_method);
png_chunk.add_u8(interlace_method);
add_chunk(png_chunk);
}
void PNGWriter::add_IEND_chunk()
{
PNGChunk png_chunk { "IEND" };
add_chunk(png_chunk);
}
void PNGWriter::add_IDAT_chunk(Gfx::Bitmap const& bitmap)
{
PNGChunk png_chunk { "IDAT" };
u16 CMF_FLG = 0x81d;
png_chunk.add_u16_big(CMF_FLG);
NonCompressibleBlock non_compressible_block;
for (int y = 0; y < bitmap.height(); ++y) {
non_compressible_block.add_byte_to_block(0, png_chunk);
for (int x = 0; x < bitmap.width(); ++x) {
auto pixel = bitmap.get_pixel(x, y);
non_compressible_block.add_byte_to_block(pixel.red(), png_chunk);
non_compressible_block.add_byte_to_block(pixel.green(), png_chunk);
non_compressible_block.add_byte_to_block(pixel.blue(), png_chunk);
non_compressible_block.add_byte_to_block(pixel.alpha(), png_chunk);
}
}
non_compressible_block.finalize(png_chunk);
png_chunk.add_u16_big(non_compressible_block.adler_s2());
png_chunk.add_u16_big(non_compressible_block.adler_s1());
add_chunk(png_chunk);
}
ByteBuffer PNGWriter::encode(Gfx::Bitmap const& bitmap)
{
PNGWriter writer;
writer.add_png_header();
writer.add_IHDR_chunk(bitmap.width(), bitmap.height(), 8, 6, 0, 0, 0);
writer.add_IDAT_chunk(bitmap);
writer.add_IEND_chunk();
return ByteBuffer::copy(writer.m_data);
}
}
|