pub struct PixmapMut<'a> { /* private fields */ }
Expand description
A container that references mutable premultiplied RGBA pixels.
Can be created from Pixmap
or from a user provided data.
The data is not aligned, therefore width == stride.
Implementations
sourceimpl<'a> PixmapMut<'a>
impl<'a> PixmapMut<'a>
sourcepub fn from_bytes(data: &'a mut [u8], width: u32, height: u32) -> Option<Self>
pub fn from_bytes(data: &'a mut [u8], width: u32, height: u32) -> Option<Self>
Creates a new PixmapMut
from bytes.
The size must be at least size.width() * size.height() * BYTES_PER_PIXEL
.
Zero size in an error. Width is limited by i32::MAX/4.
The data
is assumed to have premultiplied RGBA pixels (byteorder: RGBA).
sourcepub fn to_owned(&self) -> Pixmap
pub fn to_owned(&self) -> Pixmap
Creates a new Pixmap
from the current data.
Clones the underlying data.
sourcepub fn data_mut(&mut self) -> &mut [u8]ⓘNotable traits for &[u8]impl<'_> Read for &[u8]impl<'_> Write for &mut [u8]
pub fn data_mut(&mut self) -> &mut [u8]ⓘNotable traits for &[u8]impl<'_> Read for &[u8]impl<'_> Write for &mut [u8]
Returns the mutable internal data.
Byteorder: RGBA
sourcepub fn pixels_mut(&mut self) -> &mut [PremultipliedColorU8]
pub fn pixels_mut(&mut self) -> &mut [PremultipliedColorU8]
Returns a mutable slice of pixels.
sourceimpl PixmapMut<'_>
impl PixmapMut<'_>
sourcepub fn fill_rect(
&mut self,
rect: Rect,
paint: &Paint<'_>,
transform: Transform,
clip_mask: Option<&ClipMask>
) -> Option<()>
pub fn fill_rect(
&mut self,
rect: Rect,
paint: &Paint<'_>,
transform: Transform,
clip_mask: Option<&ClipMask>
) -> Option<()>
Draws a filled rectangle onto the pixmap.
This function is usually slower than filling a rectangular path, but it produces better results. Mainly it doesn’t suffer from weird clipping of horizontal/vertical edges.
Used mainly to render a pixmap onto a pixmap.
Returns None
when there is nothing to fill or in case of a numeric overflow.
sourcepub fn fill_path(
&mut self,
path: &Path,
paint: &Paint<'_>,
fill_rule: FillRule,
transform: Transform,
clip_mask: Option<&ClipMask>
) -> Option<()>
pub fn fill_path(
&mut self,
path: &Path,
paint: &Paint<'_>,
fill_rule: FillRule,
transform: Transform,
clip_mask: Option<&ClipMask>
) -> Option<()>
Draws a filled path onto the pixmap.
Returns None
when there is nothing to fill or in case of a numeric overflow.
sourcepub fn stroke_path(
&mut self,
path: &Path,
paint: &Paint<'_>,
stroke: &Stroke,
transform: Transform,
clip_mask: Option<&ClipMask>
) -> Option<()>
pub fn stroke_path(
&mut self,
path: &Path,
paint: &Paint<'_>,
stroke: &Stroke,
transform: Transform,
clip_mask: Option<&ClipMask>
) -> Option<()>
Strokes a path.
Stroking is implemented using two separate algorithms:
- If a stroke width is wider than 1px (after applying the transformation),
a path will be converted into a stroked path and then filled using
fill_path
. Which means that we have to allocate a separatePath
, that can be 2-3x larger then the original path. - If a stroke width is thinner than 1px (after applying the transformation), we will use hairline stroking, which doesn’t involve a separate path allocation.
Also, if a stroke
has a dash array, then path will be converted into
a dashed path first and then stroked. Which means a yet another allocation.
Trait Implementations
impl<'a> StructuralPartialEq for PixmapMut<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for PixmapMut<'a>
impl<'a> Send for PixmapMut<'a>
impl<'a> Sync for PixmapMut<'a>
impl<'a> Unpin for PixmapMut<'a>
impl<'a> !UnwindSafe for PixmapMut<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more