use num_iter;
use std::fs::File;
use std::io;
use std::io::{BufRead, BufReader, BufWriter, Seek, Write};
use std::path::Path;
#[cfg(feature = "bmp")]
use bmp;
#[cfg(feature = "gif_codec")]
use gif;
#[cfg(feature = "hdr")]
use hdr;
#[cfg(feature = "ico")]
use ico;
#[cfg(feature = "jpeg")]
use jpeg;
#[cfg(feature = "png_codec")]
use png;
#[cfg(feature = "pnm")]
use pnm;
#[cfg(feature = "tga")]
use tga;
#[cfg(feature = "tiff")]
use tiff;
#[cfg(feature = "webp")]
use webp;
use buffer::{ConvertBuffer, GrayAlphaImage, GrayImage, ImageBuffer, Pixel, RgbImage, RgbaImage, BgrImage, BgraImage};
use flat::FlatSamples;
use color;
use image;
use image::{GenericImage, GenericImageView, ImageDecoder, ImageFormat, ImageOutputFormat,
ImageResult};
use imageops;
#[derive(Clone)]
pub enum DynamicImage {
ImageLuma8(GrayImage),
ImageLumaA8(GrayAlphaImage),
ImageRgb8(RgbImage),
ImageRgba8(RgbaImage),
ImageBgr8(BgrImage),
ImageBgra8(BgraImage),
}
macro_rules! dynamic_map(
($dynimage: expr, ref $image: ident => $action: expr) => (
match $dynimage {
DynamicImage::ImageLuma8(ref $image) => DynamicImage::ImageLuma8($action),
DynamicImage::ImageLumaA8(ref $image) => DynamicImage::ImageLumaA8($action),
DynamicImage::ImageRgb8(ref $image) => DynamicImage::ImageRgb8($action),
DynamicImage::ImageRgba8(ref $image) => DynamicImage::ImageRgba8($action),
DynamicImage::ImageBgr8(ref $image) => DynamicImage::ImageBgr8($action),
DynamicImage::ImageBgra8(ref $image) => DynamicImage::ImageBgra8($action),
}
);
($dynimage: expr, ref mut $image: ident => $action: expr) => (
match $dynimage {
DynamicImage::ImageLuma8(ref mut $image) => DynamicImage::ImageLuma8($action),
DynamicImage::ImageLumaA8(ref mut $image) => DynamicImage::ImageLumaA8($action),
DynamicImage::ImageRgb8(ref mut $image) => DynamicImage::ImageRgb8($action),
DynamicImage::ImageRgba8(ref mut $image) => DynamicImage::ImageRgba8($action),
DynamicImage::ImageBgr8(ref mut $image) => DynamicImage::ImageBgr8($action),
DynamicImage::ImageBgra8(ref mut $image) => DynamicImage::ImageBgra8($action),
}
);
($dynimage: expr, ref $image: ident -> $action: expr) => (
match $dynimage {
DynamicImage::ImageLuma8(ref $image) => $action,
DynamicImage::ImageLumaA8(ref $image) => $action,
DynamicImage::ImageRgb8(ref $image) => $action,
DynamicImage::ImageRgba8(ref $image) => $action,
DynamicImage::ImageBgr8(ref $image) => $action,
DynamicImage::ImageBgra8(ref $image) => $action,
}
);
($dynimage: expr, ref mut $image: ident -> $action: expr) => (
match $dynimage {
DynamicImage::ImageLuma8(ref mut $image) => $action,
DynamicImage::ImageLumaA8(ref mut $image) => $action,
DynamicImage::ImageRgb8(ref mut $image) => $action,
DynamicImage::ImageRgba8(ref mut $image) => $action,
DynamicImage::ImageBgr8(ref mut $image) => $action,
DynamicImage::ImageBgra8(ref mut $image) => $action,
}
);
);
impl DynamicImage {
pub fn new_luma8(w: u32, h: u32) -> DynamicImage {
DynamicImage::ImageLuma8(ImageBuffer::new(w, h))
}
pub fn new_luma_a8(w: u32, h: u32) -> DynamicImage {
DynamicImage::ImageLumaA8(ImageBuffer::new(w, h))
}
pub fn new_rgb8(w: u32, h: u32) -> DynamicImage {
DynamicImage::ImageRgb8(ImageBuffer::new(w, h))
}
pub fn new_rgba8(w: u32, h: u32) -> DynamicImage {
DynamicImage::ImageRgba8(ImageBuffer::new(w, h))
}
pub fn new_bgra8(w: u32, h: u32) -> DynamicImage {
DynamicImage::ImageBgra8(ImageBuffer::new(w, h))
}
pub fn new_bgr8(w: u32, h: u32) -> DynamicImage {
DynamicImage::ImageBgr8(ImageBuffer::new(w, h))
}
pub fn to_rgb(&self) -> RgbImage {
dynamic_map!(*self, ref p -> {
p.convert()
})
}
pub fn to_rgba(&self) -> RgbaImage {
dynamic_map!(*self, ref p -> {
p.convert()
})
}
pub fn to_bgr(&self) -> BgrImage {
dynamic_map!(*self, ref p -> {
p.convert()
})
}
pub fn to_bgra(&self) -> BgraImage {
dynamic_map!(*self, ref p -> {
p.convert()
})
}
pub fn to_luma(&self) -> GrayImage {
dynamic_map!(*self, ref p -> {
p.convert()
})
}
pub fn to_luma_alpha(&self) -> GrayAlphaImage {
dynamic_map!(*self, ref p -> {
p.convert()
})
}
pub fn crop(&mut self, x: u32, y: u32, width: u32, height: u32) -> DynamicImage {
dynamic_map!(*self, ref mut p => imageops::crop(p, x, y, width, height).to_image())
}
pub fn as_rgb8(&self) -> Option<&RgbImage> {
match *self {
DynamicImage::ImageRgb8(ref p) => Some(p),
_ => None,
}
}
pub fn as_mut_rgb8(&mut self) -> Option<&mut RgbImage> {
match *self {
DynamicImage::ImageRgb8(ref mut p) => Some(p),
_ => None,
}
}
pub fn as_bgr8(&self) -> Option<&BgrImage> {
match *self {
DynamicImage::ImageBgr8(ref p) => Some(p),
_ => None,
}
}
pub fn as_mut_bgr8(&mut self) -> Option<&mut BgrImage> {
match *self {
DynamicImage::ImageBgr8(ref mut p) => Some(p),
_ => None,
}
}
pub fn as_rgba8(&self) -> Option<&RgbaImage> {
match *self {
DynamicImage::ImageRgba8(ref p) => Some(p),
_ => None,
}
}
pub fn as_mut_rgba8(&mut self) -> Option<&mut RgbaImage> {
match *self {
DynamicImage::ImageRgba8(ref mut p) => Some(p),
_ => None,
}
}
pub fn as_bgra8(&self) -> Option<&BgraImage> {
match *self {
DynamicImage::ImageBgra8(ref p) => Some(p),
_ => None,
}
}
pub fn as_mut_bgra8(&mut self) -> Option<&mut BgraImage> {
match *self {
DynamicImage::ImageBgra8(ref mut p) => Some(p),
_ => None,
}
}
pub fn as_luma8(&self) -> Option<&GrayImage> {
match *self {
DynamicImage::ImageLuma8(ref p) => Some(p),
_ => None,
}
}
pub fn as_mut_luma8(&mut self) -> Option<&mut GrayImage> {
match *self {
DynamicImage::ImageLuma8(ref mut p) => Some(p),
_ => None,
}
}
pub fn as_luma_alpha8(&self) -> Option<&GrayAlphaImage> {
match *self {
DynamicImage::ImageLumaA8(ref p) => Some(p),
_ => None,
}
}
pub fn as_mut_luma_alpha8(&mut self) -> Option<&mut GrayAlphaImage> {
match *self {
DynamicImage::ImageLumaA8(ref mut p) => Some(p),
_ => None,
}
}
pub fn raw_pixels(&self) -> Vec<u8> {
image_to_bytes(self)
}
pub fn as_flat_samples(&self) -> FlatSamples<&[u8]> {
dynamic_map!(*self, ref p -> p.as_flat_samples())
}
pub fn color(&self) -> color::ColorType {
match *self {
DynamicImage::ImageLuma8(_) => color::ColorType::Gray(8),
DynamicImage::ImageLumaA8(_) => color::ColorType::GrayA(8),
DynamicImage::ImageRgb8(_) => color::ColorType::RGB(8),
DynamicImage::ImageRgba8(_) => color::ColorType::RGBA(8),
DynamicImage::ImageBgra8(_) => color::ColorType::BGRA(8),
DynamicImage::ImageBgr8(_) => color::ColorType::BGR(8),
}
}
pub fn grayscale(&self) -> DynamicImage {
match *self {
DynamicImage::ImageLuma8(ref p) => DynamicImage::ImageLuma8(p.clone()),
DynamicImage::ImageLumaA8(ref p) => DynamicImage::ImageLuma8(imageops::grayscale(p)),
DynamicImage::ImageRgb8(ref p) => DynamicImage::ImageLuma8(imageops::grayscale(p)),
DynamicImage::ImageRgba8(ref p) => DynamicImage::ImageLuma8(imageops::grayscale(p)),
DynamicImage::ImageBgr8(ref p) => DynamicImage::ImageLuma8(imageops::grayscale(p)),
DynamicImage::ImageBgra8(ref p) => DynamicImage::ImageLuma8(imageops::grayscale(p)),
}
}
pub fn invert(&mut self) {
dynamic_map!(*self, ref mut p -> imageops::invert(p))
}
pub fn resize(&self, nwidth: u32, nheight: u32, filter: imageops::FilterType) -> DynamicImage {
let (width2, height2) =
resize_dimensions(self.width(), self.height(), nwidth, nheight, false);
self.resize_exact(width2, height2, filter)
}
pub fn resize_exact(
&self,
nwidth: u32,
nheight: u32,
filter: imageops::FilterType,
) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::resize(p, nwidth, nheight, filter))
}
pub fn thumbnail(&self, nwidth: u32, nheight: u32) -> DynamicImage {
let (width2, height2) =
resize_dimensions(self.width(), self.height(), nwidth, nheight, false);
self.thumbnail_exact(width2, height2)
}
pub fn thumbnail_exact(&self, nwidth: u32, nheight: u32) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::thumbnail(p, nwidth, nheight))
}
pub fn resize_to_fill(
&self,
nwidth: u32,
nheight: u32,
filter: imageops::FilterType,
) -> DynamicImage {
let (width2, height2) =
resize_dimensions(self.width(), self.height(), nwidth, nheight, true);
let mut intermediate = self.resize_exact(width2, height2, filter);
let (iwidth, iheight) = intermediate.dimensions();
let ratio = u64::from(iwidth) * u64::from(nheight);
let nratio = u64::from(nwidth) * u64::from(iheight);
if nratio > ratio {
intermediate.crop(0, (iheight - nheight) / 2, nwidth, nheight)
} else {
intermediate.crop((iwidth - nwidth) / 2, 0, nwidth, nheight)
}
}
pub fn blur(&self, sigma: f32) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::blur(p, sigma))
}
pub fn unsharpen(&self, sigma: f32, threshold: i32) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::unsharpen(p, sigma, threshold))
}
pub fn filter3x3(&self, kernel: &[f32]) -> DynamicImage {
if kernel.len() != 9 {
panic!("filter must be 3 x 3")
}
dynamic_map!(*self, ref p => imageops::filter3x3(p, kernel))
}
pub fn adjust_contrast(&self, c: f32) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::contrast(p, c))
}
pub fn brighten(&self, value: i32) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::brighten(p, value))
}
pub fn huerotate(&self, value: i32) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::huerotate(p, value))
}
pub fn flipv(&self) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::flip_vertical(p))
}
pub fn fliph(&self) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::flip_horizontal(p))
}
pub fn rotate90(&self) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::rotate90(p))
}
pub fn rotate180(&self) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::rotate180(p))
}
pub fn rotate270(&self) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::rotate270(p))
}
pub fn write_to<W: Write, F: Into<ImageOutputFormat>>(
&self,
w: &mut W,
format: F,
) -> ImageResult<()> {
let mut bytes = self.raw_pixels();
let (width, height) = self.dimensions();
let mut color = self.color();
let format = format.into();
#[allow(deprecated)]
match format {
#[cfg(feature = "png_codec")]
image::ImageOutputFormat::PNG => {
let p = png::PNGEncoder::new(w);
match *self {
DynamicImage::ImageBgra8(_) => {
bytes=self.to_rgba().iter().cloned().collect();
color=color::ColorType::RGBA(8);
},
DynamicImage::ImageBgr8(_) => {
bytes=self.to_rgb().iter().cloned().collect();
color=color::ColorType::RGB(8);
},
_ => {},
}
try!(p.encode(&bytes, width, height, color));
Ok(())
}
#[cfg(feature = "pnm")]
image::ImageOutputFormat::PNM(subtype) => {
let mut p = pnm::PNMEncoder::new(w).with_subtype(subtype);
match *self {
DynamicImage::ImageBgra8(_) => {
bytes=self.to_rgba().iter().cloned().collect();
color=color::ColorType::RGBA(8);
},
DynamicImage::ImageBgr8(_) => {
bytes=self.to_rgb().iter().cloned().collect();
color=color::ColorType::RGB(8);
},
_ => {},
}
try!(p.encode(&bytes[..], width, height, color));
Ok(())
}
#[cfg(feature = "jpeg")]
image::ImageOutputFormat::JPEG(quality) => {
let mut j = jpeg::JPEGEncoder::new_with_quality(w, quality);
try!(j.encode(&bytes, width, height, color));
Ok(())
}
#[cfg(feature = "gif_codec")]
image::ImageOutputFormat::GIF => {
let mut g = gif::Encoder::new(w);
try!(g.encode(&gif::Frame::from_rgba(
width as u16,
height as u16,
&mut *self.to_rgba().iter().cloned().collect::<Vec<u8>>()
)));
Ok(())
}
#[cfg(feature = "ico")]
image::ImageOutputFormat::ICO => {
let i = ico::ICOEncoder::new(w);
try!(i.encode(&bytes, width, height, color));
Ok(())
}
#[cfg(feature = "bmp")]
image::ImageOutputFormat::BMP => {
let mut b = bmp::BMPEncoder::new(w);
try!(b.encode(&bytes, width, height, color));
Ok(())
}
image::ImageOutputFormat::Unsupported(msg) => {
Err(image::ImageError::UnsupportedError(msg))
}
}
}
pub fn save<Q>(&self, path: Q) -> io::Result<()>
where
Q: AsRef<Path>,
{
dynamic_map!(*self, ref p -> {
p.save(path)
})
}
}
#[allow(deprecated)]
impl GenericImageView for DynamicImage {
type Pixel = color::Rgba<u8>;
type InnerImageView = Self;
fn dimensions(&self) -> (u32, u32) {
dynamic_map!(*self, ref p -> p.dimensions())
}
fn bounds(&self) -> (u32, u32, u32, u32) {
dynamic_map!(*self, ref p -> p.bounds())
}
fn get_pixel(&self, x: u32, y: u32) -> color::Rgba<u8> {
dynamic_map!(*self, ref p -> p.get_pixel(x, y).to_rgba())
}
fn inner(&self) -> &Self::InnerImageView {
self
}
}
#[allow(deprecated)]
impl GenericImage for DynamicImage {
type InnerImage = DynamicImage;
fn put_pixel(&mut self, x: u32, y: u32, pixel: color::Rgba<u8>) {
match *self {
DynamicImage::ImageLuma8(ref mut p) => p.put_pixel(x, y, pixel.to_luma()),
DynamicImage::ImageLumaA8(ref mut p) => p.put_pixel(x, y, pixel.to_luma_alpha()),
DynamicImage::ImageRgb8(ref mut p) => p.put_pixel(x, y, pixel.to_rgb()),
DynamicImage::ImageRgba8(ref mut p) => p.put_pixel(x, y, pixel),
DynamicImage::ImageBgr8(ref mut p) => p.put_pixel(x, y, pixel.to_bgr()),
DynamicImage::ImageBgra8(ref mut p) => p.put_pixel(x, y, pixel.to_bgra()),
}
}
fn blend_pixel(&mut self, x: u32, y: u32, pixel: color::Rgba<u8>) {
match *self {
DynamicImage::ImageLuma8(ref mut p) => p.blend_pixel(x, y, pixel.to_luma()),
DynamicImage::ImageLumaA8(ref mut p) => p.blend_pixel(x, y, pixel.to_luma_alpha()),
DynamicImage::ImageRgb8(ref mut p) => p.blend_pixel(x, y, pixel.to_rgb()),
DynamicImage::ImageRgba8(ref mut p) => p.blend_pixel(x, y, pixel),
DynamicImage::ImageBgr8(ref mut p) => p.blend_pixel(x, y, pixel.to_bgr()),
DynamicImage::ImageBgra8(ref mut p) => p.blend_pixel(x, y, pixel.to_bgra()),
}
}
fn get_pixel_mut(&mut self, _: u32, _: u32) -> &mut color::Rgba<u8> {
unimplemented!()
}
fn inner_mut(&mut self) -> &mut Self::InnerImage {
self
}
}
pub fn decoder_to_image<I: ImageDecoder>(codec: I) -> ImageResult<DynamicImage> {
let color = codec.colortype();
let (w, h) = codec.dimensions();
let buf = try!(codec.read_image());
assert!(w <= u32::max_value() as u64);
assert!(h <= u32::max_value() as u64);
let (w, h) = (w as u32, h as u32);
let image = match color {
color::ColorType::RGB(8) => {
ImageBuffer::from_raw(w, h, buf).map(DynamicImage::ImageRgb8)
}
color::ColorType::RGBA(8) => {
ImageBuffer::from_raw(w, h, buf).map(DynamicImage::ImageRgba8)
}
color::ColorType::BGR(8) => {
ImageBuffer::from_raw(w, h, buf).map(DynamicImage::ImageBgr8)
}
color::ColorType::BGRA(8) => {
ImageBuffer::from_raw(w, h, buf).map(DynamicImage::ImageBgra8)
}
color::ColorType::Gray(8) => {
ImageBuffer::from_raw(w, h, buf).map(DynamicImage::ImageLuma8)
}
color::ColorType::GrayA(8) => {
ImageBuffer::from_raw(w, h, buf).map(DynamicImage::ImageLumaA8)
}
color::ColorType::Gray(bit_depth)
if bit_depth == 1 || bit_depth == 2 || bit_depth == 4 =>
{
gray_to_luma8(bit_depth, w, h, &buf).map(DynamicImage::ImageLuma8)
}
_ => return Err(image::ImageError::UnsupportedColor(color)),
};
match image {
Some(image) => Ok(image),
None => Err(image::ImageError::DimensionError),
}
}
fn gray_to_luma8(bit_depth: u8, w: u32, h: u32, buf: &[u8]) -> Option<GrayImage> {
let mask = (1u8 << bit_depth as usize) - 1;
let scaling_factor = 255 / ((1 << bit_depth as usize) - 1);
let bit_width = w * u32::from(bit_depth);
let skip = if bit_width % 8 == 0 {
0
} else {
(8 - bit_width % 8) / u32::from(bit_depth)
};
let row_len = w + skip;
let mut p = Vec::new();
let mut i = 0;
for v in buf {
for shift in num_iter::range_step_inclusive(8i8-(bit_depth as i8), 0, -(bit_depth as i8)) {
if i % (row_len as usize) < (w as usize) {
let pixel = (v & mask << shift as usize) >> shift as usize;
p.push(pixel * scaling_factor);
}
i += 1;
}
}
ImageBuffer::from_raw(w, h, p)
}
#[allow(deprecated)]
fn image_to_bytes(image: &DynamicImage) -> Vec<u8> {
match *image {
DynamicImage::ImageLuma8(ref a) => a.iter().cloned().collect(),
DynamicImage::ImageLumaA8(ref a) => a.iter().cloned().collect(),
DynamicImage::ImageRgb8(ref a) => a.iter().cloned().collect(),
DynamicImage::ImageRgba8(ref a) => a.iter().cloned().collect(),
DynamicImage::ImageBgr8(ref a) => a.iter().cloned().collect(),
DynamicImage::ImageBgra8(ref a) => a.iter().cloned().collect(),
}
}
pub fn open<P>(path: P) -> ImageResult<DynamicImage>
where
P: AsRef<Path>,
{
open_impl(path.as_ref())
}
fn open_impl(path: &Path) -> ImageResult<DynamicImage> {
let fin = match File::open(path) {
Ok(f) => f,
Err(err) => return Err(image::ImageError::IoError(err)),
};
let fin = BufReader::new(fin);
let ext = path.extension()
.and_then(|s| s.to_str())
.map_or("".to_string(), |s| s.to_ascii_lowercase());
let format = match &ext[..] {
"jpg" | "jpeg" => image::ImageFormat::JPEG,
"png" => image::ImageFormat::PNG,
"gif" => image::ImageFormat::GIF,
"webp" => image::ImageFormat::WEBP,
"tif" | "tiff" => image::ImageFormat::TIFF,
"tga" => image::ImageFormat::TGA,
"bmp" => image::ImageFormat::BMP,
"ico" => image::ImageFormat::ICO,
"hdr" => image::ImageFormat::HDR,
"pbm" | "pam" | "ppm" | "pgm" => image::ImageFormat::PNM,
format => {
return Err(image::ImageError::UnsupportedError(format!(
"Image format image/{:?} is not supported.",
format
)))
}
};
load(fin, format)
}
pub fn save_buffer<P>(
path: P,
buf: &[u8],
width: u32,
height: u32,
color: color::ColorType,
) -> io::Result<()>
where
P: AsRef<Path>,
{
save_buffer_impl(path.as_ref(), buf, width, height, color)
}
fn save_buffer_impl(
path: &Path,
buf: &[u8],
width: u32,
height: u32,
color: color::ColorType,
) -> io::Result<()> {
let fout = &mut BufWriter::new(try!(File::create(path)));
let ext = path.extension()
.and_then(|s| s.to_str())
.map_or("".to_string(), |s| s.to_ascii_lowercase());
match &*ext {
#[cfg(feature = "ico")]
"ico" => ico::ICOEncoder::new(fout).encode(buf, width, height, color),
#[cfg(feature = "jpeg")]
"jpg" | "jpeg" => jpeg::JPEGEncoder::new(fout).encode(buf, width, height, color),
#[cfg(feature = "png_codec")]
"png" => png::PNGEncoder::new(fout).encode(buf, width, height, color),
#[cfg(feature = "pnm")]
"pbm" => pnm::PNMEncoder::new(fout)
.with_subtype(pnm::PNMSubtype::Bitmap(pnm::SampleEncoding::Binary))
.encode(buf, width, height, color),
#[cfg(feature = "pnm")]
"pgm" => pnm::PNMEncoder::new(fout)
.with_subtype(pnm::PNMSubtype::Graymap(pnm::SampleEncoding::Binary))
.encode(buf, width, height, color),
#[cfg(feature = "pnm")]
"ppm" => pnm::PNMEncoder::new(fout)
.with_subtype(pnm::PNMSubtype::Pixmap(pnm::SampleEncoding::Binary))
.encode(buf, width, height, color),
#[cfg(feature = "pnm")]
"pam" => pnm::PNMEncoder::new(fout).encode(buf, width, height, color),
#[cfg(feature = "bmp")]
"bmp" => bmp::BMPEncoder::new(fout).encode(buf, width, height, color),
format => Err(io::Error::new(
io::ErrorKind::InvalidInput,
&format!("Unsupported image format image/{:?}", format)[..],
)),
}
}
pub fn load<R: BufRead + Seek>(r: R, format: ImageFormat) -> ImageResult<DynamicImage> {
#[allow(deprecated, unreachable_patterns)]
match format {
#[cfg(feature = "png_codec")]
image::ImageFormat::PNG => decoder_to_image(png::PNGDecoder::new(r)?),
#[cfg(feature = "gif_codec")]
image::ImageFormat::GIF => decoder_to_image(gif::Decoder::new(r)?),
#[cfg(feature = "jpeg")]
image::ImageFormat::JPEG => decoder_to_image(jpeg::JPEGDecoder::new(r)?),
#[cfg(feature = "webp")]
image::ImageFormat::WEBP => decoder_to_image(webp::WebpDecoder::new(r)?),
#[cfg(feature = "tiff")]
image::ImageFormat::TIFF => decoder_to_image(try!(tiff::TIFFDecoder::new(r))),
#[cfg(feature = "tga")]
image::ImageFormat::TGA => decoder_to_image(tga::TGADecoder::new(r)?),
#[cfg(feature = "bmp")]
image::ImageFormat::BMP => decoder_to_image(bmp::BMPDecoder::new(r)?),
#[cfg(feature = "ico")]
image::ImageFormat::ICO => decoder_to_image(try!(ico::ICODecoder::new(r))),
#[cfg(feature = "hdr")]
image::ImageFormat::HDR => decoder_to_image(try!(hdr::HDRAdapter::new(BufReader::new(r)))),
#[cfg(feature = "pnm")]
image::ImageFormat::PNM => decoder_to_image(try!(pnm::PNMDecoder::new(BufReader::new(r)))),
_ => Err(image::ImageError::UnsupportedError(format!(
"A decoder for {:?} is not available.",
format
))),
}
}
static MAGIC_BYTES: [(&'static [u8], ImageFormat); 17] = [
(b"\x89PNG\r\n\x1a\n", ImageFormat::PNG),
(&[0xff, 0xd8, 0xff], ImageFormat::JPEG),
(b"GIF89a", ImageFormat::GIF),
(b"GIF87a", ImageFormat::GIF),
(b"RIFF", ImageFormat::WEBP),
(b"MM.*", ImageFormat::TIFF),
(b"II*.", ImageFormat::TIFF),
(b"BM", ImageFormat::BMP),
(&[0, 0, 1, 0], ImageFormat::ICO),
(b"#?RADIANCE", ImageFormat::HDR),
(b"P1", ImageFormat::PNM),
(b"P2", ImageFormat::PNM),
(b"P3", ImageFormat::PNM),
(b"P4", ImageFormat::PNM),
(b"P5", ImageFormat::PNM),
(b"P6", ImageFormat::PNM),
(b"P7", ImageFormat::PNM),
];
pub fn load_from_memory(buffer: &[u8]) -> ImageResult<DynamicImage> {
load_from_memory_with_format(buffer, try!(guess_format(buffer)))
}
#[inline(always)]
pub fn load_from_memory_with_format(buf: &[u8], format: ImageFormat) -> ImageResult<DynamicImage> {
let b = io::Cursor::new(buf);
load(b, format)
}
pub fn guess_format(buffer: &[u8]) -> ImageResult<ImageFormat> {
for &(signature, format) in &MAGIC_BYTES {
if buffer.starts_with(signature) {
return Ok(format);
}
}
Err(image::ImageError::UnsupportedError(
"Unsupported image format".to_string(),
))
}
fn resize_dimensions(width: u32, height: u32, nwidth: u32, nheight: u32, fill: bool) -> (u32, u32) {
let ratio = u64::from(width) * u64::from(nheight);
let nratio = u64::from(nwidth) * u64::from(height);
let use_width = if fill {
nratio > ratio
} else {
nratio <= ratio
};
let intermediate = if use_width {
u64::from(height) * u64::from(nwidth) / u64::from(width)
} else {
u64::from(width) * u64::from(nheight) / u64::from(height)
};
if use_width {
if intermediate <= u64::from(::std::u32::MAX) {
(nwidth, intermediate as u32)
} else {
(
(u64::from(nwidth) * u64::from(::std::u32::MAX) / intermediate) as u32,
::std::u32::MAX,
)
}
} else if intermediate <= u64::from(::std::u32::MAX) {
(intermediate as u32, nheight)
} else {
(
::std::u32::MAX,
(u64::from(nheight) * u64::from(::std::u32::MAX) / intermediate) as u32,
)
}
}
#[cfg(test)]
mod bench {
#[cfg(feature = "benchmarks")]
use test;
#[bench]
#[cfg(feature = "benchmarks")]
fn bench_conversion(b: &mut test::Bencher) {
let a = super::DynamicImage::ImageRgb8(::ImageBuffer::new(1000, 1000));
b.iter(|| a.to_luma());
b.bytes = 1000 * 1000 * 3
}
}
#[cfg(test)]
mod test {
#[test]
fn test_empty_file() {
assert!(super::load_from_memory(b"").is_err());
}
quickcheck! {
fn resize_bounds_correctly_width(old_w: u32, new_w: u32) -> bool {
if old_w == 0 || new_w == 0 { return true; }
let result = super::resize_dimensions(old_w, 400, new_w, ::std::u32::MAX, false);
result.0 == new_w && result.1 == (400 as f64 * new_w as f64 / old_w as f64) as u32
}
}
quickcheck! {
fn resize_bounds_correctly_height(old_h: u32, new_h: u32) -> bool {
if old_h == 0 || new_h == 0 { return true; }
let result = super::resize_dimensions(400, old_h, ::std::u32::MAX, new_h, false);
result.1 == new_h && result.0 == (400 as f64 * new_h as f64 / old_h as f64) as u32
}
}
#[test]
fn resize_handles_fill() {
let result = super::resize_dimensions(100, 200, 200, 500, true);
assert!(result.0 == 250);
assert!(result.1 == 500);
let result = super::resize_dimensions(200, 100, 500, 200, true);
assert!(result.0 == 500);
assert!(result.1 == 250);
}
#[test]
fn resize_handles_overflow() {
let result = super::resize_dimensions(100, ::std::u32::MAX, 200, ::std::u32::MAX, true);
assert!(result.0 == 100);
assert!(result.1 == ::std::u32::MAX);
let result = super::resize_dimensions(::std::u32::MAX, 100, ::std::u32::MAX, 200, true);
assert!(result.0 == ::std::u32::MAX);
assert!(result.1 == 100);
}
#[test]
fn gray_to_luma8_skip() {
let check = |bit_depth, w, h, from, to| {
assert_eq!(
super::gray_to_luma8(bit_depth, w, h, from).map(super::GrayImage::into_raw),
Some(to));
};
check(
1, 10, 2,
&[0b11110000, 0b11000000, 0b00001111, 0b11000000],
vec![255, 255, 255, 255, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 255, 255, 255, 255, 255, 255]);
check(
2, 5, 2,
&[0b11110000, 0b11000000, 0b00001111, 0b11000000],
vec![255, 255, 0, 0, 255, 0, 0, 255, 255, 255]);
check(
2, 4, 2,
&[0b11110000, 0b00001111],
vec![255, 255, 0, 0, 0, 0, 255, 255]);
check(
4, 1, 2,
&[0b11110011, 0b00001100],
vec![255, 0]);
}
}