mirror of https://github.com/talgo-cloud/bimg.git
commit
885b315035
@ -1,9 +1,39 @@
|
|||||||
# bimg
|
# bimg [](https://travis-ci.org/h2non/bimg) []() [](https://godoc.org/github.com/h2non/bimg)
|
||||||
|
|
||||||
Go library for blazing fast image processing based on [libvips](https://github.com/jcupitt/libvips)
|
Go library for blazing fast image processing based on [libvips](https://github.com/jcupitt/libvips) using C bindings
|
||||||
|
|
||||||
`Work in progress`
|
`Work in progress`
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```bash
|
||||||
|
go get gopkg.in/h2non/bimg.v0
|
||||||
|
```
|
||||||
|
|
||||||
|
Requires Go 1.3+
|
||||||
|
|
||||||
|
## API
|
||||||
|
|
||||||
|
```go
|
||||||
|
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
|
## License
|
||||||
|
|
||||||
MIT - Tomas Aparicio
|
MIT - Tomas Aparicio
|
||||||
|
|||||||
Loading…
Reference in new issue