bitmapfont_creator/lib.rs
1//! BitmapFont Creator - A CLI tool to create bitmap fonts for Phaser games
2//!
3//! This library provides functionality:
4//! - Parse JSON configuration files for character images
5//! - Load and process character images (with frame extraction and padding)
6//! - Pack images into a texture atlas
7//! - Generate Phaser-compatible XML font files
8
9pub mod error;
10pub mod config;
11pub mod image_loader;
12pub mod packer;
13pub mod xml_generator;
14pub mod output;
15
16pub use error::{BitmapFontError, Result};
17pub use config::{FontConfig, CharConfig, Frame};
18pub use output::OutputResult;