Home | History | Annotate | Download | only in gif

Lines Matching defs:reader

26 // If the io.Reader does not also have ReadByte, then decode will introduce its own buffering.
27 type reader interface {
28 io.Reader
66 func readFull(r io.Reader, b []byte) error {
84 r reader
114 // reader given to the LZW decoder, which is thus immune to the
119 r reader
153 func (d *decoder) decode(r io.Reader, configOnly bool) error {
155 if rr, ok := r.(reader); ok {
467 func Decode(r io.Reader) (image.Image, error) {
502 func DecodeAll(r io.Reader) (*GIF, error) {
524 func DecodeConfig(r io.Reader) (image.Config, error) {