mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-08 23:18:19 -07:00
604 B
604 B
bimg
Go library for blazing fast image processing based on libvips using C bindings
Work in progress
Installation
go get gopkg.in/h2non/bimg.v0
Or get the lastest development version
go get github.com/h2non/bimg
API
import (
"fmt"
"os"
"gopkg.in/h2non/bimg"
)
options := bimg.Options{
Width: 800,
Height: 600,
Crop: true,
Quality: 95,
}
newImage, err := bimg.Resize(image, options)
if err != nil {
fmt.Fprintln(os.Stderr, err)
}
License
MIT - Tomas Aparicio