Module: wine Branch: master Commit: ead7c50b5d8b7c699285ecb426c2a3d6e9428653 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ead7c50b5d8b7c699285ecb426...
Author: Ludger Sprenker ludger@sprenker.net Date: Fri Jan 4 20:21:34 2013 +0100
windowscodecs: Support 24bppRGB in tiff encoder.
---
dlls/windowscodecs/tiffformat.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/windowscodecs/tiffformat.c b/dlls/windowscodecs/tiffformat.c index 6c29bab..fcaa905 100644 --- a/dlls/windowscodecs/tiffformat.c +++ b/dlls/windowscodecs/tiffformat.c @@ -1304,6 +1304,7 @@ struct tiff_encode_format {
static const struct tiff_encode_format formats[] = { {&GUID_WICPixelFormat24bppBGR, 2, 8, 3, 24, 0, 0, 1}, + {&GUID_WICPixelFormat24bppRGB, 2, 8, 3, 24, 0, 0, 0}, {&GUID_WICPixelFormatBlackWhite, 1, 1, 1, 1, 0, 0, 0}, {&GUID_WICPixelFormat4bppGray, 1, 4, 1, 4, 0, 0, 0}, {&GUID_WICPixelFormat8bppGray, 1, 8, 1, 8, 0, 0, 0},