The number that uniquely identifies this encoding type.
()
| 11 | type IEncoding interface { |
| 12 | // The number that uniquely identifies this encoding type. |
| 13 | Type() int32 |
| 14 | WriteTo(w io.Writer) (n int, err error) |
| 15 | // Read reads the contents of the encoded pixel data from the reader. |
| 16 | // This should return a new IEncoding implementation that contains |
no outgoing calls
no test coverage detected