OLD | NEW |
1 // Copyright 2011 The Go Authors. All rights reserved. | 1 // Copyright 2011 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // Package gif implements a GIF image decoder. | 5 // Package gif implements a GIF image decoder. |
6 // | 6 // |
7 // The GIF specification is at http://www.w3.org/Graphics/GIF/spec-gif89a.txt. | 7 // The GIF specification is at http://www.w3.org/Graphics/GIF/spec-gif89a.txt. |
8 package gif | 8 package gif |
9 | 9 |
10 import ( | 10 import ( |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 if _, err = io.ReadFull(lzwr, m.Pix); err != nil { | 179 if _, err = io.ReadFull(lzwr, m.Pix); err != nil { |
180 break | 180 break |
181 } | 181 } |
182 | 182 |
183 // There should be a "0" block remaining; drain that. | 183 // There should be a "0" block remaining; drain that. |
184 c, err = d.r.ReadByte() | 184 c, err = d.r.ReadByte() |
185 if err != nil { | 185 if err != nil { |
186 return err | 186 return err |
187 } | 187 } |
188 if c != 0 { | 188 if c != 0 { |
189 » » » » return os.ErrorString("gif: extra data after ima
ge") | 189 » » » » return os.NewError("gif: extra data after image"
) |
190 } | 190 } |
191 | 191 |
192 // Undo the interlacing if necessary. | 192 // Undo the interlacing if necessary. |
193 d.uninterlace(m) | 193 d.uninterlace(m) |
194 | 194 |
195 d.image = append(d.image, m) | 195 d.image = append(d.image, m) |
196 d.delay = append(d.delay, d.delayTime) | 196 d.delay = append(d.delay, d.delayTime) |
197 d.delayTime = 0 // TODO: is this correct, or should we h
old on to the value? | 197 d.delayTime = 0 // TODO: is this correct, or should we h
old on to the value? |
198 | 198 |
199 case sTrailer: | 199 case sTrailer: |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 var d decoder | 412 var d decoder |
413 if err := d.decode(r, true); err != nil { | 413 if err := d.decode(r, true); err != nil { |
414 return image.Config{}, err | 414 return image.Config{}, err |
415 } | 415 } |
416 return image.Config{d.globalColorMap, d.width, d.height}, nil | 416 return image.Config{d.globalColorMap, d.width, d.height}, nil |
417 } | 417 } |
418 | 418 |
419 func init() { | 419 func init() { |
420 image.RegisterFormat("gif", "GIF8?a", Decode, DecodeConfig) | 420 image.RegisterFormat("gif", "GIF8?a", Decode, DecodeConfig) |
421 } | 421 } |
OLD | NEW |