mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-17 02:38:18 -07:00
fix: use png for thumbnails
This commit is contained in:
parent
cf91996336
commit
ada260bf42
@ -125,7 +125,7 @@ impl Media {
|
|||||||
if let Ok(image) = image::load_from_memory(&file) {
|
if let Ok(image) = image::load_from_memory(&file) {
|
||||||
let thumbnail = image.thumbnail(width, height);
|
let thumbnail = image.thumbnail(width, height);
|
||||||
let mut thumbnail_bytes = Vec::new();
|
let mut thumbnail_bytes = Vec::new();
|
||||||
thumbnail.write_to(&mut thumbnail_bytes, image::ImageOutputFormat::Jpeg(75))?;
|
thumbnail.write_to(&mut thumbnail_bytes, image::ImageOutputFormat::Png)?;
|
||||||
|
|
||||||
// Save thumbnail in database so we don't have to generate it again next time
|
// Save thumbnail in database so we don't have to generate it again next time
|
||||||
let mut thumbnail_key = key.to_vec();
|
let mut thumbnail_key = key.to_vec();
|
||||||
|
Loading…
Reference in New Issue
Block a user