go.image: use golang.org/x/... import paths
LGTM=bradfitz, rsc R=rsc, bradfitz CC=golang-codereviews https://golang.org/cl/169090043
This commit is contained in:
parent
c087821dc6
commit
2e99ef522d
|
@ -16,8 +16,8 @@ import (
|
||||||
"sort"
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"code.google.com/p/go.image/webp"
|
"golang.org/x/image/webp"
|
||||||
"code.google.com/p/go.image/webp/nycbcra"
|
"golang.org/x/image/webp/nycbcra"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
|
@ -11,7 +11,7 @@ import (
|
||||||
"log"
|
"log"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"code.google.com/p/go.image/riff"
|
"golang.org/x/image/riff"
|
||||||
)
|
)
|
||||||
|
|
||||||
func ExampleReader() {
|
func ExampleReader() {
|
||||||
|
|
|
@ -16,7 +16,7 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
|
||||||
"code.google.com/p/go.image/tiff/lzw"
|
"golang.org/x/image/tiff/lzw"
|
||||||
)
|
)
|
||||||
|
|
||||||
// A FormatError reports that the input is not a valid TIFF image.
|
// A FormatError reports that the input is not a valid TIFF image.
|
||||||
|
|
|
@ -15,10 +15,10 @@ import (
|
||||||
"image/color"
|
"image/color"
|
||||||
"io"
|
"io"
|
||||||
|
|
||||||
"code.google.com/p/go.image/riff"
|
"golang.org/x/image/riff"
|
||||||
"code.google.com/p/go.image/vp8"
|
"golang.org/x/image/vp8"
|
||||||
"code.google.com/p/go.image/vp8l"
|
"golang.org/x/image/vp8l"
|
||||||
"code.google.com/p/go.image/webp/nycbcra"
|
"golang.org/x/image/webp/nycbcra"
|
||||||
)
|
)
|
||||||
|
|
||||||
var errInvalidFormat = errors.New("webp: invalid format")
|
var errInvalidFormat = errors.New("webp: invalid format")
|
||||||
|
|
|
@ -14,7 +14,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"code.google.com/p/go.image/webp/nycbcra"
|
"golang.org/x/image/webp/nycbcra"
|
||||||
)
|
)
|
||||||
|
|
||||||
// hex is like fmt.Sprintf("% x", x) but also inserts dots every 16 bytes, to
|
// hex is like fmt.Sprintf("% x", x) but also inserts dots every 16 bytes, to
|
||||||
|
|
Loading…
Reference in New Issue
Block a user