thumbnailer

Crates.iothumbnailer
lib.rsthumbnailer
version0.5.1
sourcesrc
created_at2021-11-06 21:46:08.491823
updated_at2023-07-14 16:11:48.603136
descriptionAn image thumbnail creation library
homepage
repositoryhttps://github.com/Trivernis/thumbnailer
max_upload_size
id477852
size624,504
Julius Riegel (Trivernis)

documentation

README

Thumbnailer

This crate can be used to create thumbnails for all kinds of files.

Usage

use thumbnailer::{create_thumbnails, Thumbnail, ThumbnailSize};
use std::fs::File;
use std::io::BufReader;

fn main() {
    let file = File::open("tests/assets/test.png").unwrap();
    let reader = BufReader::new(file);
    let mut  thumbnails = create_thumbnails(reader, mime::IMAGE_PNG, [ThumbnailSize::Small, ThumbnailSize::Medium]).unwrap();
    
    let thumbnail = thumbnails.pop().unwrap();
    let mut buf = Vec::new();
    thumbnail.write_png(&mut buf).unwrap();
}

Supported media types

Type Subtype
Image Png
Image Bmp
image Jpeg
Image Webp
Image Gif

License

MIT

Commit count: 19

cargo fmt