1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
use std::fmt;

use crate::{read, read_int};

pub struct Image {
  pub buffer: Vec<u8>,
}

impl Image {
  pub fn new(bytes: &mut Vec<u8>) -> Self {
    let length = read_int(bytes);
    let buffer = read(bytes, length);

    Image { buffer }
  }
}

impl fmt::Debug for Image {
  fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
    write!(f, "Image ()")
  }
}