mirror of
https://github.com/talgo-cloud/bimg.git
synced 2026-03-16 19:05:54 -07:00
feat(docs): add API example
This commit is contained in:
parent
da8c9707c9
commit
c54b36d0bf
1 changed files with 34 additions and 1 deletions
35
README.md
35
README.md
|
|
@ -1,9 +1,42 @@
|
||||||
# bimg
|
# 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
|
||||||
|
```
|
||||||
|
|
||||||
|
Or get the lastest development version
|
||||||
|
```bash
|
||||||
|
go get github.com/h2non/bimg
|
||||||
|
```
|
||||||
|
|
||||||
|
## 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…
Add table
Add a link
Reference in a new issue