diff --git a/example/capjoin/main.go b/example/capjoin/main.go index 71f3356..85dd825 100644 --- a/example/capjoin/main.go +++ b/example/capjoin/main.go @@ -21,7 +21,7 @@ import ( "log" "os" - "github.com/golang/freetype/raster" + "git.fromouter.space/crunchy-rocks/freetype/raster" "golang.org/x/image/math/fixed" ) diff --git a/example/drawer/main.go b/example/drawer/main.go index d26d066..9d8726a 100644 --- a/example/drawer/main.go +++ b/example/drawer/main.go @@ -24,7 +24,7 @@ import ( "math" "os" - "github.com/golang/freetype/truetype" + "git.fromouter.space/crunchy-rocks/freetype/truetype" "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/example/freetype/main.go b/example/freetype/main.go index dfbde9a..8a3d7d7 100644 --- a/example/freetype/main.go +++ b/example/freetype/main.go @@ -23,7 +23,7 @@ import ( "log" "os" - "github.com/golang/freetype" + "git.fromouter.space/crunchy-rocks/freetype" "golang.org/x/image/font" ) diff --git a/example/gamma/main.go b/example/gamma/main.go index cdd50bc..f2a54ed 100644 --- a/example/gamma/main.go +++ b/example/gamma/main.go @@ -20,7 +20,7 @@ import ( "log" "os" - "github.com/golang/freetype/raster" + "git.fromouter.space/crunchy-rocks/freetype/raster" "golang.org/x/image/math/fixed" ) diff --git a/example/genbasicfont/main.go b/example/genbasicfont/main.go index 5b2f2bc..1d7413a 100644 --- a/example/genbasicfont/main.go +++ b/example/genbasicfont/main.go @@ -26,7 +26,7 @@ import ( "strings" "unicode" - "github.com/golang/freetype/truetype" + "git.fromouter.space/crunchy-rocks/freetype/truetype" "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/example/raster/main.go b/example/raster/main.go index 3e572e1..0e33e53 100644 --- a/example/raster/main.go +++ b/example/raster/main.go @@ -21,7 +21,7 @@ import ( "log" "os" - "github.com/golang/freetype/raster" + "git.fromouter.space/crunchy-rocks/freetype/raster" "golang.org/x/image/math/fixed" ) diff --git a/example/round/main.go b/example/round/main.go index 2920e83..78b7f38 100644 --- a/example/round/main.go +++ b/example/round/main.go @@ -27,7 +27,7 @@ import ( "math" "os" - "github.com/golang/freetype/raster" + "git.fromouter.space/crunchy-rocks/freetype/raster" "golang.org/x/image/math/fixed" ) diff --git a/example/truetype/main.go b/example/truetype/main.go index e7db2d0..e21dc44 100644 --- a/example/truetype/main.go +++ b/example/truetype/main.go @@ -17,7 +17,7 @@ import ( "io/ioutil" "log" - "github.com/golang/freetype/truetype" + "git.fromouter.space/crunchy-rocks/freetype/truetype" "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/freetype.go b/freetype.go index 9603586..888b16f 100644 --- a/freetype.go +++ b/freetype.go @@ -6,15 +6,15 @@ // The freetype package provides a convenient API to draw text onto an image. // Use the freetype/raster and freetype/truetype packages for lower level // control over rasterization and TrueType parsing. -package freetype // import "github.com/golang/freetype" +package freetype // import "git.fromouter.space/crunchy-rocks/freetype" import ( "errors" "image" "image/draw" - "github.com/golang/freetype/raster" - "github.com/golang/freetype/truetype" + "git.fromouter.space/crunchy-rocks/freetype/raster" + "git.fromouter.space/crunchy-rocks/freetype/truetype" "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/raster/raster.go b/raster/raster.go index 7e6cd4e..b1fe20b 100644 --- a/raster/raster.go +++ b/raster/raster.go @@ -13,7 +13,7 @@ // the Freetype "smooth" module, and the Anti-Grain Geometry library. A // description of the area/coverage algorithm is at // http://projects.tuxee.net/cl-vectors/section-the-cl-aa-algorithm -package raster // import "github.com/golang/freetype/raster" +package raster // import "git.fromouter.space/crunchy-rocks/freetype/raster" import ( "strconv" diff --git a/truetype/face.go b/truetype/face.go index 099006f..8d77ad6 100644 --- a/truetype/face.go +++ b/truetype/face.go @@ -9,7 +9,7 @@ import ( "image" "math" - "github.com/golang/freetype/raster" + "git.fromouter.space/crunchy-rocks/freetype/raster" "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/truetype/truetype.go b/truetype/truetype.go index 7270bbf..a507914 100644 --- a/truetype/truetype.go +++ b/truetype/truetype.go @@ -15,7 +15,7 @@ // // To measure a TrueType font in ideal FUnit space, use scale equal to // font.FUnitsPerEm(). -package truetype // import "github.com/golang/freetype/truetype" +package truetype // import "git.fromouter.space/crunchy-rocks/freetype/truetype" import ( "fmt"