diff --git a/README.md b/README.md index 4963add..1506513 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,8 @@ # Imaging -[![PkgGoDev](https://pkg.go.dev/badge/github.com/disintegration/imaging)](https://pkg.go.dev/github.com/disintegration/imaging) -[![Build Status](https://travis-ci.org/disintegration/imaging.svg?branch=master)](https://travis-ci.org/disintegration/imaging) -[![Coverage Status](https://coveralls.io/repos/github/disintegration/imaging/badge.svg?branch=master&service=github)](https://coveralls.io/github/disintegration/imaging?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/disintegration/imaging)](https://goreportcard.com/report/github.com/disintegration/imaging) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/boxes-ltd/imaging)](https://pkg.go.dev/github.com/boxes-ltd/imaging) +[![Build Status](https://github.com/boxes-ltd/imaging/actions/workflows/go.yml/badge.svg)](https://github.com/boxes-ltd/imaging/actions) +[![Go Report Card](https://goreportcard.com/badge/github.com/boxes-ltd/imaging)](https://goreportcard.com/report/github.com/boxes-ltd/imaging) Package imaging provides basic image processing functions (resize, rotate, crop, brightness/contrast adjustments, etc.). @@ -12,11 +11,11 @@ as an input, and return a new image of `*image.NRGBA` type (32bit RGBA colors, n ## Installation - go get -u github.com/disintegration/imaging + go get -u github.com/boxes-ltd/imaging ## Documentation -https://pkg.go.dev/github.com/disintegration/imaging +https://pkg.go.dev/github.com/boxes-ltd/imaging ## Usage examples @@ -156,13 +155,13 @@ img, err := imaging.Open("test.jpg", imaging.AutoOrientation(true)) ### What's the difference between `imaging` and `gift` packages? -[imaging](https://github.com/disintegration/imaging) +[imaging](https://github.com/boxes-ltd/imaging) is designed to be a lightweight and simple image manipulation package. It provides basic image processing functions and a few helper functions such as `Open` and `Save`. It consistently returns *image.NRGBA image type (8 bits per channel, RGBA). -[gift](https://github.com/disintegration/gift) +[gift](https://github.com/boxes-ltd/gift) supports more advanced image processing, for example, sRGB/Linear color space conversions. It also supports different output image types (e.g. 16 bits per channel) and provides easy-to-use API for chaining @@ -178,7 +177,7 @@ import ( "image/color" "log" - "github.com/disintegration/imaging" + "github.com/boxes-ltd/imaging" ) func main() {