[−][src]Struct plotters::drawing::BitMapBackend
The backend that drawing a bitmap
Methods
impl<'a> BitMapBackend<'a, RGBPixel>
[src]
pub fn new<T: AsRef<Path> + ?Sized>(path: &'a T, (w, h): (u32, u32)) -> Self
[src]
Create a new bitmap backend
pub fn gif<T: AsRef<Path>>(
path: T,
(w, h): (u32, u32),
frame_delay: u32
) -> Result<Self, BitMapBackendError>
[src]
path: T,
(w, h): (u32, u32),
frame_delay: u32
) -> Result<Self, BitMapBackendError>
Create a new bitmap backend that generate GIF animation
When this is used, the bitmap backend acts similar to a real-time rendering backend.
When the program finished drawing one frame, use present
function to flush the frame
into the GIF file.
path
: The path to the GIF file to createdimension
: The size of the GIF imagespeed
: The amount of time for each frame to display
pub fn with_buffer(buf: &'a mut [u8], (w, h): (u32, u32)) -> Self
[src]
Create a new bitmap backend which only lives in-memory
When this is used, the bitmap backend will write to a user provided [u8] array (or Vec
Note: This function provides backward compatibility for those code that assumes Plotters
uses RGB pixel format and maniuplates the in-memory framebuffer.
For more pixel format option, use with_buffer_and_format
instead.
buf
: The buffer to operatedimension
: The size of the image in pixels- returns: The newly created bitmap backend
impl<'a, P: PixelFormat> BitMapBackend<'a, P>
[src]
pub fn with_buffer_and_format(
buf: &'a mut [u8],
(w, h): (u32, u32)
) -> Result<Self, BitMapBackendError>
[src]
buf: &'a mut [u8],
(w, h): (u32, u32)
) -> Result<Self, BitMapBackendError>
Create a new bitmap backend with a in-memory buffer with specific pixel format.
Note: This can be used as a way to manipulate framebuffer, mmap
can be used on the top of this
as well.
buf
: The buffer to operatedimension
: The size of the image in pixels- returns: The newly created bitmap backend
pub fn split(&mut self, area_size: &[u32]) -> Vec<BitMapBackend<P>>
[src]
Split a bitmap backend vertically into several sub drawing area which allows multi-threading rendering.
area_size
: The size of the area- returns: The splitted backends that can be rendered in parallel
Trait Implementations
impl<'a, P: PixelFormat> DrawingBackend for BitMapBackend<'a, P>
[src]
type ErrorType = BitMapBackendError
The error type reported by the backend
fn get_size(&self) -> (u32, u32)
[src]
fn ensure_prepared(
&mut self
) -> Result<(), DrawingErrorKind<BitMapBackendError>>
[src]
&mut self
) -> Result<(), DrawingErrorKind<BitMapBackendError>>
fn present(&mut self) -> Result<(), DrawingErrorKind<BitMapBackendError>>
[src]
fn draw_pixel(
&mut self,
point: BackendCoord,
color: &RGBAColor
) -> Result<(), DrawingErrorKind<BitMapBackendError>>
[src]
&mut self,
point: BackendCoord,
color: &RGBAColor
) -> Result<(), DrawingErrorKind<BitMapBackendError>>
fn draw_line<S: BackendStyle>(
&mut self,
from: (i32, i32),
to: (i32, i32),
style: &S
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
[src]
&mut self,
from: (i32, i32),
to: (i32, i32),
style: &S
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
fn draw_rect<S: BackendStyle>(
&mut self,
upper_left: (i32, i32),
bottom_right: (i32, i32),
style: &S,
fill: bool
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
[src]
&mut self,
upper_left: (i32, i32),
bottom_right: (i32, i32),
style: &S,
fill: bool
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
fn blit_bitmap<'b>(
&mut self,
pos: BackendCoord,
(sw, sh): (u32, u32),
src: &'b [u8]
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
[src]
&mut self,
pos: BackendCoord,
(sw, sh): (u32, u32),
src: &'b [u8]
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>(
&mut self,
path: I,
style: &S
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
[src]
&mut self,
path: I,
style: &S
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
fn draw_circle<S: BackendStyle>(
&mut self,
center: BackendCoord,
radius: u32,
style: &S,
fill: bool
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
[src]
&mut self,
center: BackendCoord,
radius: u32,
style: &S,
fill: bool
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>(
&mut self,
vert: I,
style: &S
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
[src]
&mut self,
vert: I,
style: &S
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
fn draw_text(
&mut self,
text: &str,
style: &TextStyle,
pos: BackendCoord
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
[src]
&mut self,
text: &str,
style: &TextStyle,
pos: BackendCoord
) -> Result<(), DrawingErrorKind<Self::ErrorType>>
fn estimate_text_size<'a>(
&self,
text: &str,
font: &FontDesc<'a>
) -> Result<(u32, u32), DrawingErrorKind<Self::ErrorType>>
[src]
&self,
text: &str,
font: &FontDesc<'a>
) -> Result<(u32, u32), DrawingErrorKind<Self::ErrorType>>
impl<'_, P: PixelFormat> Drop for BitMapBackend<'_, P>
[src]
Auto Trait Implementations
impl<'a, P> Send for BitMapBackend<'a, P> where
P: Send,
P: Send,
impl<'a, P> Unpin for BitMapBackend<'a, P> where
P: Unpin,
P: Unpin,
impl<'a, P> Sync for BitMapBackend<'a, P> where
P: Sync,
P: Sync,
impl<'a, P = RGBPixel> !UnwindSafe for BitMapBackend<'a, P>
impl<'a, P> RefUnwindSafe for BitMapBackend<'a, P> where
P: RefUnwindSafe,
P: RefUnwindSafe,
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> SetParameter for T
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
T: Parameter<Self>,
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
[src]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
[src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D
[src]
impl<T, U> ConvertInto<U> for T where
U: ConvertFrom<T>,
[src]
U: ConvertFrom<T>,