Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ 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/Countingup/disintegration-imaging

## Documentation
## Original Repo Documentation

https://pkg.go.dev/github.com/disintegration/imaging

Expand Down Expand Up @@ -156,7 +156,7 @@ 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/Countingup/disintegration-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
Expand All @@ -178,7 +178,7 @@ import (
"image/color"
"log"

"github.com/disintegration/imaging"
"github.com/Countingup/disintegration-imaging"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"image/color"
"log"

"github.com/disintegration/imaging"
"github.com/Countingup/disintegration-imaging"
)

func Example() {
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
module github.com/disintegration/imaging
module github.com/Countingup/disintegration-imaging

go 1.22.2

require golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8

require golang.org/x/text v0.3.0 // indirect