Home | History | Annotate | Download | only in gif

Lines Matching refs:Writer

42 // writer is a buffered writer.
43 type writer interface {
45 io.Writer
51 // w is the writer to write to. err is the first error encountered during
53 w writer
67 // writer given to the LZW encoder, which is thus immune to the
291 func EncodeAll(w io.Writer, g *GIF) error {
320 if ww, ok := w.(writer); ok {
340 func Encode(w io.Writer, m image.Image, o *Options) error {