JPEG support
This commit is contained in:
parent
a57c228580
commit
fa69c53cfc
@ -342,6 +342,7 @@ fn load_image<R:Read+Seek+std::io::BufRead>(input:&mut R)->AResult<image::Dynami
|
||||
input.rewind()?;
|
||||
match &fourcc{
|
||||
b"\x89PNG"=>Ok(image::load(input,image::ImageFormat::Png)?),
|
||||
b"JPEG"=>Ok(image::load(input,image::ImageFormat::Jpeg)?),
|
||||
_=>Err(anyhow::Error::msg("Unknown texture format")),
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user