zipng 0.20221122.0-dev.3

Polyglot encoder for ZIP-and/or-PNG files.
Documentation
#![allow(clippy::unusual_byte_groupings)]

pub mod fonts;

use {
    crate::{panic, Png},
    bitvec::{
        order::{Lsb0, Msb0},
        view::AsBits,
    },
    std::fmt::Debug,
};

/// A bitmap font that can be used to render text onto a [`Png`] image.
pub struct Font;