Mime-Detective
Mime-Detective copied to clipboard
Mime type detection for .bmp images incorrect
new FileType(new byte?[] { 66, 77 }, "bmp", "image/gif");
must be changed to
new FileType(new byte?[] { 0x42, 0x4D }, "bmp", "image/bmp"); // or image/x-windows-bmp
How about a pull request? :)