#![deny(missing_debug_implementations, missing_copy_implementations)]
#![warn(missing_docs, rustdoc::missing_crate_level_docs)]
#![doc = include_str!("../readme.md")]
#![doc(html_logo_url = "https://avatars.githubusercontent.com/u/208321371")]
#![doc(html_favicon_url = "https://avatars.githubusercontent.com/u/208321371")]
mod frames;
mod reader;
pub use crate::{
frames::ShpFrame,
reader::{ShpReader, shp2apng, shp2png},
};
#[derive(Copy, Clone, Debug)]
pub struct ShpHeader {
pub reserved: u16, pub width: u16, pub height: u16, pub number_of_frames: u16, }