Enum tauri_icns::PixelFormat
source · [−]pub enum PixelFormat {
RGBA,
RGB,
GrayAlpha,
Gray,
Alpha,
PNG,
}
Expand description
Formats for storing pixel data in an image.
This type determines how the raw data array of an
Image
is to be interpreted.
Regardless of format, pixel data for an image is always stored one complete pixel at a time, in row-major order (that is, the top-left pixel comes first, followed by the rest of the top row from left to right; then comes the second row down, again from left to right, and so on until finally the bottom-right pixel comes last).
Variants
RGBA
32-bit color with alpha channel. Each pixel is four bytes, with red first and alpha last.
RGB
24-bit color with no alpha. Each pixel is three bytes, with red first and blue last.
GrayAlpha
16-bit grayscale-with-alpha. Each pixel is two bytes, with the grayscale value first and alpha second.
Gray
8-bit grayscale with no alpha. Each pixel is one byte (0=black, 255=white).
Alpha
8-bit alpha mask with no color. Each pixel is one byte (0=transparent, 255=opaque).
PNG
PNG data.
Implementations
sourceimpl PixelFormat
impl PixelFormat
sourcepub fn bits_per_pixel(self) -> u32
pub fn bits_per_pixel(self) -> u32
Returns the number of bits needed to store a single pixel in this format.
Trait Implementations
sourceimpl Clone for PixelFormat
impl Clone for PixelFormat
sourcefn clone(&self) -> PixelFormat
fn clone(&self) -> PixelFormat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PixelFormat
impl Debug for PixelFormat
sourceimpl Hash for PixelFormat
impl Hash for PixelFormat
sourceimpl PartialEq<PixelFormat> for PixelFormat
impl PartialEq<PixelFormat> for PixelFormat
sourcefn eq(&self, other: &PixelFormat) -> bool
fn eq(&self, other: &PixelFormat) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Copy for PixelFormat
impl Eq for PixelFormat
impl StructuralEq for PixelFormat
impl StructuralPartialEq for PixelFormat
Auto Trait Implementations
impl RefUnwindSafe for PixelFormat
impl Send for PixelFormat
impl Sync for PixelFormat
impl Unpin for PixelFormat
impl UnwindSafe for PixelFormat
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