提交 5193f9f1 编写于 作者: N Nigel Tao

Add canonical import paths.

上级 d1c46089
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
// The freetype package provides a convenient API to draw text onto an image. // The freetype package provides a convenient API to draw text onto an image.
// Use the freetype/raster and freetype/truetype packages for lower level // Use the freetype/raster and freetype/truetype packages for lower level
// control over rasterization and TrueType parsing. // control over rasterization and TrueType parsing.
package freetype package freetype // import "github.com/golang/freetype"
import ( import (
"errors" "errors"
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
// as the Freetype "smooth" module, and the Anti-Grain Geometry library. // as the Freetype "smooth" module, and the Anti-Grain Geometry library.
// A description of the area/coverage algorithm is at // A description of the area/coverage algorithm is at
// http://projects.tuxee.net/cl-vectors/section-the-cl-aa-algorithm // http://projects.tuxee.net/cl-vectors/section-the-cl-aa-algorithm
package raster package raster // import "github.com/golang/freetype/raster"
import ( import (
"strconv" "strconv"
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
// //
// To measure a TrueType font in ideal FUnit space, use scale equal to // To measure a TrueType font in ideal FUnit space, use scale equal to
// font.FUnitsPerEm(). // font.FUnitsPerEm().
package truetype package truetype // import "github.com/golang/freetype/truetype"
import ( import (
"fmt" "fmt"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册