summaryrefslogtreecommitdiff
path: root/src/pkg/image
diff options
context:
space:
mode:
authorOndřej Surý <ondrej@sury.org>2011-10-06 08:56:49 +0200
committerOndřej Surý <ondrej@sury.org>2011-10-06 08:56:49 +0200
commit766f2d101fd4d91ab470b79fdf93cbc2fc72c515 (patch)
tree2c31b83dcf58f1e6a997e7603e57c856ae608c0e /src/pkg/image
parent9ad2a96babca1e646856b4335875b975f9bb7fa1 (diff)
downloadgolang-766f2d101fd4d91ab470b79fdf93cbc2fc72c515.tar.gz
Imported Upstream version 60.2upstream/60.2
Diffstat (limited to 'src/pkg/image')
-rw-r--r--src/pkg/image/draw/draw.go8
-rw-r--r--src/pkg/image/image.go3
2 files changed, 7 insertions, 4 deletions
diff --git a/src/pkg/image/draw/draw.go b/src/pkg/image/draw/draw.go
index a748ff8c7..5171e03b1 100644
--- a/src/pkg/image/draw/draw.go
+++ b/src/pkg/image/draw/draw.go
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-// Package draw provides image composition functions
-// in the style of the Plan 9 graphics library
-// (see http://plan9.bell-labs.com/magic/man2html/2/draw)
-// and the X Render extension.
+// Package draw provides image composition functions.
+//
+// See "The Go image/draw package" for an introduction to this package:
+// http://blog.golang.org/2011/09/go-imagedraw-package.html
package draw
import (
diff --git a/src/pkg/image/image.go b/src/pkg/image/image.go
index 11def9435..7c7a4b7a7 100644
--- a/src/pkg/image/image.go
+++ b/src/pkg/image/image.go
@@ -3,6 +3,9 @@
// license that can be found in the LICENSE file.
// Package image implements a basic 2-D image library.
+//
+// See "The Go image package" for an introduction to this package:
+// http://blog.golang.org/2011/09/go-image-package.html
package image
// Config holds an image's color model and dimensions.