Module: wine Branch: master Commit: 10a32bfed1acd7986015292311ae7b9c80d9c937 URL: http://source.winehq.org/git/wine.git/?a=commit;h=10a32bfed1acd7986015292311...
Author: Vincent Povirk vincent@codeweavers.com Date: Wed Apr 11 17:22:43 2012 -0500
windowscodecs: Implement JpegDecoder_Frame_GetResolution.
---
dlls/windowscodecs/jpegformat.c | 23 +++++++++++++++++++++-- 1 files changed, 21 insertions(+), 2 deletions(-)
diff --git a/dlls/windowscodecs/jpegformat.c b/dlls/windowscodecs/jpegformat.c index d15dabf..53d7ec4 100644 --- a/dlls/windowscodecs/jpegformat.c +++ b/dlls/windowscodecs/jpegformat.c @@ -528,8 +528,27 @@ static HRESULT WINAPI JpegDecoder_Frame_GetPixelFormat(IWICBitmapFrameDecode *if static HRESULT WINAPI JpegDecoder_Frame_GetResolution(IWICBitmapFrameDecode *iface, double *pDpiX, double *pDpiY) { - FIXME("(%p,%p,%p): stub\n", iface, pDpiX, pDpiY); - return E_NOTIMPL; + JpegDecoder *This = impl_from_IWICBitmapFrameDecode(iface); + + EnterCriticalSection(&This->lock); + + if (This->cinfo.density_unit == 2) /* pixels per centimeter */ + { + *pDpiX = This->cinfo.X_density * 2.54; + *pDpiY = This->cinfo.Y_density * 2.54; + } + else + { + /* 1 = pixels per inch, 0 = unknown */ + *pDpiX = This->cinfo.X_density; + *pDpiY = This->cinfo.Y_density; + } + + LeaveCriticalSection(&This->lock); + + TRACE("(%p)->(%0.2f,%0.2f)\n", iface, *pDpiX, *pDpiY); + + return S_OK; }
static HRESULT WINAPI JpegDecoder_Frame_CopyPalette(IWICBitmapFrameDecode *iface,