pub type Reader<R> = ImageReader<R>;
Expand description
Deprecated re-export of ImageReader
as Reader
Aliased Type§
struct Reader<R> { /* private fields */ }
Implementations
§impl ImageReader<BufReader<File>>
impl ImageReader<BufReader<File>>
pub fn open<P>(path: P) -> Result<ImageReader<BufReader<File>>, Error>
pub fn open<P>(path: P) -> Result<ImageReader<BufReader<File>>, Error>
Open a file to read, format will be guessed from path.
This will not attempt any io operation on the opened file.
If you want to inspect the content for a better guess on the format, which does not depend
on file extensions, follow this call with a call to with_guessed_format
.
§impl<'a, R> ImageReader<R>
impl<'a, R> ImageReader<R>
pub fn new(buffered_reader: R) -> ImageReader<R>
pub fn new(buffered_reader: R) -> ImageReader<R>
Create a new image reader without a preset format.
Assumes the reader is already buffered. For optimal performance,
consider wrapping the reader with a BufReader::new()
.
It is possible to guess the format based on the content of the read object with
with_guessed_format
, or to set the format directly with set_format
.
pub fn with_format(buffered_reader: R, format: ImageFormat) -> ImageReader<R>
pub fn with_format(buffered_reader: R, format: ImageFormat) -> ImageReader<R>
Construct a reader with specified format.
Assumes the reader is already buffered. For optimal performance,
consider wrapping the reader with a BufReader::new()
.
pub fn format(&self) -> Option<ImageFormat>
pub fn format(&self) -> Option<ImageFormat>
Get the currently determined format.
pub fn set_format(&mut self, format: ImageFormat)
pub fn set_format(&mut self, format: ImageFormat)
Supply the format as which to interpret the read image.
pub fn clear_format(&mut self)
pub fn clear_format(&mut self)
Remove the current information on the image format.
Note that many operations require format information to be present and will return e.g. an
ImageError::Unsupported
when the image format has not been set.
pub fn no_limits(&mut self)
pub fn no_limits(&mut self)
Disable all decoding limits.
pub fn into_inner(self) -> R
pub fn into_inner(self) -> R
Unwrap the reader.
pub fn into_decoder(self) -> Result<impl ImageDecoder + 'a, ImageError>
pub fn into_decoder(self) -> Result<impl ImageDecoder + 'a, ImageError>
Convert the reader into a decoder.
pub fn with_guessed_format(self) -> Result<ImageReader<R>, Error>
pub fn with_guessed_format(self) -> Result<ImageReader<R>, Error>
Make a format guess based on the content, replacing it on success.
Returns Ok
with the guess if no io error occurs. Additionally, replaces the current
format if the guess was successful. If the guess was unable to determine a format then
the current format of the reader is unchanged.
Returns an error if the underlying reader fails. The format is unchanged. The error is a
std::io::Error
and not ImageError
since the only error case is an error when the
underlying reader seeks.
When an error occurs, the reader may not have been properly reset and it is potentially hazardous to continue with more io.
§Usage
This supplements the path based type deduction from ImageReader::open()
with content based deduction.
This is more common in Linux and UNIX operating systems and also helpful if the path can
not be directly controlled.
let image = ImageReader::open("image.unknown")?
.with_guessed_format()?
.decode()?;
pub fn into_dimensions(self) -> Result<(u32, u32), ImageError>
pub fn into_dimensions(self) -> Result<(u32, u32), ImageError>
Read the image dimensions.
Uses the current format to construct the correct reader for the format.
If no format was determined, returns an ImageError::Unsupported
.
pub fn decode(self) -> Result<DynamicImage, ImageError>
pub fn decode(self) -> Result<DynamicImage, ImageError>
Read the image (replaces load
).
Uses the current format to construct the correct reader for the format.
If no format was determined, returns an ImageError::Unsupported
.