https://github.com/beetlebugorg/go-dims
HTTP microservice for dynamic image manipulation written in Go
https://github.com/beetlebugorg/go-dims
crop golang image image-processing imagemagick resize
Last synced: about 1 year ago
JSON representation
HTTP microservice for dynamic image manipulation written in Go
- Host: GitHub
- URL: https://github.com/beetlebugorg/go-dims
- Owner: beetlebugorg
- License: apache-2.0
- Created: 2025-02-24T14:20:17.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-24T14:20:57.000Z (over 1 year ago)
- Last Synced: 2025-03-15T20:40:06.089Z (about 1 year ago)
- Language: Go
- Size: 2.62 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-dims
Dims is an HTTP microservice for dynamic image manipulation written in Go. Use dims to resize images on-the-fly avoiding the costly process of pre-computing and storing images.
`go-dims` is a Go implementation of the DIMS API as implemented by [mod-dims](https://github.com/beetlebugorg/mod_dims).
If you're building a website you probably need a service like dims to resize images for publishing. With dims you can do that programmatically, on-the-fly.
It can reduce costs by:
- only computing images when you need them.
- not storing image size renditions.
It can improve your development and publishing experience by:
- allowing your developers to easily define image sizes in their frontend code
- allowing your users to publish images without manipulating them first
## Running
Running in development mode disables signature verification:
```
docker run -p 8080:8080 ghcr.io/beetlebugorg/go-dims serve --dev --debug --bind ":8080"
```