https://github.com/eyevinn/rust-image-processor
Tiny API that provides endpoints for scaling and manipulating images
https://github.com/eyevinn/rust-image-processor
api image-manipulation image-processing rust rust-lang tools
Last synced: 2 months ago
JSON representation
Tiny API that provides endpoints for scaling and manipulating images
- Host: GitHub
- URL: https://github.com/eyevinn/rust-image-processor
- Owner: Eyevinn
- License: mit
- Created: 2023-12-29T12:45:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-16T07:37:54.000Z (3 months ago)
- Last Synced: 2025-05-07T20:43:16.390Z (2 months ago)
- Topics: api, image-manipulation, image-processing, rust, rust-lang, tools
- Language: Rust
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust Image Processor
It's just a POC for now. The output is hard-coded to be PNG.
The Rust Image Processor is a lightweight API that offers endpoints for scaling and manipulating images. It is designed to be efficient and easy to use for image-processing tasks.
[](https://app.osaas.io/browse/eyevinn-rust-image-processor)
## Usage
To use the Rust Image Processor, send HTTP requests to its endpoints for scaling and manipulating images.
### Example
````bash
curl -X GET "http://localhost:8080/resize?url=https://www.example.com/img/img.png&width=100&height=100" --output resized_image.png
````