Enum image::ImageFormat [−][src]
pub enum ImageFormat {}Show variants
Png, Jpeg, Gif, WebP, Pnm, Tiff, Tga, Dds, Bmp, Ico, Hdr, Farbfeld, Avif, // some variants omitted
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
[src]
impl ImageFormat
[src]pub fn from_extension<S>(ext: S) -> Option<Self> where
S: AsRef<OsStr>,
[src]
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) -> ImageResult<Self> where
P: AsRef<Path>,
[src]
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);
pub fn extensions_str(self) -> &'static [&'static str]
[src]
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
[src]
impl Clone for ImageFormat
[src]fn clone(&self) -> ImageFormat
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl From<ImageFormat> for ImageFormatHint
[src]
impl From<ImageFormat> for ImageFormatHint
[src]fn from(format: ImageFormat) -> Self
[src]
impl From<ImageFormat> for ImageOutputFormat
[src]
impl From<ImageFormat> for ImageOutputFormat
[src]fn from(fmt: ImageFormat) -> Self
[src]
impl Hash for ImageFormat
[src]
impl Hash for ImageFormat
[src]impl PartialEq<ImageFormat> for ImageFormat
[src]
impl PartialEq<ImageFormat> for ImageFormat
[src]