image: add import comments.

Change-Id: I2d3a1d002ad43af24cd8b451a2cae4c217482675
Reviewed-on: https://go-review.googlesource.com/1237
Reviewed-by: Andrew Gerrand <adg@golang.org>
diff --git a/bmp/reader.go b/bmp/reader.go
index 4c96d44..173d3d4 100644
--- a/bmp/reader.go
+++ b/bmp/reader.go
@@ -5,7 +5,7 @@
 // Package bmp implements a BMP image decoder and encoder.
 //
 // The BMP specification is at http://www.digicamsoft.com/bmp/bmp.html.
-package bmp
+package bmp // import "golang.org/x/image/bmp"
 
 import (
 	"errors"
diff --git a/cmd/webp-manual-test/main.go b/cmd/webp-manual-test/main.go
index 92c27e1..8357f94 100644
--- a/cmd/webp-manual-test/main.go
+++ b/cmd/webp-manual-test/main.go
@@ -1,6 +1,6 @@
 // Program webp-manual-test checks that the Go WEBP library's decodings match
 // the C WEBP library's.
-package main
+package main // import "golang.org/x/image/cmd/webp-manual-test"
 
 import (
 	"bytes"
diff --git a/riff/riff.go b/riff/riff.go
index 2b50d8c..b225193 100644
--- a/riff/riff.go
+++ b/riff/riff.go
@@ -11,7 +11,7 @@
 //
 // A detailed description of the format is at
 // http://www.tactilemedia.com/info/MCI_Control_Info.html
-package riff
+package riff // import "golang.org/x/image/riff"
 
 import (
 	"errors"
diff --git a/tiff/lzw/reader.go b/tiff/lzw/reader.go
index 48579a7..13c635a 100644
--- a/tiff/lzw/reader.go
+++ b/tiff/lzw/reader.go
@@ -8,7 +8,7 @@
 //
 // In particular, it implements LZW as used by the TIFF file format, including
 // an "off by one" algorithmic difference when compared to standard LZW.
-package lzw
+package lzw // import "golang.org/x/image/tiff/lzw"
 
 /*
 This file was branched from src/pkg/compress/lzw/reader.go in the
diff --git a/tiff/reader.go b/tiff/reader.go
index 929ef04..2cad90d 100644
--- a/tiff/reader.go
+++ b/tiff/reader.go
@@ -5,7 +5,7 @@
 // Package tiff implements a TIFF image decoder and encoder.
 //
 // The TIFF specification is at http://partners.adobe.com/public/developer/en/tiff/TIFF6.pdf
-package tiff
+package tiff // import "golang.org/x/image/tiff"
 
 import (
 	"compress/zlib"
diff --git a/vp8/decode.go b/vp8/decode.go
index 41daee6..0aafacd 100644
--- a/vp8/decode.go
+++ b/vp8/decode.go
@@ -5,7 +5,7 @@
 // Package vp8 implements a decoder for the VP8 lossy image format.
 //
 // The VP8 specification is RFC 6386.
-package vp8
+package vp8 // import "golang.org/x/image/vp8"
 
 // This file implements the top-level decoding algorithm.
 
diff --git a/vp8l/decode.go b/vp8l/decode.go
index 2e84827..8d79fee 100644
--- a/vp8l/decode.go
+++ b/vp8l/decode.go
@@ -6,7 +6,7 @@
 //
 // The VP8L specification is at:
 // https://developers.google.com/speed/webp/docs/riff_container
-package vp8l
+package vp8l // import "golang.org/x/image/vp8l"
 
 import (
 	"bufio"
diff --git a/webp/decode.go b/webp/decode.go
index 527a7ea..4a91f23 100644
--- a/webp/decode.go
+++ b/webp/decode.go
@@ -6,7 +6,7 @@
 //
 // WEBP is defined at:
 // https://developers.google.com/speed/webp/docs/riff_container
-package webp
+package webp // import "golang.org/x/image/webp"
 
 import (
 	"bytes"
diff --git a/webp/nycbcra/nycbcra.go b/webp/nycbcra/nycbcra.go
index dff42f4..2e1fe05 100644
--- a/webp/nycbcra/nycbcra.go
+++ b/webp/nycbcra/nycbcra.go
@@ -4,7 +4,7 @@
 
 // Package nycbcra provides non-alpha-premultiplied Y'CbCr-with-alpha image and
 // color types.
-package nycbcra
+package nycbcra // import "golang.org/x/image/webp/nycbcra"
 
 import (
 	"image"