Close closes the image data and releases any resources held by it
()
| 20 | type ImageData interface { |
| 21 | io.Closer // Close closes the image data and releases any resources held by it |
| 22 | Reader() io.ReadSeeker // Reader returns a new ReadSeeker for the image data |
| 23 | Format() imagetype.Type // Format returns the image format from the metadata (shortcut) |
| 24 | Size() (int, error) // Size returns the size of the image data in bytes |
| 25 | Error() error // Error returns any error that occurred during reading data from source |
no outgoing calls