OSDN Git Service

1757e14cada5107054bb57baf7ee42e427fc16ed
[pf3gnuchains/gcc-fork.git] / libgo / go / image / png / writer_test.go
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package png
6
7 import (
8         "bytes"
9         "fmt"
10         "image"
11         "image/color"
12         "io/ioutil"
13         "testing"
14 )
15
16 func diff(m0, m1 image.Image) error {
17         b0, b1 := m0.Bounds(), m1.Bounds()
18         if !b0.Size().Eq(b1.Size()) {
19                 return fmt.Errorf("dimensions differ: %v vs %v", b0, b1)
20         }
21         dx := b1.Min.X - b0.Min.X
22         dy := b1.Min.Y - b0.Min.Y
23         for y := b0.Min.Y; y < b0.Max.Y; y++ {
24                 for x := b0.Min.X; x < b0.Max.X; x++ {
25                         c0 := m0.At(x, y)
26                         c1 := m1.At(x+dx, y+dy)
27                         r0, g0, b0, a0 := c0.RGBA()
28                         r1, g1, b1, a1 := c1.RGBA()
29                         if r0 != r1 || g0 != g1 || b0 != b1 || a0 != a1 {
30                                 return fmt.Errorf("colors differ at (%d, %d): %v vs %v", x, y, c0, c1)
31                         }
32                 }
33         }
34         return nil
35 }
36
37 func encodeDecode(m image.Image) (image.Image, error) {
38         b := bytes.NewBuffer(nil)
39         err := Encode(b, m)
40         if err != nil {
41                 return nil, err
42         }
43         m, err = Decode(b)
44         if err != nil {
45                 return nil, err
46         }
47         return m, nil
48 }
49
50 func TestWriter(t *testing.T) {
51         // The filenames variable is declared in reader_test.go.
52         names := filenames
53         if testing.Short() {
54                 names = filenamesShort
55         }
56         for _, fn := range names {
57                 qfn := "testdata/pngsuite/" + fn + ".png"
58                 // Read the image.
59                 m0, err := readPNG(qfn)
60                 if err != nil {
61                         t.Error(fn, err)
62                         continue
63                 }
64                 // Read the image again, encode it, and decode it.
65                 m1, err := readPNG(qfn)
66                 if err != nil {
67                         t.Error(fn, err)
68                         return
69                 }
70                 m2, err := encodeDecode(m1)
71                 if err != nil {
72                         t.Error(fn, err)
73                         return
74                 }
75                 // Compare the two.
76                 err = diff(m0, m2)
77                 if err != nil {
78                         t.Error(fn, err)
79                         continue
80                 }
81         }
82 }
83
84 func TestSubImage(t *testing.T) {
85         m0 := image.NewRGBA(image.Rect(0, 0, 256, 256))
86         for y := 0; y < 256; y++ {
87                 for x := 0; x < 256; x++ {
88                         m0.Set(x, y, color.RGBA{uint8(x), uint8(y), 0, 255})
89                 }
90         }
91         m0 = m0.SubImage(image.Rect(50, 30, 250, 130)).(*image.RGBA)
92         m1, err := encodeDecode(m0)
93         if err != nil {
94                 t.Error(err)
95                 return
96         }
97         err = diff(m0, m1)
98         if err != nil {
99                 t.Error(err)
100                 return
101         }
102 }
103
104 func BenchmarkEncodePaletted(b *testing.B) {
105         b.StopTimer()
106         img := image.NewPaletted(image.Rect(0, 0, 640, 480), color.Palette{
107                 color.RGBA{0, 0, 0, 255},
108                 color.RGBA{255, 255, 255, 255},
109         })
110         b.SetBytes(640 * 480 * 1)
111         b.StartTimer()
112         for i := 0; i < b.N; i++ {
113                 Encode(ioutil.Discard, img)
114         }
115 }
116
117 func BenchmarkEncodeRGBOpaque(b *testing.B) {
118         b.StopTimer()
119         img := image.NewRGBA(image.Rect(0, 0, 640, 480))
120         // Set all pixels to 0xFF alpha to force opaque mode.
121         bo := img.Bounds()
122         for y := bo.Min.Y; y < bo.Max.Y; y++ {
123                 for x := bo.Min.X; x < bo.Max.X; x++ {
124                         img.Set(x, y, color.RGBA{0, 0, 0, 255})
125                 }
126         }
127         if !img.Opaque() {
128                 panic("expected image to be opaque")
129         }
130         b.SetBytes(640 * 480 * 4)
131         b.StartTimer()
132         for i := 0; i < b.N; i++ {
133                 Encode(ioutil.Discard, img)
134         }
135 }
136
137 func BenchmarkEncodeRGBA(b *testing.B) {
138         b.StopTimer()
139         img := image.NewRGBA(image.Rect(0, 0, 640, 480))
140         if img.Opaque() {
141                 panic("expected image to not be opaque")
142         }
143         b.SetBytes(640 * 480 * 4)
144         b.StartTimer()
145         for i := 0; i < b.N; i++ {
146                 Encode(ioutil.Discard, img)
147         }
148 }