about summary refs log tree commit diff
path: root/src/writer/gifbuilder.rs
blob: 1466f769c768178da60ed586c8bf34e467d070b4 (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
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
use std::convert::TryInto;

use crate::block::{extension::Extension, Block, ColorTable, ScreenDescriptor, Version};
use crate::writer::ImageBuilder;
use crate::{EncodingError, Gif};

pub struct GifBuilder {
    version: Version,
    width: u16,
    height: u16,
    background_color_index: u8,
    global_color_table: Option<ColorTable>,
    blocks: Vec<Block>,
    error: Option<EncodingError>,
}

impl GifBuilder {
    pub fn new(width: u16, height: u16) -> Self {
        Self {
            version: Version::Gif87a,
            width,
            height,
            background_color_index: 0,
            global_color_table: None,
            blocks: vec![],
            error: None,
        }
    }

    pub fn palette(mut self, palette: ColorTable) -> Self {
        self.global_color_table = Some(palette);
        self
    }

    pub fn background_index(mut self, ind: u8) -> Self {
        if self.error.is_some() {
            return self;
        }

        if self.global_color_table.is_none() {
            self.error = Some(EncodingError::NoColorTable);
        } else {
            self.background_color_index = ind;
        }
        self
    }

    pub fn image(mut self, ib: ImageBuilder) -> Self {
        if self.error.is_some() {
            return self;
        }

        if ib.required_version() == Version::Gif89a {
            self.version = Version::Gif89a;
        }

        if let Some(gce) = ib.get_graphic_control() {
            self.blocks.push(Block::Extension(gce.into()));
        }

        match ib.build() {
            Ok(image) => self.blocks.push(Block::IndexedImage(image)),
            Err(e) => self.error = Some(e),
        }

        self
    }

    /*pub fn extension(mut self, ext: Extension) -> Self {
        self.blocks.push(Block::Extension(ext));
        self
    }*/

    pub fn repeat(mut self, count: u16) -> Self {
        self.blocks
            .push(Block::Extension(Extension::Looping(count)));
        self
    }

    pub fn build(self) -> Result<Gif, EncodingError> {
        if let Some(error) = self.error {
            return Err(error);
        }

        let mut lsd = ScreenDescriptor {
            width: self.width,
            height: self.height,
            packed: 0, // Set later
            background_color_index: self.background_color_index,
            pixel_aspect_ratio: 0, //TODO: Allow configuring
        };

        if let Some(gct) = &self.global_color_table {
            println!("build {}", gct.len());
            lsd.set_color_table_present(true);
            lsd.set_color_table_size((gct.len() - 1) as u8);
        }

        Ok(Gif {
            header: self.version,
            screen_descriptor: lsd,
            global_color_table: self.global_color_table,
            blocks: self.blocks,
        })
    }
}