colorcrop/README.md
2017-06-23 19:22:25 +05:00

19 lines
324 B
Markdown

# colorcrop
A Go library for cropping images by removing borders with specified color.
## Installation
`go get -u github.com/nxshock/colorcrop`
## Usage
Crop white borders with 50% of thresold:
```go
croppedImage := colorcrop.Crop(sourceImage, color.RGBA{255, 255, 255, 255}, 0.5)
```
## Examples
See in "examples".