blob: ae2da06e8c6c3d4960c8ae088c6d25fb84b14ebe (
plain)
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
|
use crate::LZW;
use super::{ColorTable, ImageDescriptor};
pub struct IndexedImage {
pub image_descriptor: ImageDescriptor,
pub local_color_table: Option<ColorTable>,
pub indicies: Vec<u8>
}
impl IndexedImage {
pub fn as_boxed_slice(&self, minimum_code_size: u8) -> Box<[u8]> {
let mut out = vec![];
let mut boxed: Box<[u8]> = (&self.image_descriptor).into();
out.extend_from_slice(&*boxed);
// Get the mcs while we write out the color table
let mut mcs = if let Some(lct) = &self.local_color_table {
boxed = lct.into();
out.extend_from_slice(&*boxed);
lct.packed_len()
} else {
minimum_code_size
};
if mcs < 2 {
mcs = 2; // Must be true: 0 <= mcs <= 8
}
// First write out the MCS
out.push(mcs);
let compressed = LZW::encode(mcs, &self.indicies);
for chunk in compressed.chunks(255) {
out.push(chunk.len() as u8);
out.extend_from_slice(chunk);
}
// Data block length 0 to indicate an end
out.push(0x00);
out.into_boxed_slice()
}
}
|