pub struct Image { /* private fields */ }Implementations§
Source§impl Image
impl Image
Sourcepub fn from_srgba(
data: &[[u8; 4]],
width: usize,
height: usize,
) -> Result<Self, ImageError>
pub fn from_srgba( data: &[[u8; 4]], width: usize, height: usize, ) -> Result<Self, ImageError>
Creates an image from sRGB color channels and linear alpha.
The boxed array size must match the image dimensions.
pub fn from_linear_rgba( data: &[[f32; 4]], width: usize, height: usize, ) -> Result<Self, ImageError>
pub fn id(&self) -> ImageId
pub fn width(&self) -> u32
pub fn height(&self) -> u32
pub fn data(&self) -> &[[f16; 4]]
Trait Implementations§
impl Eq for Image
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more