pub struct Image { /* private fields */ }
Expand description
Structure that defines elements of an image object.
Implementations§
Source§impl Image
impl Image
Sourcepub fn new(width: u32, height: u32) -> Self
pub fn new(width: u32, height: u32) -> Self
Creates a new image with the given width and height.
Sourcepub fn from_data(
width: u32,
height: u32,
data: Vec<u32>,
) -> Result<Self, String>
pub fn from_data( width: u32, height: u32, data: Vec<u32>, ) -> Result<Self, String>
Create a new image from a boxed slice of colors
Sourcepub fn from_rgba_image(image: RgbaImage) -> Result<Self, String>
pub fn from_rgba_image(image: RgbaImage) -> Result<Self, String>
Creates a new image from an RgbaImage
.
Sourcepub fn from_path<P: AsRef<Path> + Debug + Clone>(
path: P,
) -> Result<Self, String>
pub fn from_path<P: AsRef<Path> + Debug + Clone>( path: P, ) -> Result<Self, String>
Load an image from file path. Supports BMP and PNG
pub fn data(&self) -> &[u32]
pub fn data_mut(&mut self) -> &mut [u32]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Image
impl RefUnwindSafe for Image
impl Send for Image
impl Sync for Image
impl Unpin for Image
impl UnwindSafe for Image
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more