Enum rust_rpg_toolkit::prelude::ImageFormat [−]
pub enum ImageFormat {
Show 13 variants
Png,
Jpeg,
Gif,
WebP,
Pnm,
Tiff,
Tga,
Dds,
Bmp,
Ico,
Hdr,
Farbfeld,
Avif,
// some variants omitted
}
Expand description
An enumeration of supported image formats. Not all formats support both encoding and decoding.
Variants
An Image in PNG Format
An Image in JPEG Format
An Image in GIF Format
An Image in WEBP Format
An Image in general PNM Format
An Image in TIFF Format
An Image in TGA Format
An Image in DDS Format
An Image in BMP Format
An Image in ICO Format
An Image in Radiance HDR Format
An Image in farbfeld Format
An Image in AVIF format.
Implementations
impl ImageFormat
impl ImageFormat
pub fn from_extension<S>(ext: S) -> Option<ImageFormat> where
S: AsRef<OsStr>,
pub fn from_extension<S>(ext: S) -> Option<ImageFormat> where
S: AsRef<OsStr>,
Return the image format specified by a path’s file extension.
Example
use image::ImageFormat;
let format = ImageFormat::from_extension("jpg");
assert_eq!(format, Some(ImageFormat::Jpeg));
pub fn from_path<P>(path: P) -> Result<ImageFormat, ImageError> where
P: AsRef<Path>,
pub fn from_path<P>(path: P) -> Result<ImageFormat, ImageError> where
P: AsRef<Path>,
Return the image format specified by the path’s file extension.
Example
use image::ImageFormat;
let format = ImageFormat::from_path("images/ferris.png")?;
assert_eq!(format, ImageFormat::Png);
Return a list of applicable extensions for this format.
All currently recognized image formats specify at least on extension but for future compatibility you should not rely on this fact. The list may be empty if the format has no recognized file representation, for example in case it is used as a purely transient memory format.
The method name extensions
remains reserved for introducing another method in the future
that yields a slice of OsStr
which is blocked by several features of const evaluation.
Trait Implementations
impl Clone for ImageFormat
impl Clone for ImageFormat
pub fn clone(&self) -> ImageFormat
pub fn clone(&self) -> ImageFormat
Returns a copy of the value. Read more
Performs copy-assignment from source
. Read more
impl Debug for ImageFormat
impl Debug for ImageFormat
impl Hash for ImageFormat
impl Hash for ImageFormat
impl PartialEq<ImageFormat> for ImageFormat
impl PartialEq<ImageFormat> for ImageFormat
pub fn eq(&self, other: &ImageFormat) -> bool
pub fn eq(&self, other: &ImageFormat) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
pub fn ne(&self, other: &ImageFormat) -> bool
pub fn ne(&self, other: &ImageFormat) -> bool
This method tests for !=
.
impl Copy for ImageFormat
impl Eq for ImageFormat
impl StructuralEq for ImageFormat
impl StructuralPartialEq for ImageFormat
Auto Trait Implementations
impl RefUnwindSafe for ImageFormat
impl Send for ImageFormat
impl Sync for ImageFormat
impl Unpin for ImageFormat
impl UnwindSafe for ImageFormat
Blanket Implementations
Mutably borrows from an owned value. Read more