Reconvert all import paths
This commit is contained in:
parent
711d61e914
commit
c04a4249e8
13 changed files with 23 additions and 24 deletions
2
README
2
README
|
@ -1,7 +1,7 @@
|
|||
The Freetype font rasterizer in the Go programming language.
|
||||
|
||||
To download and install from source:
|
||||
$ go get github.com/golang/freetype
|
||||
$ go get github.com/tdewolff/freetype
|
||||
|
||||
It is an incomplete port:
|
||||
* It only supports TrueType fonts, and not Type 1 fonts nor bitmap fonts.
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
// +build example
|
||||
//
|
||||
// This build tag means that "go install github.com/golang/freetype/..."
|
||||
// This build tag means that "go install github.com/tdewolff/freetype/..."
|
||||
// doesn't install this example program. Use "go run main.go" to run it or "go
|
||||
// install -tags=example" to install it.
|
||||
|
||||
|
@ -21,7 +21,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/golang/freetype/raster"
|
||||
"github.com/tdewolff/freetype/raster"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
// +build example
|
||||
//
|
||||
// This build tag means that "go install github.com/golang/freetype/..."
|
||||
// This build tag means that "go install github.com/tdewolff/freetype/..."
|
||||
// doesn't install this example program. Use "go run main.go" to run it or "go
|
||||
// install -tags=example" to install it.
|
||||
|
||||
|
@ -24,7 +24,7 @@ import (
|
|||
"math"
|
||||
"os"
|
||||
|
||||
"github.com/golang/freetype/truetype"
|
||||
"github.com/tdewolff/freetype/truetype"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
// +build example
|
||||
//
|
||||
// This build tag means that "go install github.com/golang/freetype/..."
|
||||
// This build tag means that "go install github.com/tdewolff/freetype/..."
|
||||
// doesn't install this example program. Use "go run main.go" to run it or "go
|
||||
// install -tags=example" to install it.
|
||||
|
||||
|
@ -23,7 +23,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/golang/freetype"
|
||||
"github.com/tdewolff/freetype"
|
||||
"golang.org/x/image/font"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
// +build example
|
||||
//
|
||||
// This build tag means that "go install github.com/golang/freetype/..."
|
||||
// This build tag means that "go install github.com/tdewolff/freetype/..."
|
||||
// doesn't install this example program. Use "go run main.go" to run it or "go
|
||||
// install -tags=example" to install it.
|
||||
|
||||
|
@ -20,7 +20,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/golang/freetype/raster"
|
||||
"github.com/tdewolff/freetype/raster"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
// +build example
|
||||
//
|
||||
// This build tag means that "go install github.com/golang/freetype/..."
|
||||
// This build tag means that "go install github.com/tdewolff/freetype/..."
|
||||
// doesn't install this example program. Use "go run main.go" to run it or "go
|
||||
// install -tags=example" to install it.
|
||||
|
||||
|
@ -26,7 +26,7 @@ import (
|
|||
"strings"
|
||||
"unicode"
|
||||
|
||||
"github.com/golang/freetype/truetype"
|
||||
"github.com/tdewolff/freetype/truetype"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
// +build example
|
||||
//
|
||||
// This build tag means that "go install github.com/golang/freetype/..."
|
||||
// This build tag means that "go install github.com/tdewolff/freetype/..."
|
||||
// doesn't install this example program. Use "go run main.go" to run it or "go
|
||||
// install -tags=example" to install it.
|
||||
|
||||
|
@ -21,7 +21,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/golang/freetype/raster"
|
||||
"github.com/tdewolff/freetype/raster"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
// +build example
|
||||
//
|
||||
// This build tag means that "go install github.com/golang/freetype/..."
|
||||
// This build tag means that "go install github.com/tdewolff/freetype/..."
|
||||
// doesn't install this example program. Use "go run main.go" to run it or "go
|
||||
// install -tags=example" to install it.
|
||||
|
||||
|
@ -27,7 +27,7 @@ import (
|
|||
"math"
|
||||
"os"
|
||||
|
||||
"github.com/golang/freetype/raster"
|
||||
"github.com/tdewolff/freetype/raster"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
// +build example
|
||||
//
|
||||
// This build tag means that "go install github.com/golang/freetype/..."
|
||||
// This build tag means that "go install github.com/tdewolff/freetype/..."
|
||||
// doesn't install this example program. Use "go run main.go" to run it or "go
|
||||
// install -tags=example" to install it.
|
||||
|
||||
|
@ -17,7 +17,7 @@ import (
|
|||
"io/ioutil"
|
||||
"log"
|
||||
|
||||
"github.com/golang/freetype/truetype"
|
||||
"github.com/tdewolff/freetype/truetype"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
|
|
@ -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 "github.com/tdewolff/freetype"
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"image"
|
||||
"image/draw"
|
||||
|
||||
"github.com/golang/freetype/raster"
|
||||
"github.com/golang/freetype/truetype"
|
||||
"github.com/tdewolff/freetype/raster"
|
||||
"github.com/tdewolff/freetype/truetype"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
|
|
@ -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 "github.com/tdewolff/freetype/raster"
|
||||
|
||||
import (
|
||||
"strconv"
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
"image"
|
||||
"math"
|
||||
|
||||
"github.com/golang/freetype/raster"
|
||||
"github.com/tdewolff/freetype/raster"
|
||||
"golang.org/x/image/font"
|
||||
"golang.org/x/image/math/fixed"
|
||||
)
|
||||
|
@ -491,7 +491,6 @@ func (a *face) drawContour(ps []Point, dx, dy fixed.Int26_6) {
|
|||
if a.stroke == 0 {
|
||||
a.r.AddPath(path)
|
||||
} else {
|
||||
path.Add1(start)
|
||||
a.r.AddStroke(path, a.stroke, raster.RoundCapper, raster.RoundJoiner)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 "github.com/tdewolff/freetype/truetype"
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
|
Loading…
Reference in a new issue