2 * Copyright 2009 Vincent Povirk for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "wine/port.h"
34 #include "wincodecsdk.h"
36 #include "wincodecs_private.h"
38 #include "wine/debug.h"
39 #include "wine/library.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(wincodecs
);
45 static void *libpng_handle
;
46 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
47 MAKE_FUNCPTR(png_create_read_struct
);
48 MAKE_FUNCPTR(png_create_info_struct
);
49 MAKE_FUNCPTR(png_create_write_struct
);
50 MAKE_FUNCPTR(png_destroy_read_struct
);
51 MAKE_FUNCPTR(png_destroy_write_struct
);
52 MAKE_FUNCPTR(png_error
);
53 MAKE_FUNCPTR(png_get_bit_depth
);
54 MAKE_FUNCPTR(png_get_color_type
);
55 MAKE_FUNCPTR(png_get_error_ptr
);
56 MAKE_FUNCPTR(png_get_image_height
);
57 MAKE_FUNCPTR(png_get_image_width
);
58 MAKE_FUNCPTR(png_get_io_ptr
);
59 MAKE_FUNCPTR(png_get_pHYs
);
60 MAKE_FUNCPTR(png_get_PLTE
);
61 MAKE_FUNCPTR(png_get_tRNS
);
62 MAKE_FUNCPTR(png_set_bgr
);
63 MAKE_FUNCPTR(png_set_error_fn
);
64 #if HAVE_PNG_SET_EXPAND_GRAY_1_2_4_TO_8
65 MAKE_FUNCPTR(png_set_expand_gray_1_2_4_to_8
);
67 MAKE_FUNCPTR(png_set_gray_1_2_4_to_8
);
69 MAKE_FUNCPTR(png_set_filler
);
70 MAKE_FUNCPTR(png_set_gray_to_rgb
);
71 MAKE_FUNCPTR(png_set_IHDR
);
72 MAKE_FUNCPTR(png_set_pHYs
);
73 MAKE_FUNCPTR(png_set_read_fn
);
74 MAKE_FUNCPTR(png_set_strip_16
);
75 MAKE_FUNCPTR(png_set_tRNS_to_alpha
);
76 MAKE_FUNCPTR(png_set_write_fn
);
77 MAKE_FUNCPTR(png_read_end
);
78 MAKE_FUNCPTR(png_read_image
);
79 MAKE_FUNCPTR(png_read_info
);
80 MAKE_FUNCPTR(png_write_end
);
81 MAKE_FUNCPTR(png_write_info
);
82 MAKE_FUNCPTR(png_write_rows
);
85 static void *load_libpng(void)
87 if((libpng_handle
= wine_dlopen(SONAME_LIBPNG
, RTLD_NOW
, NULL
, 0)) != NULL
) {
89 #define LOAD_FUNCPTR(f) \
90 if((p##f = wine_dlsym(libpng_handle, #f, NULL, 0)) == NULL) { \
91 libpng_handle = NULL; \
94 LOAD_FUNCPTR(png_create_read_struct
);
95 LOAD_FUNCPTR(png_create_info_struct
);
96 LOAD_FUNCPTR(png_create_write_struct
);
97 LOAD_FUNCPTR(png_destroy_read_struct
);
98 LOAD_FUNCPTR(png_destroy_write_struct
);
99 LOAD_FUNCPTR(png_error
);
100 LOAD_FUNCPTR(png_get_bit_depth
);
101 LOAD_FUNCPTR(png_get_color_type
);
102 LOAD_FUNCPTR(png_get_error_ptr
);
103 LOAD_FUNCPTR(png_get_image_height
);
104 LOAD_FUNCPTR(png_get_image_width
);
105 LOAD_FUNCPTR(png_get_io_ptr
);
106 LOAD_FUNCPTR(png_get_pHYs
);
107 LOAD_FUNCPTR(png_get_PLTE
);
108 LOAD_FUNCPTR(png_get_tRNS
);
109 LOAD_FUNCPTR(png_set_bgr
);
110 LOAD_FUNCPTR(png_set_error_fn
);
111 #if HAVE_PNG_SET_EXPAND_GRAY_1_2_4_TO_8
112 LOAD_FUNCPTR(png_set_expand_gray_1_2_4_to_8
);
114 LOAD_FUNCPTR(png_set_gray_1_2_4_to_8
);
116 LOAD_FUNCPTR(png_set_filler
);
117 LOAD_FUNCPTR(png_set_gray_to_rgb
);
118 LOAD_FUNCPTR(png_set_IHDR
);
119 LOAD_FUNCPTR(png_set_pHYs
);
120 LOAD_FUNCPTR(png_set_read_fn
);
121 LOAD_FUNCPTR(png_set_strip_16
);
122 LOAD_FUNCPTR(png_set_tRNS_to_alpha
);
123 LOAD_FUNCPTR(png_set_write_fn
);
124 LOAD_FUNCPTR(png_read_end
);
125 LOAD_FUNCPTR(png_read_image
);
126 LOAD_FUNCPTR(png_read_info
);
127 LOAD_FUNCPTR(png_write_end
);
128 LOAD_FUNCPTR(png_write_info
);
129 LOAD_FUNCPTR(png_write_rows
);
133 return libpng_handle
;
136 static void user_error_fn(png_structp png_ptr
, png_const_charp error_message
)
140 /* This uses setjmp/longjmp just like the default. We can't use the
141 * default because there's no way to access the jmp buffer in the png_struct
142 * that works in 1.2 and 1.4 and allows us to dynamically load libpng. */
143 WARN("PNG error: %s\n", debugstr_a(error_message
));
144 pjmpbuf
= ppng_get_error_ptr(png_ptr
);
145 longjmp(*pjmpbuf
, 1);
148 static void user_warning_fn(png_structp png_ptr
, png_const_charp warning_message
)
150 WARN("PNG warning: %s\n", debugstr_a(warning_message
));
154 IWICBitmapDecoder IWICBitmapDecoder_iface
;
155 IWICBitmapFrameDecode IWICBitmapFrameDecode_iface
;
156 IWICMetadataBlockReader IWICMetadataBlockReader_iface
;
165 const WICPixelFormatGUID
*format
;
167 CRITICAL_SECTION lock
; /* must be held when png structures are accessed or initialized is set */
170 static inline PngDecoder
*impl_from_IWICBitmapDecoder(IWICBitmapDecoder
*iface
)
172 return CONTAINING_RECORD(iface
, PngDecoder
, IWICBitmapDecoder_iface
);
175 static inline PngDecoder
*impl_from_IWICBitmapFrameDecode(IWICBitmapFrameDecode
*iface
)
177 return CONTAINING_RECORD(iface
, PngDecoder
, IWICBitmapFrameDecode_iface
);
180 static inline PngDecoder
*impl_from_IWICMetadataBlockReader(IWICMetadataBlockReader
*iface
)
182 return CONTAINING_RECORD(iface
, PngDecoder
, IWICMetadataBlockReader_iface
);
185 static const IWICBitmapFrameDecodeVtbl PngDecoder_FrameVtbl
;
187 static HRESULT WINAPI
PngDecoder_QueryInterface(IWICBitmapDecoder
*iface
, REFIID iid
,
190 PngDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
191 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
193 if (!ppv
) return E_INVALIDARG
;
195 if (IsEqualIID(&IID_IUnknown
, iid
) || IsEqualIID(&IID_IWICBitmapDecoder
, iid
))
202 return E_NOINTERFACE
;
205 IUnknown_AddRef((IUnknown
*)*ppv
);
209 static ULONG WINAPI
PngDecoder_AddRef(IWICBitmapDecoder
*iface
)
211 PngDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
212 ULONG ref
= InterlockedIncrement(&This
->ref
);
214 TRACE("(%p) refcount=%u\n", iface
, ref
);
219 static ULONG WINAPI
PngDecoder_Release(IWICBitmapDecoder
*iface
)
221 PngDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
222 ULONG ref
= InterlockedDecrement(&This
->ref
);
224 TRACE("(%p) refcount=%u\n", iface
, ref
);
229 ppng_destroy_read_struct(&This
->png_ptr
, &This
->info_ptr
, &This
->end_info
);
230 This
->lock
.DebugInfo
->Spare
[0] = 0;
231 DeleteCriticalSection(&This
->lock
);
232 HeapFree(GetProcessHeap(), 0, This
->image_bits
);
233 HeapFree(GetProcessHeap(), 0, This
);
239 static HRESULT WINAPI
PngDecoder_QueryCapability(IWICBitmapDecoder
*iface
, IStream
*pIStream
,
240 DWORD
*pdwCapability
)
242 FIXME("(%p,%p,%p): stub\n", iface
, pIStream
, pdwCapability
);
246 static void user_read_data(png_structp png_ptr
, png_bytep data
, png_size_t length
)
248 IStream
*stream
= ppng_get_io_ptr(png_ptr
);
252 hr
= IStream_Read(stream
, data
, length
, &bytesread
);
253 if (FAILED(hr
) || bytesread
!= length
)
255 ppng_error(png_ptr
, "failed reading data");
259 static HRESULT WINAPI
PngDecoder_Initialize(IWICBitmapDecoder
*iface
, IStream
*pIStream
,
260 WICDecodeOptions cacheOptions
)
262 PngDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
265 png_bytep
*row_pointers
=NULL
;
268 int color_type
, bit_depth
;
271 png_uint_32 transparency
;
272 png_color_16p trans_values
;
275 TRACE("(%p,%p,%x)\n", iface
, pIStream
, cacheOptions
);
277 EnterCriticalSection(&This
->lock
);
279 /* initialize libpng */
280 This
->png_ptr
= ppng_create_read_struct(PNG_LIBPNG_VER_STRING
, NULL
, NULL
, NULL
);
287 This
->info_ptr
= ppng_create_info_struct(This
->png_ptr
);
290 ppng_destroy_read_struct(&This
->png_ptr
, NULL
, NULL
);
291 This
->png_ptr
= NULL
;
296 This
->end_info
= ppng_create_info_struct(This
->png_ptr
);
299 ppng_destroy_read_struct(&This
->png_ptr
, &This
->info_ptr
, NULL
);
300 This
->png_ptr
= NULL
;
305 /* set up setjmp/longjmp error handling */
308 ppng_destroy_read_struct(&This
->png_ptr
, &This
->info_ptr
, &This
->end_info
);
309 HeapFree(GetProcessHeap(), 0, row_pointers
);
310 This
->png_ptr
= NULL
;
314 ppng_set_error_fn(This
->png_ptr
, jmpbuf
, user_error_fn
, user_warning_fn
);
316 /* seek to the start of the stream */
318 hr
= IStream_Seek(pIStream
, seek
, STREAM_SEEK_SET
, NULL
);
319 if (FAILED(hr
)) goto end
;
321 /* set up custom i/o handling */
322 ppng_set_read_fn(This
->png_ptr
, pIStream
, user_read_data
);
324 /* read the header */
325 ppng_read_info(This
->png_ptr
, This
->info_ptr
);
327 /* choose a pixel format */
328 color_type
= ppng_get_color_type(This
->png_ptr
, This
->info_ptr
);
329 bit_depth
= ppng_get_bit_depth(This
->png_ptr
, This
->info_ptr
);
331 /* check for color-keyed alpha */
332 transparency
= ppng_get_tRNS(This
->png_ptr
, This
->info_ptr
, &trans
, &num_trans
, &trans_values
);
334 if (transparency
&& color_type
!= PNG_COLOR_TYPE_PALETTE
)
337 if (color_type
== PNG_COLOR_TYPE_GRAY
)
341 #if HAVE_PNG_SET_EXPAND_GRAY_1_2_4_TO_8
342 ppng_set_expand_gray_1_2_4_to_8(This
->png_ptr
);
344 ppng_set_gray_1_2_4_to_8(This
->png_ptr
);
348 ppng_set_gray_to_rgb(This
->png_ptr
);
350 ppng_set_tRNS_to_alpha(This
->png_ptr
);
351 color_type
= PNG_COLOR_TYPE_RGB_ALPHA
;
356 case PNG_COLOR_TYPE_GRAY
:
357 This
->bpp
= bit_depth
;
360 case 1: This
->format
= &GUID_WICPixelFormatBlackWhite
; break;
361 case 2: This
->format
= &GUID_WICPixelFormat2bppGray
; break;
362 case 4: This
->format
= &GUID_WICPixelFormat4bppGray
; break;
363 case 8: This
->format
= &GUID_WICPixelFormat8bppGray
; break;
364 case 16: This
->format
= &GUID_WICPixelFormat16bppGray
; break;
366 ERR("invalid grayscale bit depth: %i\n", bit_depth
);
371 case PNG_COLOR_TYPE_GRAY_ALPHA
:
372 /* WIC does not support grayscale alpha formats so use RGBA */
373 ppng_set_gray_to_rgb(This
->png_ptr
);
375 case PNG_COLOR_TYPE_RGB_ALPHA
:
376 This
->bpp
= bit_depth
* 4;
380 ppng_set_bgr(This
->png_ptr
);
381 This
->format
= &GUID_WICPixelFormat32bppBGRA
;
383 case 16: This
->format
= &GUID_WICPixelFormat64bppRGBA
; break;
385 ERR("invalid RGBA bit depth: %i\n", bit_depth
);
390 case PNG_COLOR_TYPE_PALETTE
:
391 This
->bpp
= bit_depth
;
394 case 1: This
->format
= &GUID_WICPixelFormat1bppIndexed
; break;
395 case 2: This
->format
= &GUID_WICPixelFormat2bppIndexed
; break;
396 case 4: This
->format
= &GUID_WICPixelFormat4bppIndexed
; break;
397 case 8: This
->format
= &GUID_WICPixelFormat8bppIndexed
; break;
399 ERR("invalid indexed color bit depth: %i\n", bit_depth
);
404 case PNG_COLOR_TYPE_RGB
:
405 This
->bpp
= bit_depth
* 3;
409 ppng_set_bgr(This
->png_ptr
);
410 This
->format
= &GUID_WICPixelFormat24bppBGR
;
412 case 16: This
->format
= &GUID_WICPixelFormat48bppRGB
; break;
414 ERR("invalid RGB color bit depth: %i\n", bit_depth
);
420 ERR("invalid color type %i\n", color_type
);
425 /* read the image data */
426 This
->width
= ppng_get_image_width(This
->png_ptr
, This
->info_ptr
);
427 This
->height
= ppng_get_image_height(This
->png_ptr
, This
->info_ptr
);
428 This
->stride
= This
->width
* This
->bpp
;
429 image_size
= This
->stride
* This
->height
;
431 This
->image_bits
= HeapAlloc(GetProcessHeap(), 0, image_size
);
432 if (!This
->image_bits
)
438 row_pointers
= HeapAlloc(GetProcessHeap(), 0, sizeof(png_bytep
)*This
->height
);
445 for (i
=0; i
<This
->height
; i
++)
446 row_pointers
[i
] = This
->image_bits
+ i
* This
->stride
;
448 ppng_read_image(This
->png_ptr
, row_pointers
);
450 HeapFree(GetProcessHeap(), 0, row_pointers
);
453 ppng_read_end(This
->png_ptr
, This
->end_info
);
455 This
->initialized
= TRUE
;
459 LeaveCriticalSection(&This
->lock
);
464 static HRESULT WINAPI
PngDecoder_GetContainerFormat(IWICBitmapDecoder
*iface
,
465 GUID
*pguidContainerFormat
)
467 memcpy(pguidContainerFormat
, &GUID_ContainerFormatPng
, sizeof(GUID
));
471 static HRESULT WINAPI
PngDecoder_GetDecoderInfo(IWICBitmapDecoder
*iface
,
472 IWICBitmapDecoderInfo
**ppIDecoderInfo
)
475 IWICComponentInfo
*compinfo
;
477 TRACE("(%p,%p)\n", iface
, ppIDecoderInfo
);
479 hr
= CreateComponentInfo(&CLSID_WICPngDecoder
, &compinfo
);
480 if (FAILED(hr
)) return hr
;
482 hr
= IWICComponentInfo_QueryInterface(compinfo
, &IID_IWICBitmapDecoderInfo
,
483 (void**)ppIDecoderInfo
);
485 IWICComponentInfo_Release(compinfo
);
490 static HRESULT WINAPI
PngDecoder_CopyPalette(IWICBitmapDecoder
*iface
,
491 IWICPalette
*pIPalette
)
493 FIXME("(%p,%p): stub\n", iface
, pIPalette
);
497 static HRESULT WINAPI
PngDecoder_GetMetadataQueryReader(IWICBitmapDecoder
*iface
,
498 IWICMetadataQueryReader
**ppIMetadataQueryReader
)
500 FIXME("(%p,%p): stub\n", iface
, ppIMetadataQueryReader
);
504 static HRESULT WINAPI
PngDecoder_GetPreview(IWICBitmapDecoder
*iface
,
505 IWICBitmapSource
**ppIBitmapSource
)
507 FIXME("(%p,%p): stub\n", iface
, ppIBitmapSource
);
511 static HRESULT WINAPI
PngDecoder_GetColorContexts(IWICBitmapDecoder
*iface
,
512 UINT cCount
, IWICColorContext
**ppIColorContexts
, UINT
*pcActualCount
)
514 FIXME("(%p,%u,%p,%p)\n", iface
, cCount
, ppIColorContexts
, pcActualCount
);
518 static HRESULT WINAPI
PngDecoder_GetThumbnail(IWICBitmapDecoder
*iface
,
519 IWICBitmapSource
**ppIThumbnail
)
521 TRACE("(%p,%p)\n", iface
, ppIThumbnail
);
522 return WINCODEC_ERR_CODECNOTHUMBNAIL
;
525 static HRESULT WINAPI
PngDecoder_GetFrameCount(IWICBitmapDecoder
*iface
,
532 static HRESULT WINAPI
PngDecoder_GetFrame(IWICBitmapDecoder
*iface
,
533 UINT index
, IWICBitmapFrameDecode
**ppIBitmapFrame
)
535 PngDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
536 TRACE("(%p,%u,%p)\n", iface
, index
, ppIBitmapFrame
);
538 if (!This
->initialized
) return WINCODEC_ERR_NOTINITIALIZED
;
540 if (index
!= 0) return E_INVALIDARG
;
542 IWICBitmapDecoder_AddRef(iface
);
544 *ppIBitmapFrame
= &This
->IWICBitmapFrameDecode_iface
;
549 static const IWICBitmapDecoderVtbl PngDecoder_Vtbl
= {
550 PngDecoder_QueryInterface
,
553 PngDecoder_QueryCapability
,
554 PngDecoder_Initialize
,
555 PngDecoder_GetContainerFormat
,
556 PngDecoder_GetDecoderInfo
,
557 PngDecoder_CopyPalette
,
558 PngDecoder_GetMetadataQueryReader
,
559 PngDecoder_GetPreview
,
560 PngDecoder_GetColorContexts
,
561 PngDecoder_GetThumbnail
,
562 PngDecoder_GetFrameCount
,
566 static HRESULT WINAPI
PngDecoder_Frame_QueryInterface(IWICBitmapFrameDecode
*iface
, REFIID iid
,
569 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
570 if (!ppv
) return E_INVALIDARG
;
572 if (IsEqualIID(&IID_IUnknown
, iid
) ||
573 IsEqualIID(&IID_IWICBitmapSource
, iid
) ||
574 IsEqualIID(&IID_IWICBitmapFrameDecode
, iid
))
578 else if (IsEqualIID(&IID_IWICMetadataBlockReader
, iid
))
580 *ppv
= (void**)&This
->IWICMetadataBlockReader_iface
;
585 return E_NOINTERFACE
;
588 IUnknown_AddRef((IUnknown
*)*ppv
);
592 static ULONG WINAPI
PngDecoder_Frame_AddRef(IWICBitmapFrameDecode
*iface
)
594 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
595 return IUnknown_AddRef((IUnknown
*)This
);
598 static ULONG WINAPI
PngDecoder_Frame_Release(IWICBitmapFrameDecode
*iface
)
600 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
601 return IUnknown_Release((IUnknown
*)This
);
604 static HRESULT WINAPI
PngDecoder_Frame_GetSize(IWICBitmapFrameDecode
*iface
,
605 UINT
*puiWidth
, UINT
*puiHeight
)
607 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
608 *puiWidth
= This
->width
;
609 *puiHeight
= This
->height
;
610 TRACE("(%p)->(%u,%u)\n", iface
, *puiWidth
, *puiHeight
);
614 static HRESULT WINAPI
PngDecoder_Frame_GetPixelFormat(IWICBitmapFrameDecode
*iface
,
615 WICPixelFormatGUID
*pPixelFormat
)
617 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
618 TRACE("(%p,%p)\n", iface
, pPixelFormat
);
620 memcpy(pPixelFormat
, This
->format
, sizeof(GUID
));
625 static HRESULT WINAPI
PngDecoder_Frame_GetResolution(IWICBitmapFrameDecode
*iface
,
626 double *pDpiX
, double *pDpiY
)
628 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
629 png_uint_32 ret
, xres
, yres
;
632 EnterCriticalSection(&This
->lock
);
634 ret
= ppng_get_pHYs(This
->png_ptr
, This
->info_ptr
, &xres
, &yres
, &unit_type
);
636 if (ret
&& unit_type
== PNG_RESOLUTION_METER
)
638 *pDpiX
= xres
* 0.0254;
639 *pDpiY
= yres
* 0.0254;
643 WARN("no pHYs block present\n");
644 *pDpiX
= *pDpiY
= 96.0;
647 LeaveCriticalSection(&This
->lock
);
649 TRACE("(%p)->(%0.2f,%0.2f)\n", iface
, *pDpiX
, *pDpiY
);
654 static HRESULT WINAPI
PngDecoder_Frame_CopyPalette(IWICBitmapFrameDecode
*iface
,
655 IWICPalette
*pIPalette
)
657 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
659 png_colorp png_palette
;
661 WICColor palette
[256];
664 png_color_16p trans_values
;
668 TRACE("(%p,%p)\n", iface
, pIPalette
);
670 EnterCriticalSection(&This
->lock
);
672 ret
= ppng_get_PLTE(This
->png_ptr
, This
->info_ptr
, &png_palette
, &num_palette
);
675 hr
= WINCODEC_ERR_PALETTEUNAVAILABLE
;
679 if (num_palette
> 256)
681 ERR("palette has %i colors?!\n", num_palette
);
686 for (i
=0; i
<num_palette
; i
++)
688 palette
[i
] = (0xff000000|
689 png_palette
[i
].red
<< 16|
690 png_palette
[i
].green
<< 8|
691 png_palette
[i
].blue
);
694 ret
= ppng_get_tRNS(This
->png_ptr
, This
->info_ptr
, &trans
, &num_trans
, &trans_values
);
697 for (i
=0; i
<num_trans
; i
++)
699 palette
[trans
[i
]] = 0x00000000;
705 LeaveCriticalSection(&This
->lock
);
708 hr
= IWICPalette_InitializeCustom(pIPalette
, palette
, num_palette
);
713 static HRESULT WINAPI
PngDecoder_Frame_CopyPixels(IWICBitmapFrameDecode
*iface
,
714 const WICRect
*prc
, UINT cbStride
, UINT cbBufferSize
, BYTE
*pbBuffer
)
716 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
717 TRACE("(%p,%p,%u,%u,%p)\n", iface
, prc
, cbStride
, cbBufferSize
, pbBuffer
);
719 return copy_pixels(This
->bpp
, This
->image_bits
,
720 This
->width
, This
->height
, This
->stride
,
721 prc
, cbStride
, cbBufferSize
, pbBuffer
);
724 static HRESULT WINAPI
PngDecoder_Frame_GetMetadataQueryReader(IWICBitmapFrameDecode
*iface
,
725 IWICMetadataQueryReader
**ppIMetadataQueryReader
)
727 FIXME("(%p,%p): stub\n", iface
, ppIMetadataQueryReader
);
731 static HRESULT WINAPI
PngDecoder_Frame_GetColorContexts(IWICBitmapFrameDecode
*iface
,
732 UINT cCount
, IWICColorContext
**ppIColorContexts
, UINT
*pcActualCount
)
734 FIXME("(%p,%u,%p,%p): stub\n", iface
, cCount
, ppIColorContexts
, pcActualCount
);
738 static HRESULT WINAPI
PngDecoder_Frame_GetThumbnail(IWICBitmapFrameDecode
*iface
,
739 IWICBitmapSource
**ppIThumbnail
)
741 FIXME("(%p,%p): stub\n", iface
, ppIThumbnail
);
745 static const IWICBitmapFrameDecodeVtbl PngDecoder_FrameVtbl
= {
746 PngDecoder_Frame_QueryInterface
,
747 PngDecoder_Frame_AddRef
,
748 PngDecoder_Frame_Release
,
749 PngDecoder_Frame_GetSize
,
750 PngDecoder_Frame_GetPixelFormat
,
751 PngDecoder_Frame_GetResolution
,
752 PngDecoder_Frame_CopyPalette
,
753 PngDecoder_Frame_CopyPixels
,
754 PngDecoder_Frame_GetMetadataQueryReader
,
755 PngDecoder_Frame_GetColorContexts
,
756 PngDecoder_Frame_GetThumbnail
759 static HRESULT WINAPI
PngDecoder_Block_QueryInterface(IWICMetadataBlockReader
*iface
, REFIID iid
,
762 PngDecoder
*This
= impl_from_IWICMetadataBlockReader(iface
);
763 return IWICBitmapFrameDecode_QueryInterface(&This
->IWICBitmapFrameDecode_iface
, iid
, ppv
);
766 static ULONG WINAPI
PngDecoder_Block_AddRef(IWICMetadataBlockReader
*iface
)
768 PngDecoder
*This
= impl_from_IWICMetadataBlockReader(iface
);
769 return IUnknown_AddRef((IUnknown
*)This
);
772 static ULONG WINAPI
PngDecoder_Block_Release(IWICMetadataBlockReader
*iface
)
774 PngDecoder
*This
= impl_from_IWICMetadataBlockReader(iface
);
775 return IUnknown_Release((IUnknown
*)This
);
778 static HRESULT WINAPI
PngDecoder_Block_GetContainerFormat(IWICMetadataBlockReader
*iface
,
779 GUID
*pguidContainerFormat
)
781 if (!pguidContainerFormat
) return E_INVALIDARG
;
782 memcpy(pguidContainerFormat
, &GUID_ContainerFormatPng
, sizeof(GUID
));
786 static HRESULT WINAPI
PngDecoder_Block_GetCount(IWICMetadataBlockReader
*iface
,
789 FIXME("%p,%p: stub\n", iface
, pcCount
);
793 static HRESULT WINAPI
PngDecoder_Block_GetReaderByIndex(IWICMetadataBlockReader
*iface
,
794 UINT nIndex
, IWICMetadataReader
**ppIMetadataReader
)
796 FIXME("%p,%d,%p\n", iface
, nIndex
, ppIMetadataReader
);
800 static HRESULT WINAPI
PngDecoder_Block_GetEnumerator(IWICMetadataBlockReader
*iface
,
801 IEnumUnknown
**ppIEnumMetadata
)
803 FIXME("%p,%p\n", iface
, ppIEnumMetadata
);
807 static const IWICMetadataBlockReaderVtbl PngDecoder_BlockVtbl
= {
808 PngDecoder_Block_QueryInterface
,
809 PngDecoder_Block_AddRef
,
810 PngDecoder_Block_Release
,
811 PngDecoder_Block_GetContainerFormat
,
812 PngDecoder_Block_GetCount
,
813 PngDecoder_Block_GetReaderByIndex
,
814 PngDecoder_Block_GetEnumerator
,
817 HRESULT
PngDecoder_CreateInstance(IUnknown
*pUnkOuter
, REFIID iid
, void** ppv
)
822 TRACE("(%p,%s,%p)\n", pUnkOuter
, debugstr_guid(iid
), ppv
);
826 if (pUnkOuter
) return CLASS_E_NOAGGREGATION
;
828 if (!libpng_handle
&& !load_libpng())
830 ERR("Failed reading PNG because unable to find %s\n",SONAME_LIBPNG
);
834 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(PngDecoder
));
835 if (!This
) return E_OUTOFMEMORY
;
837 This
->IWICBitmapDecoder_iface
.lpVtbl
= &PngDecoder_Vtbl
;
838 This
->IWICBitmapFrameDecode_iface
.lpVtbl
= &PngDecoder_FrameVtbl
;
839 This
->IWICMetadataBlockReader_iface
.lpVtbl
= &PngDecoder_BlockVtbl
;
841 This
->png_ptr
= NULL
;
842 This
->info_ptr
= NULL
;
843 This
->end_info
= NULL
;
844 This
->initialized
= FALSE
;
845 This
->image_bits
= NULL
;
846 InitializeCriticalSection(&This
->lock
);
847 This
->lock
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": PngDecoder.lock");
849 ret
= IUnknown_QueryInterface((IUnknown
*)This
, iid
, ppv
);
850 IUnknown_Release((IUnknown
*)This
);
855 struct png_pixelformat
{
856 const WICPixelFormatGUID
*guid
;
864 static const struct png_pixelformat formats
[] = {
865 {&GUID_WICPixelFormat24bppBGR
, 24, 8, PNG_COLOR_TYPE_RGB
, 0, 1},
866 {&GUID_WICPixelFormatBlackWhite
, 1, 1, PNG_COLOR_TYPE_GRAY
, 0, 0},
867 {&GUID_WICPixelFormat2bppGray
, 2, 2, PNG_COLOR_TYPE_GRAY
, 0, 0},
868 {&GUID_WICPixelFormat4bppGray
, 4, 4, PNG_COLOR_TYPE_GRAY
, 0, 0},
869 {&GUID_WICPixelFormat8bppGray
, 8, 8, PNG_COLOR_TYPE_GRAY
, 0, 0},
870 {&GUID_WICPixelFormat16bppGray
, 16, 16, PNG_COLOR_TYPE_GRAY
, 0, 0},
871 {&GUID_WICPixelFormat32bppBGR
, 32, 8, PNG_COLOR_TYPE_RGB
, 1, 1},
872 {&GUID_WICPixelFormat32bppBGRA
, 32, 8, PNG_COLOR_TYPE_RGB_ALPHA
, 0, 1},
873 {&GUID_WICPixelFormat48bppRGB
, 48, 16, PNG_COLOR_TYPE_RGB
, 0, 0},
874 {&GUID_WICPixelFormat64bppRGBA
, 64, 16, PNG_COLOR_TYPE_RGB_ALPHA
, 0, 0},
878 typedef struct PngEncoder
{
879 IWICBitmapEncoder IWICBitmapEncoder_iface
;
880 IWICBitmapFrameEncode IWICBitmapFrameEncode_iface
;
886 BOOL frame_initialized
;
887 const struct png_pixelformat
*format
;
892 BOOL frame_committed
;
894 CRITICAL_SECTION lock
;
897 static inline PngEncoder
*impl_from_IWICBitmapEncoder(IWICBitmapEncoder
*iface
)
899 return CONTAINING_RECORD(iface
, PngEncoder
, IWICBitmapEncoder_iface
);
902 static inline PngEncoder
*impl_from_IWICBitmapFrameEncode(IWICBitmapFrameEncode
*iface
)
904 return CONTAINING_RECORD(iface
, PngEncoder
, IWICBitmapFrameEncode_iface
);
907 static HRESULT WINAPI
PngFrameEncode_QueryInterface(IWICBitmapFrameEncode
*iface
, REFIID iid
,
910 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
911 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
913 if (!ppv
) return E_INVALIDARG
;
915 if (IsEqualIID(&IID_IUnknown
, iid
) ||
916 IsEqualIID(&IID_IWICBitmapFrameEncode
, iid
))
918 *ppv
= &This
->IWICBitmapFrameEncode_iface
;
923 return E_NOINTERFACE
;
926 IUnknown_AddRef((IUnknown
*)*ppv
);
930 static ULONG WINAPI
PngFrameEncode_AddRef(IWICBitmapFrameEncode
*iface
)
932 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
933 return IUnknown_AddRef((IUnknown
*)This
);
936 static ULONG WINAPI
PngFrameEncode_Release(IWICBitmapFrameEncode
*iface
)
938 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
939 return IUnknown_Release((IUnknown
*)This
);
942 static HRESULT WINAPI
PngFrameEncode_Initialize(IWICBitmapFrameEncode
*iface
,
943 IPropertyBag2
*pIEncoderOptions
)
945 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
946 TRACE("(%p,%p)\n", iface
, pIEncoderOptions
);
948 EnterCriticalSection(&This
->lock
);
950 if (This
->frame_initialized
)
952 LeaveCriticalSection(&This
->lock
);
953 return WINCODEC_ERR_WRONGSTATE
;
956 This
->frame_initialized
= TRUE
;
958 LeaveCriticalSection(&This
->lock
);
963 static HRESULT WINAPI
PngFrameEncode_SetSize(IWICBitmapFrameEncode
*iface
,
964 UINT uiWidth
, UINT uiHeight
)
966 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
967 TRACE("(%p,%u,%u)\n", iface
, uiWidth
, uiHeight
);
969 EnterCriticalSection(&This
->lock
);
971 if (!This
->frame_initialized
|| This
->info_written
)
973 LeaveCriticalSection(&This
->lock
);
974 return WINCODEC_ERR_WRONGSTATE
;
977 This
->width
= uiWidth
;
978 This
->height
= uiHeight
;
980 LeaveCriticalSection(&This
->lock
);
985 static HRESULT WINAPI
PngFrameEncode_SetResolution(IWICBitmapFrameEncode
*iface
,
986 double dpiX
, double dpiY
)
988 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
989 TRACE("(%p,%0.2f,%0.2f)\n", iface
, dpiX
, dpiY
);
991 EnterCriticalSection(&This
->lock
);
993 if (!This
->frame_initialized
|| This
->info_written
)
995 LeaveCriticalSection(&This
->lock
);
996 return WINCODEC_ERR_WRONGSTATE
;
1002 LeaveCriticalSection(&This
->lock
);
1007 static HRESULT WINAPI
PngFrameEncode_SetPixelFormat(IWICBitmapFrameEncode
*iface
,
1008 WICPixelFormatGUID
*pPixelFormat
)
1010 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1012 TRACE("(%p,%s)\n", iface
, debugstr_guid(pPixelFormat
));
1014 EnterCriticalSection(&This
->lock
);
1016 if (!This
->frame_initialized
|| This
->info_written
)
1018 LeaveCriticalSection(&This
->lock
);
1019 return WINCODEC_ERR_WRONGSTATE
;
1022 for (i
=0; formats
[i
].guid
; i
++)
1024 if (memcmp(formats
[i
].guid
, pPixelFormat
, sizeof(GUID
)) == 0)
1028 if (!formats
[i
].guid
) i
= 0;
1030 This
->format
= &formats
[i
];
1031 memcpy(pPixelFormat
, This
->format
->guid
, sizeof(GUID
));
1033 LeaveCriticalSection(&This
->lock
);
1038 static HRESULT WINAPI
PngFrameEncode_SetColorContexts(IWICBitmapFrameEncode
*iface
,
1039 UINT cCount
, IWICColorContext
**ppIColorContext
)
1041 FIXME("(%p,%u,%p): stub\n", iface
, cCount
, ppIColorContext
);
1045 static HRESULT WINAPI
PngFrameEncode_SetPalette(IWICBitmapFrameEncode
*iface
,
1046 IWICPalette
*pIPalette
)
1048 FIXME("(%p,%p): stub\n", iface
, pIPalette
);
1049 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
1052 static HRESULT WINAPI
PngFrameEncode_SetThumbnail(IWICBitmapFrameEncode
*iface
,
1053 IWICBitmapSource
*pIThumbnail
)
1055 FIXME("(%p,%p): stub\n", iface
, pIThumbnail
);
1056 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
1059 static HRESULT WINAPI
PngFrameEncode_WritePixels(IWICBitmapFrameEncode
*iface
,
1060 UINT lineCount
, UINT cbStride
, UINT cbBufferSize
, BYTE
*pbPixels
)
1062 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1063 png_byte
**row_pointers
=NULL
;
1066 TRACE("(%p,%u,%u,%u,%p)\n", iface
, lineCount
, cbStride
, cbBufferSize
, pbPixels
);
1068 EnterCriticalSection(&This
->lock
);
1070 if (!This
->frame_initialized
|| !This
->width
|| !This
->height
|| !This
->format
)
1072 LeaveCriticalSection(&This
->lock
);
1073 return WINCODEC_ERR_WRONGSTATE
;
1076 if (lineCount
== 0 || lineCount
+ This
->lines_written
> This
->height
)
1078 LeaveCriticalSection(&This
->lock
);
1079 return E_INVALIDARG
;
1082 /* set up setjmp/longjmp error handling */
1085 LeaveCriticalSection(&This
->lock
);
1086 HeapFree(GetProcessHeap(), 0, row_pointers
);
1089 ppng_set_error_fn(This
->png_ptr
, jmpbuf
, user_error_fn
, user_warning_fn
);
1091 if (!This
->info_written
)
1093 ppng_set_IHDR(This
->png_ptr
, This
->info_ptr
, This
->width
, This
->height
,
1094 This
->format
->bit_depth
, This
->format
->color_type
, PNG_INTERLACE_NONE
,
1095 PNG_COMPRESSION_TYPE_DEFAULT
, PNG_FILTER_TYPE_DEFAULT
);
1097 if (This
->xres
!= 0.0 && This
->yres
!= 0.0)
1099 ppng_set_pHYs(This
->png_ptr
, This
->info_ptr
, (This
->xres
+0.0127) / 0.0254,
1100 (This
->yres
+0.0127) / 0.0254, PNG_RESOLUTION_METER
);
1103 ppng_write_info(This
->png_ptr
, This
->info_ptr
);
1105 if (This
->format
->remove_filler
)
1106 ppng_set_filler(This
->png_ptr
, 0, PNG_FILLER_AFTER
);
1108 if (This
->format
->swap_rgb
)
1109 ppng_set_bgr(This
->png_ptr
);
1111 This
->info_written
= TRUE
;
1114 row_pointers
= HeapAlloc(GetProcessHeap(), 0, lineCount
* sizeof(png_byte
*));
1117 LeaveCriticalSection(&This
->lock
);
1118 return E_OUTOFMEMORY
;
1121 for (i
=0; i
<lineCount
; i
++)
1122 row_pointers
[i
] = pbPixels
+ cbStride
* i
;
1124 ppng_write_rows(This
->png_ptr
, row_pointers
, lineCount
);
1125 This
->lines_written
+= lineCount
;
1127 LeaveCriticalSection(&This
->lock
);
1129 HeapFree(GetProcessHeap(), 0, row_pointers
);
1134 static HRESULT WINAPI
PngFrameEncode_WriteSource(IWICBitmapFrameEncode
*iface
,
1135 IWICBitmapSource
*pIBitmapSource
, WICRect
*prc
)
1137 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1140 WICPixelFormatGUID guid
;
1143 TRACE("(%p,%p,%p)\n", iface
, pIBitmapSource
, prc
);
1145 if (!This
->frame_initialized
|| !This
->width
|| !This
->height
)
1146 return WINCODEC_ERR_WRONGSTATE
;
1150 hr
= IWICBitmapSource_GetPixelFormat(pIBitmapSource
, &guid
);
1151 if (FAILED(hr
)) return hr
;
1152 hr
= IWICBitmapFrameEncode_SetPixelFormat(iface
, &guid
);
1153 if (FAILED(hr
)) return hr
;
1156 hr
= IWICBitmapSource_GetPixelFormat(pIBitmapSource
, &guid
);
1157 if (FAILED(hr
)) return hr
;
1158 if (memcmp(&guid
, This
->format
->guid
, sizeof(GUID
)) != 0)
1160 /* FIXME: should use WICConvertBitmapSource to convert */
1161 ERR("format %s unsupported\n", debugstr_guid(&guid
));
1165 if (This
->xres
== 0.0 || This
->yres
== 0.0)
1168 hr
= IWICBitmapSource_GetResolution(pIBitmapSource
, &xres
, &yres
);
1169 if (FAILED(hr
)) return hr
;
1170 hr
= IWICBitmapFrameEncode_SetResolution(iface
, xres
, yres
);
1171 if (FAILED(hr
)) return hr
;
1177 hr
= IWICBitmapSource_GetSize(pIBitmapSource
, &width
, &height
);
1178 if (FAILED(hr
)) return hr
;
1186 if (prc
->Width
!= This
->width
) return E_INVALIDARG
;
1188 stride
= (This
->format
->bpp
* This
->width
+ 7)/8;
1190 pixeldata
= HeapAlloc(GetProcessHeap(), 0, stride
* prc
->Height
);
1191 if (!pixeldata
) return E_OUTOFMEMORY
;
1193 hr
= IWICBitmapSource_CopyPixels(pIBitmapSource
, prc
, stride
,
1194 stride
*prc
->Height
, pixeldata
);
1198 hr
= IWICBitmapFrameEncode_WritePixels(iface
, prc
->Height
, stride
,
1199 stride
*prc
->Height
, pixeldata
);
1202 HeapFree(GetProcessHeap(), 0, pixeldata
);
1207 static HRESULT WINAPI
PngFrameEncode_Commit(IWICBitmapFrameEncode
*iface
)
1209 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1211 TRACE("(%p)\n", iface
);
1213 EnterCriticalSection(&This
->lock
);
1215 if (!This
->info_written
|| This
->lines_written
!= This
->height
|| This
->frame_committed
)
1217 LeaveCriticalSection(&This
->lock
);
1218 return WINCODEC_ERR_WRONGSTATE
;
1221 /* set up setjmp/longjmp error handling */
1224 LeaveCriticalSection(&This
->lock
);
1227 ppng_set_error_fn(This
->png_ptr
, jmpbuf
, user_error_fn
, user_warning_fn
);
1229 ppng_write_end(This
->png_ptr
, This
->info_ptr
);
1231 This
->frame_committed
= TRUE
;
1233 LeaveCriticalSection(&This
->lock
);
1238 static HRESULT WINAPI
PngFrameEncode_GetMetadataQueryWriter(IWICBitmapFrameEncode
*iface
,
1239 IWICMetadataQueryWriter
**ppIMetadataQueryWriter
)
1241 FIXME("(%p, %p): stub\n", iface
, ppIMetadataQueryWriter
);
1245 static const IWICBitmapFrameEncodeVtbl PngEncoder_FrameVtbl
= {
1246 PngFrameEncode_QueryInterface
,
1247 PngFrameEncode_AddRef
,
1248 PngFrameEncode_Release
,
1249 PngFrameEncode_Initialize
,
1250 PngFrameEncode_SetSize
,
1251 PngFrameEncode_SetResolution
,
1252 PngFrameEncode_SetPixelFormat
,
1253 PngFrameEncode_SetColorContexts
,
1254 PngFrameEncode_SetPalette
,
1255 PngFrameEncode_SetThumbnail
,
1256 PngFrameEncode_WritePixels
,
1257 PngFrameEncode_WriteSource
,
1258 PngFrameEncode_Commit
,
1259 PngFrameEncode_GetMetadataQueryWriter
1262 static HRESULT WINAPI
PngEncoder_QueryInterface(IWICBitmapEncoder
*iface
, REFIID iid
,
1265 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
1266 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
1268 if (!ppv
) return E_INVALIDARG
;
1270 if (IsEqualIID(&IID_IUnknown
, iid
) ||
1271 IsEqualIID(&IID_IWICBitmapEncoder
, iid
))
1278 return E_NOINTERFACE
;
1281 IUnknown_AddRef((IUnknown
*)*ppv
);
1285 static ULONG WINAPI
PngEncoder_AddRef(IWICBitmapEncoder
*iface
)
1287 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
1288 ULONG ref
= InterlockedIncrement(&This
->ref
);
1290 TRACE("(%p) refcount=%u\n", iface
, ref
);
1295 static ULONG WINAPI
PngEncoder_Release(IWICBitmapEncoder
*iface
)
1297 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
1298 ULONG ref
= InterlockedDecrement(&This
->ref
);
1300 TRACE("(%p) refcount=%u\n", iface
, ref
);
1304 This
->lock
.DebugInfo
->Spare
[0] = 0;
1305 DeleteCriticalSection(&This
->lock
);
1307 ppng_destroy_write_struct(&This
->png_ptr
, &This
->info_ptr
);
1309 IStream_Release(This
->stream
);
1310 HeapFree(GetProcessHeap(), 0, This
);
1316 static void user_write_data(png_structp png_ptr
, png_bytep data
, png_size_t length
)
1318 PngEncoder
*This
= ppng_get_io_ptr(png_ptr
);
1322 hr
= IStream_Write(This
->stream
, data
, length
, &byteswritten
);
1323 if (FAILED(hr
) || byteswritten
!= length
)
1325 ppng_error(png_ptr
, "failed writing data");
1329 static void user_flush(png_structp png_ptr
)
1333 static HRESULT WINAPI
PngEncoder_Initialize(IWICBitmapEncoder
*iface
,
1334 IStream
*pIStream
, WICBitmapEncoderCacheOption cacheOption
)
1336 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
1339 TRACE("(%p,%p,%u)\n", iface
, pIStream
, cacheOption
);
1341 EnterCriticalSection(&This
->lock
);
1345 LeaveCriticalSection(&This
->lock
);
1346 return WINCODEC_ERR_WRONGSTATE
;
1349 /* initialize libpng */
1350 This
->png_ptr
= ppng_create_write_struct(PNG_LIBPNG_VER_STRING
, NULL
, NULL
, NULL
);
1353 LeaveCriticalSection(&This
->lock
);
1357 This
->info_ptr
= ppng_create_info_struct(This
->png_ptr
);
1358 if (!This
->info_ptr
)
1360 ppng_destroy_write_struct(&This
->png_ptr
, NULL
);
1361 This
->png_ptr
= NULL
;
1362 LeaveCriticalSection(&This
->lock
);
1366 IStream_AddRef(pIStream
);
1367 This
->stream
= pIStream
;
1369 /* set up setjmp/longjmp error handling */
1372 ppng_destroy_write_struct(&This
->png_ptr
, &This
->info_ptr
);
1373 This
->png_ptr
= NULL
;
1374 IStream_Release(This
->stream
);
1375 This
->stream
= NULL
;
1376 LeaveCriticalSection(&This
->lock
);
1379 ppng_set_error_fn(This
->png_ptr
, jmpbuf
, user_error_fn
, user_warning_fn
);
1381 /* set up custom i/o handling */
1382 ppng_set_write_fn(This
->png_ptr
, This
, user_write_data
, user_flush
);
1384 LeaveCriticalSection(&This
->lock
);
1389 static HRESULT WINAPI
PngEncoder_GetContainerFormat(IWICBitmapEncoder
*iface
,
1390 GUID
*pguidContainerFormat
)
1392 FIXME("(%p,%s): stub\n", iface
, debugstr_guid(pguidContainerFormat
));
1396 static HRESULT WINAPI
PngEncoder_GetEncoderInfo(IWICBitmapEncoder
*iface
,
1397 IWICBitmapEncoderInfo
**ppIEncoderInfo
)
1399 FIXME("(%p,%p): stub\n", iface
, ppIEncoderInfo
);
1403 static HRESULT WINAPI
PngEncoder_SetColorContexts(IWICBitmapEncoder
*iface
,
1404 UINT cCount
, IWICColorContext
**ppIColorContext
)
1406 FIXME("(%p,%u,%p): stub\n", iface
, cCount
, ppIColorContext
);
1410 static HRESULT WINAPI
PngEncoder_SetPalette(IWICBitmapEncoder
*iface
, IWICPalette
*pIPalette
)
1412 TRACE("(%p,%p)\n", iface
, pIPalette
);
1413 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
1416 static HRESULT WINAPI
PngEncoder_SetThumbnail(IWICBitmapEncoder
*iface
, IWICBitmapSource
*pIThumbnail
)
1418 TRACE("(%p,%p)\n", iface
, pIThumbnail
);
1419 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
1422 static HRESULT WINAPI
PngEncoder_SetPreview(IWICBitmapEncoder
*iface
, IWICBitmapSource
*pIPreview
)
1424 TRACE("(%p,%p)\n", iface
, pIPreview
);
1425 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
1428 static HRESULT WINAPI
PngEncoder_CreateNewFrame(IWICBitmapEncoder
*iface
,
1429 IWICBitmapFrameEncode
**ppIFrameEncode
, IPropertyBag2
**ppIEncoderOptions
)
1431 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
1433 TRACE("(%p,%p,%p)\n", iface
, ppIFrameEncode
, ppIEncoderOptions
);
1435 EnterCriticalSection(&This
->lock
);
1437 if (This
->frame_count
!= 0)
1439 LeaveCriticalSection(&This
->lock
);
1440 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
1445 LeaveCriticalSection(&This
->lock
);
1446 return WINCODEC_ERR_NOTINITIALIZED
;
1449 hr
= CreatePropertyBag2(ppIEncoderOptions
);
1452 LeaveCriticalSection(&This
->lock
);
1456 This
->frame_count
= 1;
1458 LeaveCriticalSection(&This
->lock
);
1460 IWICBitmapEncoder_AddRef(iface
);
1461 *ppIFrameEncode
= &This
->IWICBitmapFrameEncode_iface
;
1466 static HRESULT WINAPI
PngEncoder_Commit(IWICBitmapEncoder
*iface
)
1468 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
1469 TRACE("(%p)\n", iface
);
1471 EnterCriticalSection(&This
->lock
);
1473 if (!This
->frame_committed
|| This
->committed
)
1475 LeaveCriticalSection(&This
->lock
);
1476 return WINCODEC_ERR_WRONGSTATE
;
1479 This
->committed
= TRUE
;
1481 LeaveCriticalSection(&This
->lock
);
1486 static HRESULT WINAPI
PngEncoder_GetMetadataQueryWriter(IWICBitmapEncoder
*iface
,
1487 IWICMetadataQueryWriter
**ppIMetadataQueryWriter
)
1489 FIXME("(%p,%p): stub\n", iface
, ppIMetadataQueryWriter
);
1493 static const IWICBitmapEncoderVtbl PngEncoder_Vtbl
= {
1494 PngEncoder_QueryInterface
,
1497 PngEncoder_Initialize
,
1498 PngEncoder_GetContainerFormat
,
1499 PngEncoder_GetEncoderInfo
,
1500 PngEncoder_SetColorContexts
,
1501 PngEncoder_SetPalette
,
1502 PngEncoder_SetThumbnail
,
1503 PngEncoder_SetPreview
,
1504 PngEncoder_CreateNewFrame
,
1506 PngEncoder_GetMetadataQueryWriter
1509 HRESULT
PngEncoder_CreateInstance(IUnknown
*pUnkOuter
, REFIID iid
, void** ppv
)
1514 TRACE("(%p,%s,%p)\n", pUnkOuter
, debugstr_guid(iid
), ppv
);
1518 if (pUnkOuter
) return CLASS_E_NOAGGREGATION
;
1520 if (!libpng_handle
&& !load_libpng())
1522 ERR("Failed writing PNG because unable to find %s\n",SONAME_LIBPNG
);
1526 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(PngEncoder
));
1527 if (!This
) return E_OUTOFMEMORY
;
1529 This
->IWICBitmapEncoder_iface
.lpVtbl
= &PngEncoder_Vtbl
;
1530 This
->IWICBitmapFrameEncode_iface
.lpVtbl
= &PngEncoder_FrameVtbl
;
1532 This
->png_ptr
= NULL
;
1533 This
->info_ptr
= NULL
;
1534 This
->stream
= NULL
;
1535 This
->frame_count
= 0;
1536 This
->frame_initialized
= FALSE
;
1537 This
->format
= NULL
;
1538 This
->info_written
= FALSE
;
1543 This
->lines_written
= 0;
1544 This
->frame_committed
= FALSE
;
1545 This
->committed
= FALSE
;
1546 InitializeCriticalSection(&This
->lock
);
1547 This
->lock
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": PngEncoder.lock");
1549 ret
= IUnknown_QueryInterface((IUnknown
*)This
, iid
, ppv
);
1550 IUnknown_Release((IUnknown
*)This
);
1555 #else /* !HAVE_PNG_H */
1557 HRESULT
PngDecoder_CreateInstance(IUnknown
*pUnkOuter
, REFIID iid
, void** ppv
)
1559 ERR("Trying to load PNG picture, but PNG support is not compiled in.\n");
1563 HRESULT
PngEncoder_CreateInstance(IUnknown
*pUnkOuter
, REFIID iid
, void** ppv
)
1565 ERR("Trying to save PNG picture, but PNG support is not compiled in.\n");