#image-resizing #image #resize #crop #image-url #client

thumbor

A Rust client for the Thumbor image service

16 releases

0.1.11 Sep 16, 2024
0.1.10 Sep 16, 2024
0.0.4 Sep 15, 2024

#950 in Images

Download history 70/week @ 2024-11-21 91/week @ 2024-11-28 85/week @ 2024-12-05 82/week @ 2024-12-12 107/week @ 2024-12-19 43/week @ 2024-12-26 147/week @ 2025-01-02 91/week @ 2025-01-09 161/week @ 2025-01-16 58/week @ 2025-01-23 7/week @ 2025-01-30 177/week @ 2025-02-06 33/week @ 2025-02-13 83/week @ 2025-02-20 137/week @ 2025-02-27 80/week @ 2025-03-06

333 downloads per month

MIT license

80KB
576 lines

Rust Thumbor client

Repository Crates.io Version docs.rs Crates.io MSRV

Thumbor is a smart imaging service. It enables on-demand crop, resizing and flipping of images. It features a very smart detection of important points in the image for better cropping and resizing, using state-of-the-art face and feature detection algorithms

This library is a Rust client implementation of the Thumbor image service to generate image urls.

Usage

use thumbor::Server;

let server = Server::new("http://localhost:8888", "my-security-key").unwrap();

let endpoint = server.endpoint_builder()
    .resize((300, 200))
    .smart(true)
    .build();

let url = endpoint.to_url("path/to/my/image.jpg");

Dependencies

~1.3–2MB
~43K SLoC