Go to file
Andreas Neue 1a62f6755d
continuous-integration/drone/push Build is passing Details
Added blur method
2021-05-22 20:58:57 +02:00
.drone.yml „.drone.yml“ ändern 2021-05-20 09:16:47 +00:00
Dockerfile Bump to vips v8.10.6 and matching govips 2021-05-21 00:39:13 +02:00
LICENSE LICENSE 2019-01-09 09:20:50 +01:00
README.md add build status to readme 2019-08-01 18:13:43 +02:00
go.mod Bump to vips v8.10.6 and matching govips 2021-05-21 00:39:13 +02:00
go.sum Bump to vips v8.10.6 and matching govips 2021-05-21 00:39:13 +02:00
main.go Added blur method 2021-05-22 20:58:57 +02:00

README.md

Build Status

image-transformer

Derived from https://karthikkaranth.me/blog/image-resizing-server-go-libvips/

Build docker image

docker build -t dr.dnix.de/image-transformer .

Build binary

wget https://github.com/libvips/libvips/releases/download/v8.7.3/vips-8.7.3.tar.gz
tar xvzf vips-8.7.3.tar.gz
cd vips-8.7.3
./configure && make && make install
ldconfig
cd ..
go get -v -u github.com/davidbyttow/govips/pkg/vips && go install -v ./...