Warning
This Project is a work in progress and is not suitable to be used at this moment.
The Processing algorithms are far from optimal and will undergo massive Improvements.
Star the repository for progress updates.
Nano Image Server is a tiny, blazingly fast service to serve images with support for image operation on fly.
- Low latency Image delivery
- Image operation on fly via url queries
- Support for GPU Acceleration
- Simple Image browsing utility
- Caching and Instant Retrieval
- Support for Linux and Windows
- Place Images you need in images folder next to the executable
- Start the server
./nano_image_server #Linux
start nano_image_server.exe #Windows
- Access the server from port 8000 in localhost.
- To get image go to
/image/<imagename>.<format>
- If needed resizing use queries resx and resy
/image/Nature.jpg?resx=1920&resy=1080
- When resizing use query resfilter
/image/Nature.jpg?resx=1920&resy=1080&resfilter=lanczos
- If specified size is 0 or left unspecified they display original size of the image
- If resfilter query is unspecified, nearest is chosen by default
- Choose from several resize algorithms for resizing using the resfilter query.
Availible resize algorithms are,- Nearest
- Triangle
- Catmullrom
- Gaussian
- Lanczos
# command
ab -n 1000 -c 24 -k 'http://localhost:8000/image/in.jpg?resx=1080&resy=1920' #With Processing
ab -n 1000 -c 24 -k 'http://localhost:8000/image/in.jpg' #Without Processing