Documentation ¶
Overview ¶
Package mimetype uses magic number signatures to detect the MIME type and extension of a file.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Detect ¶
Detect returns the MIME type and extension of the provided byte slice.
mime is always a valid MIME type, with application/octet-stream as fallback. extension is empty string if detected file format does not have an extension.
func DetectFile ¶
DetectFile returns the MIME type and extension of the provided file.
mime is always a valid MIME type, with application/octet-stream as fallback. extension is empty string if detection failed with an error or detected file format does not have an extension.
func DetectReader ¶
DetectReader returns the MIME type and extension of the byte slice read from the provided reader.
mime is always a valid MIME type, with application/octet-stream as fallback. extension is empty string if detection failed with an error or detected file format does not have an extension.
Types ¶
This section is empty.