1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
/*!
   The Plotters bitmap backend. 
   
   The plotters bitmap backend allows you to render images by Plotters into bitmap. 
   You can either generate image file(PNG, JPG, GIF, etc) or rendering the bitmap within internal buffer (for example for framebuffer, etc). 

   See the documentation for [BitMapBackend](struct.BitMapBackend.html) for more details.
*/

mod bitmap;
pub use bitmap::BitMapBackend;

pub mod bitmap_pixel {
    pub use super::bitmap::{BGRXPixel, PixelFormat, RGBPixel};
}