local Util = require "imagesize.util"
local MIME_TYPE = "image/x-ms-bmp"
local function size (stream, options)
local buf = stream:read(26)
if not buf or buf:len() ~= 26 then
return nil, nil, "file isn't big enough to contain a BMP header"
end
if Util.get_uint32_le(buf, 15) == 12 then
return Util.get_uint16_le(buf, 19), Util.get_uint16_le(buf, 21),
MIME_TYPE
else
return Util.get_uint32_le(buf, 19), Util.get_uint32_le(buf, 23),
MIME_TYPE
end
end
return size