Enum image::ImageFormat [−][src]
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
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));
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
Performs the conversion.
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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