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]
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 can_read(&self) -> bool
[src]
Return if the ImageFormat can be decoded by the lib.
pub fn can_write(&self) -> bool
[src]
Return if the ImageFormat can be encoded by the lib.
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]
fn clone(&self) -> ImageFormat
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for ImageFormat
[src]
impl Debug for ImageFormat
[src]
impl Eq for ImageFormat
[src]
impl From<ImageFormat> for ImageFormatHint
[src]
fn from(format: ImageFormat) -> Self
[src]
impl From<ImageFormat> for ImageOutputFormat
[src]
fn from(fmt: ImageFormat) -> Self
[src]
impl Hash for ImageFormat
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<ImageFormat> for ImageFormat
[src]
fn eq(&self, other: &ImageFormat) -> bool
[src]
fn ne(&self, other: &ImageFormat) -> bool
[src]
impl StructuralEq for ImageFormat
[src]
impl StructuralPartialEq for ImageFormat
[src]
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
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointable for T
[src]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,