| 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" ))] |
| 11 | mod gif_support; |
| 12 | |
| 13 | pub mod bitmap_pixel; |
| 14 | mod error; |
| 15 | |
| 16 | mod bitmap; |
| 17 | pub use bitmap::BitMapBackend; |
| 18 | pub use error::BitMapBackendError; |
| 19 | |
| 20 | /*pub mod bitmap_pixel { |
| 21 | pub use super::bitmap::{BGRXPixel, RGBPixel}; |
| 22 | }*/ |
| 23 | |