1/*!
2 The Plotters bitmap backend.
3
4 The plotters bitmap backend allows you to render images by Plotters into bitmap.
5 You can either generate image file(PNG, JPG, GIF, etc) or rendering the bitmap within internal buffer (for example for framebuffer, etc).
6
7 See the documentation for [BitMapBackend](struct.BitMapBackend.html) for more details.
8*/
9
10#[cfg(all(feature = "gif", not(target_arch = "wasm32"), feature = "image"))]
11mod gif_support;
12
13pub mod bitmap_pixel;
14mod error;
15
16mod bitmap;
17pub use bitmap::BitMapBackend;
18pub use error::BitMapBackendError;
19
20/*pub mod bitmap_pixel {
21 pub use super::bitmap::{BGRXPixel, RGBPixel};
22}*/
23