Enum ImageFormat
#[non_exhaustive]pub enum ImageFormat {
Show 16 variants
Png,
Jpeg,
Gif,
WebP,
Pnm,
Tiff,
Tga,
Dds,
Bmp,
Ico,
Hdr,
OpenExr,
Farbfeld,
Avif,
Qoi,
Pcx,
}
dep_image
only.Expand description
An enumeration of supported image formats. Not all formats support both encoding and decoding.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Png
An Image in PNG Format
Jpeg
An Image in JPEG Format
Gif
An Image in GIF Format
WebP
An Image in WEBP Format
Pnm
An Image in general PNM Format
Tiff
An Image in TIFF Format
Tga
An Image in TGA Format
Dds
An Image in DDS Format
Bmp
An Image in BMP Format
Ico
An Image in ICO Format
Hdr
An Image in Radiance HDR Format
OpenExr
An Image in OpenEXR Format
Farbfeld
An Image in farbfeld Format
Avif
An Image in AVIF Format
Qoi
An Image in QOI Format
Pcx
An Image in PCX Format
Implementations§
§impl ImageFormat
impl ImageFormat
pub fn from_extension<S>(ext: S) -> Option<ImageFormat> ⓘ
pub fn from_extension<S>(ext: S) -> Option<ImageFormat> ⓘ
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> ⓘ
pub fn from_path<P>(path: P) -> Result<ImageFormat, ImageError> ⓘ
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 from_mime_type<M>(mime_type: M) -> Option<ImageFormat> ⓘ
pub fn from_mime_type<M>(mime_type: M) -> Option<ImageFormat> ⓘ
Return the image format specified by a MIME type.
§Example
use image::ImageFormat;
let format = ImageFormat::from_mime_type("image/png").unwrap();
assert_eq!(format, ImageFormat::Png);
pub fn to_mime_type(&self) -> &'static str ⓘ
pub fn to_mime_type(&self) -> &'static str ⓘ
Return the MIME type for this image format or “application/octet-stream” if no MIME type exists for the format.
Some notes on a few of the MIME types:
- The portable anymap format has a separate MIME type for the pixmap, graymap and bitmap formats, but this method returns the general “image/x-portable-anymap” MIME type.
- The Targa format has two common MIME types, “image/x-targa” and “image/x-tga”; this method returns “image/x-targa” for that format.
- The QOI MIME type is still a work in progress. This method returns “image/x-qoi” for that format.
§Example
use image::ImageFormat;
let mime_type = ImageFormat::Png.to_mime_type();
assert_eq!(mime_type, "image/png");
pub fn extensions_str(self) -> &'static [&'static str] ⓘ
pub fn extensions_str(self) -> &'static [&'static str] ⓘ
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.
pub fn reading_enabled(&self) -> bool
pub fn reading_enabled(&self) -> bool
Return the ImageFormat
s which are enabled for reading.
pub fn writing_enabled(&self) -> bool
pub fn writing_enabled(&self) -> bool
Return the ImageFormat
s which are enabled for writing.
pub fn all() -> impl Iterator<Item = ImageFormat>
pub fn all() -> impl Iterator<Item = ImageFormat>
Return all ImageFormat
s
Trait Implementations§
§impl Clone for ImageFormat
impl Clone for ImageFormat
§fn clone(&self) -> ImageFormat
fn clone(&self) -> ImageFormat
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for ImageFormat
impl Debug for ImageFormat
§impl From<ImageFormat> for ImageFormatHint
impl From<ImageFormat> for ImageFormatHint
§fn from(format: ImageFormat) -> ImageFormatHint
fn from(format: ImageFormat) -> ImageFormatHint
§impl Hash for ImageFormat
impl Hash for ImageFormat
§impl PartialEq for ImageFormat
impl PartialEq for ImageFormat
impl Copy for ImageFormat
impl Eq for ImageFormat
impl StructuralPartialEq for ImageFormat
Auto Trait Implementations§
impl Freeze for ImageFormat
impl RefUnwindSafe for ImageFormat
impl Send for ImageFormat
impl Sync for ImageFormat
impl Unpin for ImageFormat
impl UnwindSafe for ImageFormat
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
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
TypeId
of Self
using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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> ⓘ
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> ⓘ
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