Commit a08aa539 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

windowscodecs: Handle broken TIFF files without a RowsPerStrip tag.

parent 66b11a00
......@@ -462,8 +462,11 @@ static HRESULT tiff_get_decode_info(TIFF *tiff, tiff_decode_info *decode_info)
}
else
{
FIXME("missing RowsPerStrip value\n");
return E_FAIL;
/* Some broken TIFF files have a single strip and lack the RowsPerStrip tag */
decode_info->tile_height = decode_info->height;
decode_info->tile_width = decode_info->width;
decode_info->tile_stride = ((decode_info->bpp * decode_info->tile_width + 7)/8);
decode_info->tile_size = decode_info->tile_height * decode_info->tile_stride;
}
decode_info->resolution_unit = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment