Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 5 days 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 (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-08T09:46:49.000Z (8 months ago)
- Last Synced: 2024-04-15T02:17:19.518Z (7 months ago)
- Topics: api, image-manipulation, image-processing, rust, rust-lang, tools
- Language: Rust
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- 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.
## 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
````