[−][src]Struct plotters_unstable::prelude::BitMapBackend
The backend that drawing a bitmap
Implementations
impl<'a> BitMapBackend<'a, RGBPixel>
[src]
pub fn new<T>(path: &'a T, (u32, u32)) -> BitMapBackend<'a, RGBPixel> where
T: AsRef<Path> + ?Sized,
[src]
T: AsRef<Path> + ?Sized,
Create a new bitmap backend
pub fn gif<T>(
path: T,
(u32, u32),
frame_delay: u32
) -> Result<BitMapBackend<'a, RGBPixel>, BitMapBackendError> where
T: AsRef<Path>,
[src]
path: T,
(u32, u32),
frame_delay: u32
) -> Result<BitMapBackend<'a, RGBPixel>, BitMapBackendError> where
T: AsRef<Path>,
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], (u32, u32)) -> BitMapBackend<'a, RGBPixel>
[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> BitMapBackend<'a, P> where
P: PixelFormat,
[src]
P: PixelFormat,
pub fn with_buffer_and_format(
buf: &'a mut [u8],
(u32, u32)
) -> Result<BitMapBackend<'a, P>, BitMapBackendError>
[src]
buf: &'a mut [u8],
(u32, u32)
) -> Result<BitMapBackend<'a, P>, 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> DrawingBackend for BitMapBackend<'a, P> where
P: PixelFormat,
[src]
P: PixelFormat,
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: (i32, i32),
color: BackendColor
) -> Result<(), DrawingErrorKind<BitMapBackendError>>
[src]
&mut self,
point: (i32, i32),
color: BackendColor
) -> Result<(), DrawingErrorKind<BitMapBackendError>>
fn draw_line<S>(
&mut self,
from: (i32, i32),
to: (i32, i32),
style: &S
) -> Result<(), DrawingErrorKind<<BitMapBackend<'a, P> as DrawingBackend>::ErrorType>> where
S: BackendStyle,
[src]
&mut self,
from: (i32, i32),
to: (i32, i32),
style: &S
) -> Result<(), DrawingErrorKind<<BitMapBackend<'a, P> as DrawingBackend>::ErrorType>> where
S: BackendStyle,
fn draw_rect<S>(
&mut self,
upper_left: (i32, i32),
bottom_right: (i32, i32),
style: &S,
fill: bool
) -> Result<(), DrawingErrorKind<<BitMapBackend<'a, P> as DrawingBackend>::ErrorType>> where
S: BackendStyle,
[src]
&mut self,
upper_left: (i32, i32),
bottom_right: (i32, i32),
style: &S,
fill: bool
) -> Result<(), DrawingErrorKind<<BitMapBackend<'a, P> as DrawingBackend>::ErrorType>> where
S: BackendStyle,
fn blit_bitmap(
&mut self,
pos: (i32, i32),
(u32, u32),
src: &'b [u8]
) -> Result<(), DrawingErrorKind<<BitMapBackend<'a, P> as DrawingBackend>::ErrorType>>
[src]
&mut self,
pos: (i32, i32),
(u32, u32),
src: &'b [u8]
) -> Result<(), DrawingErrorKind<<BitMapBackend<'a, P> as DrawingBackend>::ErrorType>>
fn draw_path<S, I>(
&mut self,
path: I,
style: &S
) -> Result<(), DrawingErrorKind<Self::ErrorType>> where
I: IntoIterator<Item = (i32, i32)>,
S: BackendStyle,
[src]
&mut self,
path: I,
style: &S
) -> Result<(), DrawingErrorKind<Self::ErrorType>> where
I: IntoIterator<Item = (i32, i32)>,
S: BackendStyle,
fn draw_circle<S>(
&mut self,
center: (i32, i32),
radius: u32,
style: &S,
fill: bool
) -> Result<(), DrawingErrorKind<Self::ErrorType>> where
S: BackendStyle,
[src]
&mut self,
center: (i32, i32),
radius: u32,
style: &S,
fill: bool
) -> Result<(), DrawingErrorKind<Self::ErrorType>> where
S: BackendStyle,
fn fill_polygon<S, I>(
&mut self,
vert: I,
style: &S
) -> Result<(), DrawingErrorKind<Self::ErrorType>> where
I: IntoIterator<Item = (i32, i32)>,
S: BackendStyle,
[src]
&mut self,
vert: I,
style: &S
) -> Result<(), DrawingErrorKind<Self::ErrorType>> where
I: IntoIterator<Item = (i32, i32)>,
S: BackendStyle,
fn draw_text<TStyle>(
&mut self,
text: &str,
style: &TStyle,
pos: (i32, i32)
) -> Result<(), DrawingErrorKind<Self::ErrorType>> where
TStyle: BackendTextStyle,
[src]
&mut self,
text: &str,
style: &TStyle,
pos: (i32, i32)
) -> Result<(), DrawingErrorKind<Self::ErrorType>> where
TStyle: BackendTextStyle,
fn estimate_text_size<TStyle>(
&self,
text: &str,
style: &TStyle
) -> Result<(u32, u32), DrawingErrorKind<Self::ErrorType>> where
TStyle: BackendTextStyle,
[src]
&self,
text: &str,
style: &TStyle
) -> Result<(u32, u32), DrawingErrorKind<Self::ErrorType>> where
TStyle: BackendTextStyle,
impl<'_, P> Drop for BitMapBackend<'_, P> where
P: PixelFormat,
[src]
P: PixelFormat,
Auto Trait Implementations
impl<'a, P> RefUnwindSafe for BitMapBackend<'a, P> where
P: RefUnwindSafe,
P: RefUnwindSafe,
impl<'a, P> Send for BitMapBackend<'a, P> where
P: Send,
P: Send,
impl<'a, P> Sync for BitMapBackend<'a, P> where
P: Sync,
P: Sync,
impl<'a, P> Unpin for BitMapBackend<'a, P> where
P: Unpin,
P: Unpin,
impl<'a, P = RGBPixel> !UnwindSafe for BitMapBackend<'a, P>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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<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>,