2 * Copyright 2009 Vincent Povirk for CodeWeavers
3 * Copyright 2016 Dmitry Timoshkov
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "wine/port.h"
29 #define NONAMELESSUNION
36 #include "wincodecs_private.h"
38 #include "wine/debug.h"
39 #include "wine/library.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(wincodecs
);
43 static inline ULONG
read_ulong_be(BYTE
* data
)
45 return data
[0] << 24 | data
[1] << 16 | data
[2] << 8 | data
[3];
48 static HRESULT
read_png_chunk(IStream
*stream
, BYTE
*type
, BYTE
**data
, ULONG
*data_size
)
54 hr
= IStream_Read(stream
, header
, 8, &bytesread
);
55 if (FAILED(hr
) || bytesread
< 8)
62 *data_size
= read_ulong_be(&header
[0]);
64 memcpy(type
, &header
[4], 4);
68 *data
= HeapAlloc(GetProcessHeap(), 0, *data_size
);
72 hr
= IStream_Read(stream
, *data
, *data_size
, &bytesread
);
74 if (FAILED(hr
) || bytesread
< *data_size
)
78 HeapFree(GetProcessHeap(), 0, *data
);
83 /* Windows ignores CRC of the chunk */
89 static HRESULT
LoadTextMetadata(IStream
*stream
, const GUID
*preferred_vendor
,
90 DWORD persist_options
, MetadataItem
**items
, DWORD
*item_count
)
96 ULONG name_len
, value_len
;
101 hr
= read_png_chunk(stream
, type
, &data
, &data_size
);
102 if (FAILED(hr
)) return hr
;
104 name_end_ptr
= memchr(data
, 0, data_size
);
106 name_len
= name_end_ptr
- data
;
108 if (!name_end_ptr
|| name_len
> 79)
110 HeapFree(GetProcessHeap(), 0, data
);
114 value_len
= data_size
- name_len
- 1;
116 result
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(MetadataItem
));
117 name
= HeapAlloc(GetProcessHeap(), 0, name_len
+ 1);
118 value
= HeapAlloc(GetProcessHeap(), 0, value_len
+ 1);
119 if (!result
|| !name
|| !value
)
121 HeapFree(GetProcessHeap(), 0, data
);
122 HeapFree(GetProcessHeap(), 0, result
);
123 HeapFree(GetProcessHeap(), 0, name
);
124 HeapFree(GetProcessHeap(), 0, value
);
125 return E_OUTOFMEMORY
;
128 PropVariantInit(&result
[0].schema
);
129 PropVariantInit(&result
[0].id
);
130 PropVariantInit(&result
[0].value
);
132 memcpy(name
, data
, name_len
+ 1);
133 memcpy(value
, name_end_ptr
+ 1, value_len
);
134 value
[value_len
] = 0;
136 result
[0].id
.vt
= VT_LPSTR
;
137 result
[0].id
.u
.pszVal
= name
;
138 result
[0].value
.vt
= VT_LPSTR
;
139 result
[0].value
.u
.pszVal
= value
;
144 HeapFree(GetProcessHeap(), 0, data
);
149 static const MetadataHandlerVtbl TextReader_Vtbl
= {
151 &CLSID_WICPngTextMetadataReader
,
155 HRESULT
PngTextReader_CreateInstance(REFIID iid
, void** ppv
)
157 return MetadataReader_Create(&TextReader_Vtbl
, iid
, ppv
);
160 static HRESULT
LoadGamaMetadata(IStream
*stream
, const GUID
*preferred_vendor
,
161 DWORD persist_options
, MetadataItem
**items
, DWORD
*item_count
)
168 static const WCHAR ImageGamma
[] = {'I','m','a','g','e','G','a','m','m','a',0};
170 MetadataItem
*result
;
172 hr
= read_png_chunk(stream
, type
, &data
, &data_size
);
173 if (FAILED(hr
)) return hr
;
177 HeapFree(GetProcessHeap(), 0, data
);
181 gamma
= read_ulong_be(data
);
183 HeapFree(GetProcessHeap(), 0, data
);
185 result
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(MetadataItem
));
186 name
= HeapAlloc(GetProcessHeap(), 0, sizeof(ImageGamma
));
187 if (!result
|| !name
)
189 HeapFree(GetProcessHeap(), 0, result
);
190 HeapFree(GetProcessHeap(), 0, name
);
191 return E_OUTOFMEMORY
;
194 PropVariantInit(&result
[0].schema
);
195 PropVariantInit(&result
[0].id
);
196 PropVariantInit(&result
[0].value
);
198 memcpy(name
, ImageGamma
, sizeof(ImageGamma
));
200 result
[0].id
.vt
= VT_LPWSTR
;
201 result
[0].id
.u
.pwszVal
= name
;
202 result
[0].value
.vt
= VT_UI4
;
203 result
[0].value
.u
.ulVal
= gamma
;
211 static const MetadataHandlerVtbl GamaReader_Vtbl
= {
213 &CLSID_WICPngGamaMetadataReader
,
217 HRESULT
PngGamaReader_CreateInstance(REFIID iid
, void** ppv
)
219 return MetadataReader_Create(&GamaReader_Vtbl
, iid
, ppv
);
222 static HRESULT
LoadChrmMetadata(IStream
*stream
, const GUID
*preferred_vendor
,
223 DWORD persist_options
, MetadataItem
**items
, DWORD
*item_count
)
229 static const WCHAR names
[8][12] = {
230 {'W','h','i','t','e','P','o','i','n','t','X',0},
231 {'W','h','i','t','e','P','o','i','n','t','Y',0},
234 {'G','r','e','e','n','X',0},
235 {'G','r','e','e','n','Y',0},
236 {'B','l','u','e','X',0},
237 {'B','l','u','e','Y',0},
239 LPWSTR dyn_names
[8] = {0};
240 MetadataItem
*result
;
243 hr
= read_png_chunk(stream
, type
, &data
, &data_size
);
244 if (FAILED(hr
)) return hr
;
248 HeapFree(GetProcessHeap(), 0, data
);
252 result
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(MetadataItem
)*8);
255 dyn_names
[i
] = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR
)*(lstrlenW(names
[i
])+1));
256 if (!dyn_names
[i
]) break;
258 if (!result
|| i
< 8)
260 HeapFree(GetProcessHeap(), 0, result
);
262 HeapFree(GetProcessHeap(), 0, dyn_names
[i
]);
263 HeapFree(GetProcessHeap(), 0, data
);
264 return E_OUTOFMEMORY
;
269 PropVariantInit(&result
[i
].schema
);
271 PropVariantInit(&result
[i
].id
);
272 result
[i
].id
.vt
= VT_LPWSTR
;
273 result
[i
].id
.u
.pwszVal
= dyn_names
[i
];
274 lstrcpyW(dyn_names
[i
], names
[i
]);
276 PropVariantInit(&result
[i
].value
);
277 result
[i
].value
.vt
= VT_UI4
;
278 result
[i
].value
.u
.ulVal
= read_ulong_be(&data
[i
*4]);
284 HeapFree(GetProcessHeap(), 0, data
);
289 static const MetadataHandlerVtbl ChrmReader_Vtbl
= {
291 &CLSID_WICPngChrmMetadataReader
,
295 HRESULT
PngChrmReader_CreateInstance(REFIID iid
, void** ppv
)
297 return MetadataReader_Create(&ChrmReader_Vtbl
, iid
, ppv
);
302 static void *libpng_handle
;
303 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
304 MAKE_FUNCPTR(png_create_read_struct
);
305 MAKE_FUNCPTR(png_create_info_struct
);
306 MAKE_FUNCPTR(png_create_write_struct
);
307 MAKE_FUNCPTR(png_destroy_read_struct
);
308 MAKE_FUNCPTR(png_destroy_write_struct
);
309 MAKE_FUNCPTR(png_error
);
310 MAKE_FUNCPTR(png_get_bit_depth
);
311 MAKE_FUNCPTR(png_get_color_type
);
312 MAKE_FUNCPTR(png_get_error_ptr
);
313 MAKE_FUNCPTR(png_get_iCCP
);
314 MAKE_FUNCPTR(png_get_image_height
);
315 MAKE_FUNCPTR(png_get_image_width
);
316 MAKE_FUNCPTR(png_get_io_ptr
);
317 MAKE_FUNCPTR(png_get_pHYs
);
318 MAKE_FUNCPTR(png_get_PLTE
);
319 MAKE_FUNCPTR(png_get_tRNS
);
320 MAKE_FUNCPTR(png_set_bgr
);
321 MAKE_FUNCPTR(png_set_crc_action
);
322 MAKE_FUNCPTR(png_set_error_fn
);
323 MAKE_FUNCPTR(png_set_filler
);
324 MAKE_FUNCPTR(png_set_filter
);
325 MAKE_FUNCPTR(png_set_gray_to_rgb
);
326 MAKE_FUNCPTR(png_set_interlace_handling
);
327 MAKE_FUNCPTR(png_set_IHDR
);
328 MAKE_FUNCPTR(png_set_pHYs
);
329 MAKE_FUNCPTR(png_set_PLTE
);
330 MAKE_FUNCPTR(png_set_read_fn
);
331 MAKE_FUNCPTR(png_set_strip_16
);
332 MAKE_FUNCPTR(png_set_tRNS
);
333 MAKE_FUNCPTR(png_set_tRNS_to_alpha
);
334 MAKE_FUNCPTR(png_set_write_fn
);
335 MAKE_FUNCPTR(png_set_swap
);
336 MAKE_FUNCPTR(png_read_end
);
337 MAKE_FUNCPTR(png_read_image
);
338 MAKE_FUNCPTR(png_read_info
);
339 MAKE_FUNCPTR(png_write_end
);
340 MAKE_FUNCPTR(png_write_info
);
341 MAKE_FUNCPTR(png_write_rows
);
344 static CRITICAL_SECTION init_png_cs
;
345 static CRITICAL_SECTION_DEBUG init_png_cs_debug
=
348 { &init_png_cs_debug
.ProcessLocksList
,
349 &init_png_cs_debug
.ProcessLocksList
},
350 0, 0, { (DWORD_PTR
)(__FILE__
": init_png_cs") }
352 static CRITICAL_SECTION init_png_cs
= { &init_png_cs_debug
, -1, 0, 0, 0, 0 };
354 static const WCHAR wszPngInterlaceOption
[] = {'I','n','t','e','r','l','a','c','e','O','p','t','i','o','n',0};
355 static const WCHAR wszPngFilterOption
[] = {'F','i','l','t','e','r','O','p','t','i','o','n',0};
357 static void *load_libpng(void)
361 EnterCriticalSection(&init_png_cs
);
363 if(!libpng_handle
&& (libpng_handle
= wine_dlopen(SONAME_LIBPNG
, RTLD_NOW
, NULL
, 0)) != NULL
) {
365 #define LOAD_FUNCPTR(f) \
366 if((p##f = wine_dlsym(libpng_handle, #f, NULL, 0)) == NULL) { \
367 libpng_handle = NULL; \
368 LeaveCriticalSection(&init_png_cs); \
371 LOAD_FUNCPTR(png_create_read_struct
);
372 LOAD_FUNCPTR(png_create_info_struct
);
373 LOAD_FUNCPTR(png_create_write_struct
);
374 LOAD_FUNCPTR(png_destroy_read_struct
);
375 LOAD_FUNCPTR(png_destroy_write_struct
);
376 LOAD_FUNCPTR(png_error
);
377 LOAD_FUNCPTR(png_get_bit_depth
);
378 LOAD_FUNCPTR(png_get_color_type
);
379 LOAD_FUNCPTR(png_get_error_ptr
);
380 LOAD_FUNCPTR(png_get_iCCP
);
381 LOAD_FUNCPTR(png_get_image_height
);
382 LOAD_FUNCPTR(png_get_image_width
);
383 LOAD_FUNCPTR(png_get_io_ptr
);
384 LOAD_FUNCPTR(png_get_pHYs
);
385 LOAD_FUNCPTR(png_get_PLTE
);
386 LOAD_FUNCPTR(png_get_tRNS
);
387 LOAD_FUNCPTR(png_set_bgr
);
388 LOAD_FUNCPTR(png_set_crc_action
);
389 LOAD_FUNCPTR(png_set_error_fn
);
390 LOAD_FUNCPTR(png_set_filler
);
391 LOAD_FUNCPTR(png_set_filter
);
392 LOAD_FUNCPTR(png_set_gray_to_rgb
);
393 LOAD_FUNCPTR(png_set_interlace_handling
);
394 LOAD_FUNCPTR(png_set_IHDR
);
395 LOAD_FUNCPTR(png_set_pHYs
);
396 LOAD_FUNCPTR(png_set_PLTE
);
397 LOAD_FUNCPTR(png_set_read_fn
);
398 LOAD_FUNCPTR(png_set_strip_16
);
399 LOAD_FUNCPTR(png_set_tRNS
);
400 LOAD_FUNCPTR(png_set_tRNS_to_alpha
);
401 LOAD_FUNCPTR(png_set_write_fn
);
402 LOAD_FUNCPTR(png_set_swap
);
403 LOAD_FUNCPTR(png_read_end
);
404 LOAD_FUNCPTR(png_read_image
);
405 LOAD_FUNCPTR(png_read_info
);
406 LOAD_FUNCPTR(png_write_end
);
407 LOAD_FUNCPTR(png_write_info
);
408 LOAD_FUNCPTR(png_write_rows
);
413 result
= libpng_handle
;
415 LeaveCriticalSection(&init_png_cs
);
420 static void user_error_fn(png_structp png_ptr
, png_const_charp error_message
)
424 /* This uses setjmp/longjmp just like the default. We can't use the
425 * default because there's no way to access the jmp buffer in the png_struct
426 * that works in 1.2 and 1.4 and allows us to dynamically load libpng. */
427 WARN("PNG error: %s\n", debugstr_a(error_message
));
428 pjmpbuf
= ppng_get_error_ptr(png_ptr
);
429 longjmp(*pjmpbuf
, 1);
432 static void user_warning_fn(png_structp png_ptr
, png_const_charp warning_message
)
434 WARN("PNG warning: %s\n", debugstr_a(warning_message
));
438 ULARGE_INTEGER ofs
, len
;
439 IWICMetadataReader
* reader
;
440 } metadata_block_info
;
443 IWICBitmapDecoder IWICBitmapDecoder_iface
;
444 IWICBitmapFrameDecode IWICBitmapFrameDecode_iface
;
445 IWICMetadataBlockReader IWICMetadataBlockReader_iface
;
455 const WICPixelFormatGUID
*format
;
457 CRITICAL_SECTION lock
; /* must be held when png structures are accessed or initialized is set */
458 ULONG metadata_count
;
459 metadata_block_info
* metadata_blocks
;
462 static inline PngDecoder
*impl_from_IWICBitmapDecoder(IWICBitmapDecoder
*iface
)
464 return CONTAINING_RECORD(iface
, PngDecoder
, IWICBitmapDecoder_iface
);
467 static inline PngDecoder
*impl_from_IWICBitmapFrameDecode(IWICBitmapFrameDecode
*iface
)
469 return CONTAINING_RECORD(iface
, PngDecoder
, IWICBitmapFrameDecode_iface
);
472 static inline PngDecoder
*impl_from_IWICMetadataBlockReader(IWICMetadataBlockReader
*iface
)
474 return CONTAINING_RECORD(iface
, PngDecoder
, IWICMetadataBlockReader_iface
);
477 static const IWICBitmapFrameDecodeVtbl PngDecoder_FrameVtbl
;
479 static HRESULT WINAPI
PngDecoder_QueryInterface(IWICBitmapDecoder
*iface
, REFIID iid
,
482 PngDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
483 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
485 if (!ppv
) return E_INVALIDARG
;
487 if (IsEqualIID(&IID_IUnknown
, iid
) || IsEqualIID(&IID_IWICBitmapDecoder
, iid
))
489 *ppv
= &This
->IWICBitmapDecoder_iface
;
494 return E_NOINTERFACE
;
497 IUnknown_AddRef((IUnknown
*)*ppv
);
501 static ULONG WINAPI
PngDecoder_AddRef(IWICBitmapDecoder
*iface
)
503 PngDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
504 ULONG ref
= InterlockedIncrement(&This
->ref
);
506 TRACE("(%p) refcount=%u\n", iface
, ref
);
511 static ULONG WINAPI
PngDecoder_Release(IWICBitmapDecoder
*iface
)
513 PngDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
514 ULONG ref
= InterlockedDecrement(&This
->ref
);
517 TRACE("(%p) refcount=%u\n", iface
, ref
);
522 IStream_Release(This
->stream
);
524 ppng_destroy_read_struct(&This
->png_ptr
, &This
->info_ptr
, &This
->end_info
);
525 This
->lock
.DebugInfo
->Spare
[0] = 0;
526 DeleteCriticalSection(&This
->lock
);
527 HeapFree(GetProcessHeap(), 0, This
->image_bits
);
528 for (i
=0; i
<This
->metadata_count
; i
++)
530 if (This
->metadata_blocks
[i
].reader
)
531 IWICMetadataReader_Release(This
->metadata_blocks
[i
].reader
);
533 HeapFree(GetProcessHeap(), 0, This
->metadata_blocks
);
534 HeapFree(GetProcessHeap(), 0, This
);
540 static HRESULT WINAPI
PngDecoder_QueryCapability(IWICBitmapDecoder
*iface
, IStream
*stream
,
545 TRACE("(%p,%p,%p)\n", iface
, stream
, capability
);
547 if (!stream
|| !capability
) return E_INVALIDARG
;
549 hr
= IWICBitmapDecoder_Initialize(iface
, stream
, WICDecodeMetadataCacheOnDemand
);
550 if (hr
!= S_OK
) return hr
;
552 *capability
= WICBitmapDecoderCapabilityCanDecodeAllImages
|
553 WICBitmapDecoderCapabilityCanDecodeSomeImages
;
554 /* FIXME: WICBitmapDecoderCapabilityCanEnumerateMetadata */
558 static void user_read_data(png_structp png_ptr
, png_bytep data
, png_size_t length
)
560 IStream
*stream
= ppng_get_io_ptr(png_ptr
);
564 hr
= IStream_Read(stream
, data
, length
, &bytesread
);
565 if (FAILED(hr
) || bytesread
!= length
)
567 ppng_error(png_ptr
, "failed reading data");
571 static HRESULT WINAPI
PngDecoder_Initialize(IWICBitmapDecoder
*iface
, IStream
*pIStream
,
572 WICDecodeOptions cacheOptions
)
574 PngDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
577 png_bytep
*row_pointers
=NULL
;
580 int color_type
, bit_depth
;
583 png_uint_32 transparency
;
584 png_color_16p trans_values
;
588 ULARGE_INTEGER chunk_start
;
589 ULONG metadata_blocks_size
= 0;
591 TRACE("(%p,%p,%x)\n", iface
, pIStream
, cacheOptions
);
593 EnterCriticalSection(&This
->lock
);
595 /* initialize libpng */
596 This
->png_ptr
= ppng_create_read_struct(PNG_LIBPNG_VER_STRING
, NULL
, NULL
, NULL
);
603 This
->info_ptr
= ppng_create_info_struct(This
->png_ptr
);
606 ppng_destroy_read_struct(&This
->png_ptr
, NULL
, NULL
);
607 This
->png_ptr
= NULL
;
612 This
->end_info
= ppng_create_info_struct(This
->png_ptr
);
615 ppng_destroy_read_struct(&This
->png_ptr
, &This
->info_ptr
, NULL
);
616 This
->png_ptr
= NULL
;
621 /* set up setjmp/longjmp error handling */
624 ppng_destroy_read_struct(&This
->png_ptr
, &This
->info_ptr
, &This
->end_info
);
625 This
->png_ptr
= NULL
;
626 hr
= WINCODEC_ERR_UNKNOWNIMAGEFORMAT
;
629 ppng_set_error_fn(This
->png_ptr
, jmpbuf
, user_error_fn
, user_warning_fn
);
630 ppng_set_crc_action(This
->png_ptr
, PNG_CRC_QUIET_USE
, PNG_CRC_QUIET_USE
);
632 /* seek to the start of the stream */
634 hr
= IStream_Seek(pIStream
, seek
, STREAM_SEEK_SET
, NULL
);
635 if (FAILED(hr
)) goto end
;
637 /* set up custom i/o handling */
638 ppng_set_read_fn(This
->png_ptr
, pIStream
, user_read_data
);
640 /* read the header */
641 ppng_read_info(This
->png_ptr
, This
->info_ptr
);
643 /* choose a pixel format */
644 color_type
= ppng_get_color_type(This
->png_ptr
, This
->info_ptr
);
645 bit_depth
= ppng_get_bit_depth(This
->png_ptr
, This
->info_ptr
);
647 /* PNGs with bit-depth greater than 8 are network byte order. Windows does not expect this. */
649 ppng_set_swap(This
->png_ptr
);
651 /* check for color-keyed alpha */
652 transparency
= ppng_get_tRNS(This
->png_ptr
, This
->info_ptr
, &trans
, &num_trans
, &trans_values
);
654 if (transparency
&& (color_type
== PNG_COLOR_TYPE_RGB
||
655 (color_type
== PNG_COLOR_TYPE_GRAY
&& bit_depth
== 16)))
658 if (color_type
== PNG_COLOR_TYPE_GRAY
)
659 ppng_set_gray_to_rgb(This
->png_ptr
);
660 ppng_set_tRNS_to_alpha(This
->png_ptr
);
661 color_type
= PNG_COLOR_TYPE_RGB_ALPHA
;
666 case PNG_COLOR_TYPE_GRAY_ALPHA
:
667 /* WIC does not support grayscale alpha formats so use RGBA */
668 ppng_set_gray_to_rgb(This
->png_ptr
);
670 case PNG_COLOR_TYPE_RGB_ALPHA
:
671 This
->bpp
= bit_depth
* 4;
675 ppng_set_bgr(This
->png_ptr
);
676 This
->format
= &GUID_WICPixelFormat32bppBGRA
;
678 case 16: This
->format
= &GUID_WICPixelFormat64bppRGBA
; break;
680 ERR("invalid RGBA bit depth: %i\n", bit_depth
);
685 case PNG_COLOR_TYPE_GRAY
:
686 This
->bpp
= bit_depth
;
691 case 1: This
->format
= &GUID_WICPixelFormatBlackWhite
; break;
692 case 2: This
->format
= &GUID_WICPixelFormat2bppGray
; break;
693 case 4: This
->format
= &GUID_WICPixelFormat4bppGray
; break;
694 case 8: This
->format
= &GUID_WICPixelFormat8bppGray
; break;
695 case 16: This
->format
= &GUID_WICPixelFormat16bppGray
; break;
697 ERR("invalid grayscale bit depth: %i\n", bit_depth
);
703 /* else fall through */
704 case PNG_COLOR_TYPE_PALETTE
:
705 This
->bpp
= bit_depth
;
708 case 1: This
->format
= &GUID_WICPixelFormat1bppIndexed
; break;
709 case 2: This
->format
= &GUID_WICPixelFormat2bppIndexed
; break;
710 case 4: This
->format
= &GUID_WICPixelFormat4bppIndexed
; break;
711 case 8: This
->format
= &GUID_WICPixelFormat8bppIndexed
; break;
713 ERR("invalid indexed color bit depth: %i\n", bit_depth
);
718 case PNG_COLOR_TYPE_RGB
:
719 This
->bpp
= bit_depth
* 3;
723 ppng_set_bgr(This
->png_ptr
);
724 This
->format
= &GUID_WICPixelFormat24bppBGR
;
726 case 16: This
->format
= &GUID_WICPixelFormat48bppRGB
; break;
728 ERR("invalid RGB color bit depth: %i\n", bit_depth
);
734 ERR("invalid color type %i\n", color_type
);
739 /* read the image data */
740 This
->width
= ppng_get_image_width(This
->png_ptr
, This
->info_ptr
);
741 This
->height
= ppng_get_image_height(This
->png_ptr
, This
->info_ptr
);
742 This
->stride
= (This
->width
* This
->bpp
+ 7) / 8;
743 image_size
= This
->stride
* This
->height
;
745 This
->image_bits
= HeapAlloc(GetProcessHeap(), 0, image_size
);
746 if (!This
->image_bits
)
752 row_pointers
= HeapAlloc(GetProcessHeap(), 0, sizeof(png_bytep
)*This
->height
);
759 for (i
=0; i
<This
->height
; i
++)
760 row_pointers
[i
] = This
->image_bits
+ i
* This
->stride
;
762 ppng_read_image(This
->png_ptr
, row_pointers
);
764 HeapFree(GetProcessHeap(), 0, row_pointers
);
767 ppng_read_end(This
->png_ptr
, This
->end_info
);
769 /* Find the metadata chunks in the file. */
774 hr
= IStream_Seek(pIStream
, seek
, STREAM_SEEK_SET
, &chunk_start
);
775 if (FAILED(hr
)) goto end
;
777 hr
= read_png_chunk(pIStream
, chunk_type
, NULL
, &chunk_size
);
778 if (FAILED(hr
)) goto end
;
780 if (chunk_type
[0] >= 'a' && chunk_type
[0] <= 'z' &&
781 memcmp(chunk_type
, "tRNS", 4) && memcmp(chunk_type
, "pHYs", 4))
783 /* This chunk is considered metadata. */
784 if (This
->metadata_count
== metadata_blocks_size
)
786 metadata_block_info
* new_metadata_blocks
;
787 ULONG new_metadata_blocks_size
;
789 new_metadata_blocks_size
= 4 + metadata_blocks_size
* 2;
790 new_metadata_blocks
= HeapAlloc(GetProcessHeap(), 0,
791 new_metadata_blocks_size
* sizeof(*new_metadata_blocks
));
793 if (!new_metadata_blocks
)
799 memcpy(new_metadata_blocks
, This
->metadata_blocks
,
800 This
->metadata_count
* sizeof(*new_metadata_blocks
));
802 HeapFree(GetProcessHeap(), 0, This
->metadata_blocks
);
803 This
->metadata_blocks
= new_metadata_blocks
;
804 metadata_blocks_size
= new_metadata_blocks_size
;
807 This
->metadata_blocks
[This
->metadata_count
].ofs
= chunk_start
;
808 This
->metadata_blocks
[This
->metadata_count
].len
.QuadPart
= chunk_size
+ 12;
809 This
->metadata_blocks
[This
->metadata_count
].reader
= NULL
;
810 This
->metadata_count
++;
813 seek
.QuadPart
= chunk_start
.QuadPart
+ chunk_size
+ 12; /* skip data and CRC */
814 } while (memcmp(chunk_type
, "IEND", 4));
816 This
->stream
= pIStream
;
817 IStream_AddRef(This
->stream
);
819 This
->initialized
= TRUE
;
822 LeaveCriticalSection(&This
->lock
);
824 HeapFree(GetProcessHeap(), 0, row_pointers
);
829 static HRESULT WINAPI
PngDecoder_GetContainerFormat(IWICBitmapDecoder
*iface
,
830 GUID
*pguidContainerFormat
)
832 memcpy(pguidContainerFormat
, &GUID_ContainerFormatPng
, sizeof(GUID
));
836 static HRESULT WINAPI
PngDecoder_GetDecoderInfo(IWICBitmapDecoder
*iface
,
837 IWICBitmapDecoderInfo
**ppIDecoderInfo
)
839 TRACE("(%p,%p)\n", iface
, ppIDecoderInfo
);
841 return get_decoder_info(&CLSID_WICPngDecoder
, ppIDecoderInfo
);
844 static HRESULT WINAPI
PngDecoder_CopyPalette(IWICBitmapDecoder
*iface
,
845 IWICPalette
*palette
)
847 TRACE("(%p,%p)\n", iface
, palette
);
848 return WINCODEC_ERR_PALETTEUNAVAILABLE
;
851 static HRESULT WINAPI
PngDecoder_GetMetadataQueryReader(IWICBitmapDecoder
*iface
,
852 IWICMetadataQueryReader
**reader
)
854 TRACE("(%p,%p)\n", iface
, reader
);
856 if (!reader
) return E_INVALIDARG
;
859 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
862 static HRESULT WINAPI
PngDecoder_GetPreview(IWICBitmapDecoder
*iface
,
863 IWICBitmapSource
**ppIBitmapSource
)
865 TRACE("(%p,%p)\n", iface
, ppIBitmapSource
);
867 if (!ppIBitmapSource
) return E_INVALIDARG
;
869 *ppIBitmapSource
= NULL
;
870 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
873 static HRESULT WINAPI
PngDecoder_GetColorContexts(IWICBitmapDecoder
*iface
,
874 UINT cCount
, IWICColorContext
**ppIColorContexts
, UINT
*pcActualCount
)
876 TRACE("(%p,%u,%p,%p)\n", iface
, cCount
, ppIColorContexts
, pcActualCount
);
877 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
880 static HRESULT WINAPI
PngDecoder_GetThumbnail(IWICBitmapDecoder
*iface
,
881 IWICBitmapSource
**ppIThumbnail
)
883 TRACE("(%p,%p)\n", iface
, ppIThumbnail
);
885 if (!ppIThumbnail
) return E_INVALIDARG
;
887 *ppIThumbnail
= NULL
;
888 return WINCODEC_ERR_CODECNOTHUMBNAIL
;
891 static HRESULT WINAPI
PngDecoder_GetFrameCount(IWICBitmapDecoder
*iface
,
894 if (!pCount
) return E_INVALIDARG
;
900 static HRESULT WINAPI
PngDecoder_GetFrame(IWICBitmapDecoder
*iface
,
901 UINT index
, IWICBitmapFrameDecode
**ppIBitmapFrame
)
903 PngDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
904 TRACE("(%p,%u,%p)\n", iface
, index
, ppIBitmapFrame
);
906 if (!This
->initialized
) return WINCODEC_ERR_FRAMEMISSING
;
908 if (index
!= 0) return E_INVALIDARG
;
910 IWICBitmapDecoder_AddRef(iface
);
912 *ppIBitmapFrame
= &This
->IWICBitmapFrameDecode_iface
;
917 static const IWICBitmapDecoderVtbl PngDecoder_Vtbl
= {
918 PngDecoder_QueryInterface
,
921 PngDecoder_QueryCapability
,
922 PngDecoder_Initialize
,
923 PngDecoder_GetContainerFormat
,
924 PngDecoder_GetDecoderInfo
,
925 PngDecoder_CopyPalette
,
926 PngDecoder_GetMetadataQueryReader
,
927 PngDecoder_GetPreview
,
928 PngDecoder_GetColorContexts
,
929 PngDecoder_GetThumbnail
,
930 PngDecoder_GetFrameCount
,
934 static HRESULT WINAPI
PngDecoder_Frame_QueryInterface(IWICBitmapFrameDecode
*iface
, REFIID iid
,
937 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
938 if (!ppv
) return E_INVALIDARG
;
940 if (IsEqualIID(&IID_IUnknown
, iid
) ||
941 IsEqualIID(&IID_IWICBitmapSource
, iid
) ||
942 IsEqualIID(&IID_IWICBitmapFrameDecode
, iid
))
944 *ppv
= &This
->IWICBitmapFrameDecode_iface
;
946 else if (IsEqualIID(&IID_IWICMetadataBlockReader
, iid
))
948 *ppv
= &This
->IWICMetadataBlockReader_iface
;
953 return E_NOINTERFACE
;
956 IUnknown_AddRef((IUnknown
*)*ppv
);
960 static ULONG WINAPI
PngDecoder_Frame_AddRef(IWICBitmapFrameDecode
*iface
)
962 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
963 return IWICBitmapDecoder_AddRef(&This
->IWICBitmapDecoder_iface
);
966 static ULONG WINAPI
PngDecoder_Frame_Release(IWICBitmapFrameDecode
*iface
)
968 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
969 return IWICBitmapDecoder_Release(&This
->IWICBitmapDecoder_iface
);
972 static HRESULT WINAPI
PngDecoder_Frame_GetSize(IWICBitmapFrameDecode
*iface
,
973 UINT
*puiWidth
, UINT
*puiHeight
)
975 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
976 *puiWidth
= This
->width
;
977 *puiHeight
= This
->height
;
978 TRACE("(%p)->(%u,%u)\n", iface
, *puiWidth
, *puiHeight
);
982 static HRESULT WINAPI
PngDecoder_Frame_GetPixelFormat(IWICBitmapFrameDecode
*iface
,
983 WICPixelFormatGUID
*pPixelFormat
)
985 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
986 TRACE("(%p,%p)\n", iface
, pPixelFormat
);
988 memcpy(pPixelFormat
, This
->format
, sizeof(GUID
));
993 static HRESULT WINAPI
PngDecoder_Frame_GetResolution(IWICBitmapFrameDecode
*iface
,
994 double *pDpiX
, double *pDpiY
)
996 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
997 png_uint_32 ret
, xres
, yres
;
1000 EnterCriticalSection(&This
->lock
);
1002 ret
= ppng_get_pHYs(This
->png_ptr
, This
->info_ptr
, &xres
, &yres
, &unit_type
);
1004 if (ret
&& unit_type
== PNG_RESOLUTION_METER
)
1006 *pDpiX
= xres
* 0.0254;
1007 *pDpiY
= yres
* 0.0254;
1011 WARN("no pHYs block present\n");
1012 *pDpiX
= *pDpiY
= 96.0;
1015 LeaveCriticalSection(&This
->lock
);
1017 TRACE("(%p)->(%0.2f,%0.2f)\n", iface
, *pDpiX
, *pDpiY
);
1022 static HRESULT WINAPI
PngDecoder_Frame_CopyPalette(IWICBitmapFrameDecode
*iface
,
1023 IWICPalette
*pIPalette
)
1025 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
1026 png_uint_32 ret
, color_type
, bit_depth
;
1027 png_colorp png_palette
;
1029 WICColor palette
[256];
1030 png_bytep trans_alpha
;
1032 png_color_16p trans_values
;
1036 TRACE("(%p,%p)\n", iface
, pIPalette
);
1038 EnterCriticalSection(&This
->lock
);
1040 color_type
= ppng_get_color_type(This
->png_ptr
, This
->info_ptr
);
1041 bit_depth
= ppng_get_bit_depth(This
->png_ptr
, This
->info_ptr
);
1043 if (color_type
== PNG_COLOR_TYPE_PALETTE
)
1045 ret
= ppng_get_PLTE(This
->png_ptr
, This
->info_ptr
, &png_palette
, &num_palette
);
1048 hr
= WINCODEC_ERR_PALETTEUNAVAILABLE
;
1052 if (num_palette
> 256)
1054 ERR("palette has %i colors?!\n", num_palette
);
1059 ret
= ppng_get_tRNS(This
->png_ptr
, This
->info_ptr
, &trans_alpha
, &num_trans
, &trans_values
);
1060 if (!ret
) num_trans
= 0;
1062 for (i
=0; i
<num_palette
; i
++)
1064 BYTE alpha
= (i
< num_trans
) ? trans_alpha
[i
] : 0xff;
1065 palette
[i
] = (alpha
<< 24 |
1066 png_palette
[i
].red
<< 16|
1067 png_palette
[i
].green
<< 8|
1068 png_palette
[i
].blue
);
1071 else if (color_type
== PNG_COLOR_TYPE_GRAY
&& bit_depth
<= 8) {
1072 ret
= ppng_get_tRNS(This
->png_ptr
, This
->info_ptr
, &trans_alpha
, &num_trans
, &trans_values
);
1076 hr
= WINCODEC_ERR_PALETTEUNAVAILABLE
;
1080 num_palette
= 1 << bit_depth
;
1082 for (i
=0; i
<num_palette
; i
++)
1084 BYTE alpha
= (i
== trans_values
[0].gray
) ? 0 : 0xff;
1085 BYTE val
= i
* 255 / (num_palette
- 1);
1086 palette
[i
] = (alpha
<< 24 | val
<< 16 | val
<< 8 | val
);
1091 hr
= WINCODEC_ERR_PALETTEUNAVAILABLE
;
1096 LeaveCriticalSection(&This
->lock
);
1099 hr
= IWICPalette_InitializeCustom(pIPalette
, palette
, num_palette
);
1104 static HRESULT WINAPI
PngDecoder_Frame_CopyPixels(IWICBitmapFrameDecode
*iface
,
1105 const WICRect
*prc
, UINT cbStride
, UINT cbBufferSize
, BYTE
*pbBuffer
)
1107 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
1108 TRACE("(%p,%s,%u,%u,%p)\n", iface
, debug_wic_rect(prc
), cbStride
, cbBufferSize
, pbBuffer
);
1110 return copy_pixels(This
->bpp
, This
->image_bits
,
1111 This
->width
, This
->height
, This
->stride
,
1112 prc
, cbStride
, cbBufferSize
, pbBuffer
);
1115 static HRESULT WINAPI
PngDecoder_Frame_GetMetadataQueryReader(IWICBitmapFrameDecode
*iface
,
1116 IWICMetadataQueryReader
**ppIMetadataQueryReader
)
1118 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
1120 TRACE("(%p,%p)\n", iface
, ppIMetadataQueryReader
);
1122 if (!ppIMetadataQueryReader
)
1123 return E_INVALIDARG
;
1125 return MetadataQueryReader_CreateInstance(&This
->IWICMetadataBlockReader_iface
, NULL
, ppIMetadataQueryReader
);
1128 static HRESULT WINAPI
PngDecoder_Frame_GetColorContexts(IWICBitmapFrameDecode
*iface
,
1129 UINT cCount
, IWICColorContext
**ppIColorContexts
, UINT
*pcActualCount
)
1131 PngDecoder
*This
= impl_from_IWICBitmapFrameDecode(iface
);
1135 int compression_type
;
1138 TRACE("(%p,%u,%p,%p)\n", iface
, cCount
, ppIColorContexts
, pcActualCount
);
1140 if (!pcActualCount
) return E_INVALIDARG
;
1142 EnterCriticalSection(&This
->lock
);
1144 if (ppng_get_iCCP(This
->png_ptr
, This
->info_ptr
, &name
, &compression_type
, (void *)&profile
, &len
))
1146 if (cCount
&& ppIColorContexts
)
1148 hr
= IWICColorContext_InitializeFromMemory(*ppIColorContexts
, profile
, len
);
1151 LeaveCriticalSection(&This
->lock
);
1160 LeaveCriticalSection(&This
->lock
);
1165 static HRESULT WINAPI
PngDecoder_Frame_GetThumbnail(IWICBitmapFrameDecode
*iface
,
1166 IWICBitmapSource
**ppIThumbnail
)
1168 TRACE("(%p,%p)\n", iface
, ppIThumbnail
);
1170 if (!ppIThumbnail
) return E_INVALIDARG
;
1172 *ppIThumbnail
= NULL
;
1173 return WINCODEC_ERR_CODECNOTHUMBNAIL
;
1176 static const IWICBitmapFrameDecodeVtbl PngDecoder_FrameVtbl
= {
1177 PngDecoder_Frame_QueryInterface
,
1178 PngDecoder_Frame_AddRef
,
1179 PngDecoder_Frame_Release
,
1180 PngDecoder_Frame_GetSize
,
1181 PngDecoder_Frame_GetPixelFormat
,
1182 PngDecoder_Frame_GetResolution
,
1183 PngDecoder_Frame_CopyPalette
,
1184 PngDecoder_Frame_CopyPixels
,
1185 PngDecoder_Frame_GetMetadataQueryReader
,
1186 PngDecoder_Frame_GetColorContexts
,
1187 PngDecoder_Frame_GetThumbnail
1190 static HRESULT WINAPI
PngDecoder_Block_QueryInterface(IWICMetadataBlockReader
*iface
, REFIID iid
,
1193 PngDecoder
*This
= impl_from_IWICMetadataBlockReader(iface
);
1194 return IWICBitmapFrameDecode_QueryInterface(&This
->IWICBitmapFrameDecode_iface
, iid
, ppv
);
1197 static ULONG WINAPI
PngDecoder_Block_AddRef(IWICMetadataBlockReader
*iface
)
1199 PngDecoder
*This
= impl_from_IWICMetadataBlockReader(iface
);
1200 return IWICBitmapDecoder_AddRef(&This
->IWICBitmapDecoder_iface
);
1203 static ULONG WINAPI
PngDecoder_Block_Release(IWICMetadataBlockReader
*iface
)
1205 PngDecoder
*This
= impl_from_IWICMetadataBlockReader(iface
);
1206 return IWICBitmapDecoder_Release(&This
->IWICBitmapDecoder_iface
);
1209 static HRESULT WINAPI
PngDecoder_Block_GetContainerFormat(IWICMetadataBlockReader
*iface
,
1210 GUID
*pguidContainerFormat
)
1212 if (!pguidContainerFormat
) return E_INVALIDARG
;
1213 memcpy(pguidContainerFormat
, &GUID_ContainerFormatPng
, sizeof(GUID
));
1217 static HRESULT WINAPI
PngDecoder_Block_GetCount(IWICMetadataBlockReader
*iface
,
1220 PngDecoder
*This
= impl_from_IWICMetadataBlockReader(iface
);
1222 TRACE("%p,%p\n", iface
, pcCount
);
1224 if (!pcCount
) return E_INVALIDARG
;
1226 *pcCount
= This
->metadata_count
;
1231 static HRESULT WINAPI
PngDecoder_Block_GetReaderByIndex(IWICMetadataBlockReader
*iface
,
1232 UINT nIndex
, IWICMetadataReader
**ppIMetadataReader
)
1234 PngDecoder
*This
= impl_from_IWICMetadataBlockReader(iface
);
1236 IWICComponentFactory
* factory
;
1239 TRACE("%p,%d,%p\n", iface
, nIndex
, ppIMetadataReader
);
1241 if (nIndex
>= This
->metadata_count
|| !ppIMetadataReader
)
1242 return E_INVALIDARG
;
1244 if (!This
->metadata_blocks
[nIndex
].reader
)
1246 hr
= StreamImpl_Create(&stream
);
1250 hr
= IWICStream_InitializeFromIStreamRegion(stream
, This
->stream
,
1251 This
->metadata_blocks
[nIndex
].ofs
, This
->metadata_blocks
[nIndex
].len
);
1254 hr
= ImagingFactory_CreateInstance(&IID_IWICComponentFactory
, (void**)&factory
);
1258 hr
= IWICComponentFactory_CreateMetadataReaderFromContainer(factory
,
1259 &GUID_ContainerFormatPng
, NULL
, WICMetadataCreationAllowUnknown
,
1260 (IStream
*)stream
, &This
->metadata_blocks
[nIndex
].reader
);
1262 IWICComponentFactory_Release(factory
);
1265 IWICStream_Release(stream
);
1270 *ppIMetadataReader
= NULL
;
1275 *ppIMetadataReader
= This
->metadata_blocks
[nIndex
].reader
;
1276 IWICMetadataReader_AddRef(*ppIMetadataReader
);
1281 static HRESULT WINAPI
PngDecoder_Block_GetEnumerator(IWICMetadataBlockReader
*iface
,
1282 IEnumUnknown
**ppIEnumMetadata
)
1284 FIXME("%p,%p\n", iface
, ppIEnumMetadata
);
1288 static const IWICMetadataBlockReaderVtbl PngDecoder_BlockVtbl
= {
1289 PngDecoder_Block_QueryInterface
,
1290 PngDecoder_Block_AddRef
,
1291 PngDecoder_Block_Release
,
1292 PngDecoder_Block_GetContainerFormat
,
1293 PngDecoder_Block_GetCount
,
1294 PngDecoder_Block_GetReaderByIndex
,
1295 PngDecoder_Block_GetEnumerator
,
1298 HRESULT
PngDecoder_CreateInstance(REFIID iid
, void** ppv
)
1303 TRACE("(%s,%p)\n", debugstr_guid(iid
), ppv
);
1309 ERR("Failed reading PNG because unable to find %s\n",SONAME_LIBPNG
);
1313 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(PngDecoder
));
1314 if (!This
) return E_OUTOFMEMORY
;
1316 This
->IWICBitmapDecoder_iface
.lpVtbl
= &PngDecoder_Vtbl
;
1317 This
->IWICBitmapFrameDecode_iface
.lpVtbl
= &PngDecoder_FrameVtbl
;
1318 This
->IWICMetadataBlockReader_iface
.lpVtbl
= &PngDecoder_BlockVtbl
;
1320 This
->png_ptr
= NULL
;
1321 This
->info_ptr
= NULL
;
1322 This
->end_info
= NULL
;
1323 This
->stream
= NULL
;
1324 This
->initialized
= FALSE
;
1325 This
->image_bits
= NULL
;
1326 InitializeCriticalSection(&This
->lock
);
1327 This
->lock
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": PngDecoder.lock");
1328 This
->metadata_count
= 0;
1329 This
->metadata_blocks
= NULL
;
1331 ret
= IWICBitmapDecoder_QueryInterface(&This
->IWICBitmapDecoder_iface
, iid
, ppv
);
1332 IWICBitmapDecoder_Release(&This
->IWICBitmapDecoder_iface
);
1337 struct png_pixelformat
{
1338 const WICPixelFormatGUID
*guid
;
1346 static const struct png_pixelformat formats
[] = {
1347 {&GUID_WICPixelFormat32bppBGRA
, 32, 8, PNG_COLOR_TYPE_RGB_ALPHA
, 0, 1},
1348 {&GUID_WICPixelFormat24bppBGR
, 24, 8, PNG_COLOR_TYPE_RGB
, 0, 1},
1349 {&GUID_WICPixelFormatBlackWhite
, 1, 1, PNG_COLOR_TYPE_GRAY
, 0, 0},
1350 {&GUID_WICPixelFormat2bppGray
, 2, 2, PNG_COLOR_TYPE_GRAY
, 0, 0},
1351 {&GUID_WICPixelFormat4bppGray
, 4, 4, PNG_COLOR_TYPE_GRAY
, 0, 0},
1352 {&GUID_WICPixelFormat8bppGray
, 8, 8, PNG_COLOR_TYPE_GRAY
, 0, 0},
1353 {&GUID_WICPixelFormat16bppGray
, 16, 16, PNG_COLOR_TYPE_GRAY
, 0, 0},
1354 {&GUID_WICPixelFormat32bppBGR
, 32, 8, PNG_COLOR_TYPE_RGB
, 1, 1},
1355 {&GUID_WICPixelFormat48bppRGB
, 48, 16, PNG_COLOR_TYPE_RGB
, 0, 0},
1356 {&GUID_WICPixelFormat64bppRGBA
, 64, 16, PNG_COLOR_TYPE_RGB_ALPHA
, 0, 0},
1357 {&GUID_WICPixelFormat1bppIndexed
, 1, 1, PNG_COLOR_TYPE_PALETTE
, 0, 0},
1358 {&GUID_WICPixelFormat2bppIndexed
, 2, 2, PNG_COLOR_TYPE_PALETTE
, 0, 0},
1359 {&GUID_WICPixelFormat4bppIndexed
, 4, 4, PNG_COLOR_TYPE_PALETTE
, 0, 0},
1360 {&GUID_WICPixelFormat8bppIndexed
, 8, 8, PNG_COLOR_TYPE_PALETTE
, 0, 0},
1364 typedef struct PngEncoder
{
1365 IWICBitmapEncoder IWICBitmapEncoder_iface
;
1366 IWICBitmapFrameEncode IWICBitmapFrameEncode_iface
;
1369 png_structp png_ptr
;
1372 BOOL frame_initialized
;
1373 const struct png_pixelformat
*format
;
1378 BOOL frame_committed
;
1380 CRITICAL_SECTION lock
;
1382 WICPngFilterOption filter
;
1386 WICColor palette
[256];
1390 static inline PngEncoder
*impl_from_IWICBitmapEncoder(IWICBitmapEncoder
*iface
)
1392 return CONTAINING_RECORD(iface
, PngEncoder
, IWICBitmapEncoder_iface
);
1395 static inline PngEncoder
*impl_from_IWICBitmapFrameEncode(IWICBitmapFrameEncode
*iface
)
1397 return CONTAINING_RECORD(iface
, PngEncoder
, IWICBitmapFrameEncode_iface
);
1400 static HRESULT WINAPI
PngFrameEncode_QueryInterface(IWICBitmapFrameEncode
*iface
, REFIID iid
,
1403 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1404 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
1406 if (!ppv
) return E_INVALIDARG
;
1408 if (IsEqualIID(&IID_IUnknown
, iid
) ||
1409 IsEqualIID(&IID_IWICBitmapFrameEncode
, iid
))
1411 *ppv
= &This
->IWICBitmapFrameEncode_iface
;
1416 return E_NOINTERFACE
;
1419 IUnknown_AddRef((IUnknown
*)*ppv
);
1423 static ULONG WINAPI
PngFrameEncode_AddRef(IWICBitmapFrameEncode
*iface
)
1425 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1426 return IWICBitmapEncoder_AddRef(&This
->IWICBitmapEncoder_iface
);
1429 static ULONG WINAPI
PngFrameEncode_Release(IWICBitmapFrameEncode
*iface
)
1431 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1432 return IWICBitmapEncoder_Release(&This
->IWICBitmapEncoder_iface
);
1435 static HRESULT WINAPI
PngFrameEncode_Initialize(IWICBitmapFrameEncode
*iface
,
1436 IPropertyBag2
*pIEncoderOptions
)
1438 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1439 WICPngFilterOption filter
;
1441 PROPBAG2 opts
[2]= {{0}};
1442 VARIANT opt_values
[2];
1443 HRESULT opt_hres
[2];
1446 TRACE("(%p,%p)\n", iface
, pIEncoderOptions
);
1448 opts
[0].pstrName
= (LPOLESTR
)wszPngInterlaceOption
;
1449 opts
[0].vt
= VT_BOOL
;
1450 opts
[1].pstrName
= (LPOLESTR
)wszPngFilterOption
;
1451 opts
[1].vt
= VT_UI1
;
1453 if (pIEncoderOptions
)
1455 hr
= IPropertyBag2_Read(pIEncoderOptions
, ARRAY_SIZE(opts
), opts
, NULL
, opt_values
, opt_hres
);
1460 if (V_VT(&opt_values
[0]) == VT_EMPTY
)
1463 interlace
= (V_BOOL(&opt_values
[0]) != 0);
1465 filter
= V_UI1(&opt_values
[1]);
1466 if (filter
> WICPngFilterAdaptive
)
1468 WARN("Unrecognized filter option value %u.\n", filter
);
1469 filter
= WICPngFilterUnspecified
;
1475 filter
= WICPngFilterUnspecified
;
1478 EnterCriticalSection(&This
->lock
);
1480 if (This
->frame_initialized
)
1482 LeaveCriticalSection(&This
->lock
);
1483 return WINCODEC_ERR_WRONGSTATE
;
1486 This
->interlace
= interlace
;
1487 This
->filter
= filter
;
1489 This
->frame_initialized
= TRUE
;
1491 LeaveCriticalSection(&This
->lock
);
1496 static HRESULT WINAPI
PngFrameEncode_SetSize(IWICBitmapFrameEncode
*iface
,
1497 UINT uiWidth
, UINT uiHeight
)
1499 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1500 TRACE("(%p,%u,%u)\n", iface
, uiWidth
, uiHeight
);
1502 EnterCriticalSection(&This
->lock
);
1504 if (!This
->frame_initialized
|| This
->info_written
)
1506 LeaveCriticalSection(&This
->lock
);
1507 return WINCODEC_ERR_WRONGSTATE
;
1510 This
->width
= uiWidth
;
1511 This
->height
= uiHeight
;
1513 LeaveCriticalSection(&This
->lock
);
1518 static HRESULT WINAPI
PngFrameEncode_SetResolution(IWICBitmapFrameEncode
*iface
,
1519 double dpiX
, double dpiY
)
1521 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1522 TRACE("(%p,%0.2f,%0.2f)\n", iface
, dpiX
, dpiY
);
1524 EnterCriticalSection(&This
->lock
);
1526 if (!This
->frame_initialized
|| This
->info_written
)
1528 LeaveCriticalSection(&This
->lock
);
1529 return WINCODEC_ERR_WRONGSTATE
;
1535 LeaveCriticalSection(&This
->lock
);
1540 static HRESULT WINAPI
PngFrameEncode_SetPixelFormat(IWICBitmapFrameEncode
*iface
,
1541 WICPixelFormatGUID
*pPixelFormat
)
1543 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1545 TRACE("(%p,%s)\n", iface
, debugstr_guid(pPixelFormat
));
1547 EnterCriticalSection(&This
->lock
);
1549 if (!This
->frame_initialized
|| This
->info_written
)
1551 LeaveCriticalSection(&This
->lock
);
1552 return WINCODEC_ERR_WRONGSTATE
;
1555 for (i
=0; formats
[i
].guid
; i
++)
1557 if (memcmp(formats
[i
].guid
, pPixelFormat
, sizeof(GUID
)) == 0)
1561 if (!formats
[i
].guid
) i
= 0;
1563 This
->format
= &formats
[i
];
1564 memcpy(pPixelFormat
, This
->format
->guid
, sizeof(GUID
));
1566 LeaveCriticalSection(&This
->lock
);
1571 static HRESULT WINAPI
PngFrameEncode_SetColorContexts(IWICBitmapFrameEncode
*iface
,
1572 UINT cCount
, IWICColorContext
**ppIColorContext
)
1574 FIXME("(%p,%u,%p): stub\n", iface
, cCount
, ppIColorContext
);
1578 static HRESULT WINAPI
PngFrameEncode_SetPalette(IWICBitmapFrameEncode
*iface
,
1579 IWICPalette
*palette
)
1581 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1584 TRACE("(%p,%p)\n", iface
, palette
);
1586 if (!palette
) return E_INVALIDARG
;
1588 EnterCriticalSection(&This
->lock
);
1590 if (This
->frame_initialized
)
1591 hr
= IWICPalette_GetColors(palette
, 256, This
->palette
, &This
->colors
);
1593 hr
= WINCODEC_ERR_NOTINITIALIZED
;
1595 LeaveCriticalSection(&This
->lock
);
1599 static HRESULT WINAPI
PngFrameEncode_SetThumbnail(IWICBitmapFrameEncode
*iface
,
1600 IWICBitmapSource
*pIThumbnail
)
1602 FIXME("(%p,%p): stub\n", iface
, pIThumbnail
);
1603 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
1606 static HRESULT WINAPI
PngFrameEncode_WritePixels(IWICBitmapFrameEncode
*iface
,
1607 UINT lineCount
, UINT cbStride
, UINT cbBufferSize
, BYTE
*pbPixels
)
1609 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1610 png_byte
**row_pointers
=NULL
;
1613 TRACE("(%p,%u,%u,%u,%p)\n", iface
, lineCount
, cbStride
, cbBufferSize
, pbPixels
);
1615 EnterCriticalSection(&This
->lock
);
1617 if (!This
->frame_initialized
|| !This
->width
|| !This
->height
|| !This
->format
)
1619 LeaveCriticalSection(&This
->lock
);
1620 return WINCODEC_ERR_WRONGSTATE
;
1623 if (lineCount
== 0 || lineCount
+ This
->lines_written
> This
->height
)
1625 LeaveCriticalSection(&This
->lock
);
1626 return E_INVALIDARG
;
1629 /* set up setjmp/longjmp error handling */
1632 LeaveCriticalSection(&This
->lock
);
1633 HeapFree(GetProcessHeap(), 0, row_pointers
);
1636 ppng_set_error_fn(This
->png_ptr
, jmpbuf
, user_error_fn
, user_warning_fn
);
1638 if (!This
->info_written
)
1640 if (This
->interlace
)
1642 /* libpng requires us to write all data multiple times in this case. */
1643 This
->stride
= (This
->format
->bpp
* This
->width
+ 7)/8;
1644 This
->data
= HeapAlloc(GetProcessHeap(), 0, This
->height
* This
->stride
);
1647 LeaveCriticalSection(&This
->lock
);
1648 return E_OUTOFMEMORY
;
1652 /* Tell PNG we need to byte swap if writing a >8-bpp image */
1653 if (This
->format
->bit_depth
> 8)
1654 ppng_set_swap(This
->png_ptr
);
1656 ppng_set_IHDR(This
->png_ptr
, This
->info_ptr
, This
->width
, This
->height
,
1657 This
->format
->bit_depth
, This
->format
->color_type
,
1658 This
->interlace
? PNG_INTERLACE_ADAM7
: PNG_INTERLACE_NONE
,
1659 PNG_COMPRESSION_TYPE_DEFAULT
, PNG_FILTER_TYPE_DEFAULT
);
1661 if (This
->xres
!= 0.0 && This
->yres
!= 0.0)
1663 ppng_set_pHYs(This
->png_ptr
, This
->info_ptr
, (This
->xres
+0.0127) / 0.0254,
1664 (This
->yres
+0.0127) / 0.0254, PNG_RESOLUTION_METER
);
1667 if (This
->format
->color_type
== PNG_COLOR_TYPE_PALETTE
&& This
->colors
)
1669 png_color png_palette
[256];
1670 png_byte trans
[256];
1671 UINT i
, num_trans
= 0, colors
;
1673 /* Newer libpng versions don't accept larger palettes than the declared
1674 * bit depth, so we need to generate the palette of the correct length.
1676 colors
= min(This
->colors
, 1 << This
->format
->bit_depth
);
1678 for (i
= 0; i
< colors
; i
++)
1680 png_palette
[i
].red
= (This
->palette
[i
] >> 16) & 0xff;
1681 png_palette
[i
].green
= (This
->palette
[i
] >> 8) & 0xff;
1682 png_palette
[i
].blue
= This
->palette
[i
] & 0xff;
1683 trans
[i
] = (This
->palette
[i
] >> 24) & 0xff;
1684 if (trans
[i
] != 0xff)
1688 ppng_set_PLTE(This
->png_ptr
, This
->info_ptr
, png_palette
, colors
);
1691 ppng_set_tRNS(This
->png_ptr
, This
->info_ptr
, trans
, num_trans
, NULL
);
1694 ppng_write_info(This
->png_ptr
, This
->info_ptr
);
1696 if (This
->format
->remove_filler
)
1697 ppng_set_filler(This
->png_ptr
, 0, PNG_FILLER_AFTER
);
1699 if (This
->format
->swap_rgb
)
1700 ppng_set_bgr(This
->png_ptr
);
1702 if (This
->interlace
)
1703 This
->passes
= ppng_set_interlace_handling(This
->png_ptr
);
1705 if (This
->filter
!= WICPngFilterUnspecified
)
1707 static const int png_filter_map
[] =
1709 /* WICPngFilterUnspecified */ PNG_NO_FILTERS
,
1710 /* WICPngFilterNone */ PNG_FILTER_NONE
,
1711 /* WICPngFilterSub */ PNG_FILTER_SUB
,
1712 /* WICPngFilterUp */ PNG_FILTER_UP
,
1713 /* WICPngFilterAverage */ PNG_FILTER_AVG
,
1714 /* WICPngFilterPaeth */ PNG_FILTER_PAETH
,
1715 /* WICPngFilterAdaptive */ PNG_ALL_FILTERS
,
1718 ppng_set_filter(This
->png_ptr
, 0, png_filter_map
[This
->filter
]);
1721 This
->info_written
= TRUE
;
1724 if (This
->interlace
)
1726 /* Just store the data so we can write it in multiple passes in Commit. */
1727 for (i
=0; i
<lineCount
; i
++)
1728 memcpy(This
->data
+ This
->stride
* (This
->lines_written
+ i
),
1729 pbPixels
+ cbStride
* i
,
1732 This
->lines_written
+= lineCount
;
1734 LeaveCriticalSection(&This
->lock
);
1738 row_pointers
= HeapAlloc(GetProcessHeap(), 0, lineCount
* sizeof(png_byte
*));
1741 LeaveCriticalSection(&This
->lock
);
1742 return E_OUTOFMEMORY
;
1745 for (i
=0; i
<lineCount
; i
++)
1746 row_pointers
[i
] = pbPixels
+ cbStride
* i
;
1748 ppng_write_rows(This
->png_ptr
, row_pointers
, lineCount
);
1749 This
->lines_written
+= lineCount
;
1751 LeaveCriticalSection(&This
->lock
);
1753 HeapFree(GetProcessHeap(), 0, row_pointers
);
1758 static HRESULT WINAPI
PngFrameEncode_WriteSource(IWICBitmapFrameEncode
*iface
,
1759 IWICBitmapSource
*pIBitmapSource
, WICRect
*prc
)
1761 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1763 TRACE("(%p,%p,%s)\n", iface
, pIBitmapSource
, debug_wic_rect(prc
));
1765 if (!This
->frame_initialized
)
1766 return WINCODEC_ERR_WRONGSTATE
;
1768 hr
= configure_write_source(iface
, pIBitmapSource
, prc
,
1769 This
->format
? This
->format
->guid
: NULL
, This
->width
, This
->height
,
1770 This
->xres
, This
->yres
);
1774 hr
= write_source(iface
, pIBitmapSource
, prc
,
1775 This
->format
->guid
, This
->format
->bpp
, This
->width
, This
->height
);
1781 static HRESULT WINAPI
PngFrameEncode_Commit(IWICBitmapFrameEncode
*iface
)
1783 PngEncoder
*This
= impl_from_IWICBitmapFrameEncode(iface
);
1784 png_byte
**row_pointers
=NULL
;
1786 TRACE("(%p)\n", iface
);
1788 EnterCriticalSection(&This
->lock
);
1790 if (!This
->info_written
|| This
->lines_written
!= This
->height
|| This
->frame_committed
)
1792 LeaveCriticalSection(&This
->lock
);
1793 return WINCODEC_ERR_WRONGSTATE
;
1796 /* set up setjmp/longjmp error handling */
1799 LeaveCriticalSection(&This
->lock
);
1800 HeapFree(GetProcessHeap(), 0, row_pointers
);
1803 ppng_set_error_fn(This
->png_ptr
, jmpbuf
, user_error_fn
, user_warning_fn
);
1805 if (This
->interlace
)
1809 row_pointers
= HeapAlloc(GetProcessHeap(), 0, This
->height
* sizeof(png_byte
*));
1812 LeaveCriticalSection(&This
->lock
);
1813 return E_OUTOFMEMORY
;
1816 for (i
=0; i
<This
->height
; i
++)
1817 row_pointers
[i
] = This
->data
+ This
->stride
* i
;
1819 for (i
=0; i
<This
->passes
; i
++)
1820 ppng_write_rows(This
->png_ptr
, row_pointers
, This
->height
);
1823 ppng_write_end(This
->png_ptr
, This
->info_ptr
);
1825 This
->frame_committed
= TRUE
;
1827 HeapFree(GetProcessHeap(), 0, row_pointers
);
1829 LeaveCriticalSection(&This
->lock
);
1834 static HRESULT WINAPI
PngFrameEncode_GetMetadataQueryWriter(IWICBitmapFrameEncode
*iface
,
1835 IWICMetadataQueryWriter
**ppIMetadataQueryWriter
)
1837 FIXME("(%p, %p): stub\n", iface
, ppIMetadataQueryWriter
);
1841 static const IWICBitmapFrameEncodeVtbl PngEncoder_FrameVtbl
= {
1842 PngFrameEncode_QueryInterface
,
1843 PngFrameEncode_AddRef
,
1844 PngFrameEncode_Release
,
1845 PngFrameEncode_Initialize
,
1846 PngFrameEncode_SetSize
,
1847 PngFrameEncode_SetResolution
,
1848 PngFrameEncode_SetPixelFormat
,
1849 PngFrameEncode_SetColorContexts
,
1850 PngFrameEncode_SetPalette
,
1851 PngFrameEncode_SetThumbnail
,
1852 PngFrameEncode_WritePixels
,
1853 PngFrameEncode_WriteSource
,
1854 PngFrameEncode_Commit
,
1855 PngFrameEncode_GetMetadataQueryWriter
1858 static HRESULT WINAPI
PngEncoder_QueryInterface(IWICBitmapEncoder
*iface
, REFIID iid
,
1861 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
1862 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
1864 if (!ppv
) return E_INVALIDARG
;
1866 if (IsEqualIID(&IID_IUnknown
, iid
) ||
1867 IsEqualIID(&IID_IWICBitmapEncoder
, iid
))
1869 *ppv
= &This
->IWICBitmapEncoder_iface
;
1874 return E_NOINTERFACE
;
1877 IUnknown_AddRef((IUnknown
*)*ppv
);
1881 static ULONG WINAPI
PngEncoder_AddRef(IWICBitmapEncoder
*iface
)
1883 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
1884 ULONG ref
= InterlockedIncrement(&This
->ref
);
1886 TRACE("(%p) refcount=%u\n", iface
, ref
);
1891 static ULONG WINAPI
PngEncoder_Release(IWICBitmapEncoder
*iface
)
1893 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
1894 ULONG ref
= InterlockedDecrement(&This
->ref
);
1896 TRACE("(%p) refcount=%u\n", iface
, ref
);
1900 This
->lock
.DebugInfo
->Spare
[0] = 0;
1901 DeleteCriticalSection(&This
->lock
);
1903 ppng_destroy_write_struct(&This
->png_ptr
, &This
->info_ptr
);
1905 IStream_Release(This
->stream
);
1906 HeapFree(GetProcessHeap(), 0, This
->data
);
1907 HeapFree(GetProcessHeap(), 0, This
);
1913 static void user_write_data(png_structp png_ptr
, png_bytep data
, png_size_t length
)
1915 PngEncoder
*This
= ppng_get_io_ptr(png_ptr
);
1919 hr
= IStream_Write(This
->stream
, data
, length
, &byteswritten
);
1920 if (FAILED(hr
) || byteswritten
!= length
)
1922 ppng_error(png_ptr
, "failed writing data");
1926 static void user_flush(png_structp png_ptr
)
1930 static HRESULT WINAPI
PngEncoder_Initialize(IWICBitmapEncoder
*iface
,
1931 IStream
*pIStream
, WICBitmapEncoderCacheOption cacheOption
)
1933 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
1936 TRACE("(%p,%p,%u)\n", iface
, pIStream
, cacheOption
);
1938 EnterCriticalSection(&This
->lock
);
1942 LeaveCriticalSection(&This
->lock
);
1943 return WINCODEC_ERR_WRONGSTATE
;
1946 /* initialize libpng */
1947 This
->png_ptr
= ppng_create_write_struct(PNG_LIBPNG_VER_STRING
, NULL
, NULL
, NULL
);
1950 LeaveCriticalSection(&This
->lock
);
1954 This
->info_ptr
= ppng_create_info_struct(This
->png_ptr
);
1955 if (!This
->info_ptr
)
1957 ppng_destroy_write_struct(&This
->png_ptr
, NULL
);
1958 This
->png_ptr
= NULL
;
1959 LeaveCriticalSection(&This
->lock
);
1963 IStream_AddRef(pIStream
);
1964 This
->stream
= pIStream
;
1966 /* set up setjmp/longjmp error handling */
1969 ppng_destroy_write_struct(&This
->png_ptr
, &This
->info_ptr
);
1970 This
->png_ptr
= NULL
;
1971 IStream_Release(This
->stream
);
1972 This
->stream
= NULL
;
1973 LeaveCriticalSection(&This
->lock
);
1976 ppng_set_error_fn(This
->png_ptr
, jmpbuf
, user_error_fn
, user_warning_fn
);
1978 /* set up custom i/o handling */
1979 ppng_set_write_fn(This
->png_ptr
, This
, user_write_data
, user_flush
);
1981 LeaveCriticalSection(&This
->lock
);
1986 static HRESULT WINAPI
PngEncoder_GetContainerFormat(IWICBitmapEncoder
*iface
, GUID
*format
)
1988 TRACE("(%p,%p)\n", iface
, format
);
1991 return E_INVALIDARG
;
1993 memcpy(format
, &GUID_ContainerFormatPng
, sizeof(*format
));
1997 static HRESULT WINAPI
PngEncoder_GetEncoderInfo(IWICBitmapEncoder
*iface
, IWICBitmapEncoderInfo
**info
)
1999 IWICComponentInfo
*comp_info
;
2002 TRACE("%p,%p\n", iface
, info
);
2004 if (!info
) return E_INVALIDARG
;
2006 hr
= CreateComponentInfo(&CLSID_WICPngEncoder
, &comp_info
);
2009 hr
= IWICComponentInfo_QueryInterface(comp_info
, &IID_IWICBitmapEncoderInfo
, (void **)info
);
2010 IWICComponentInfo_Release(comp_info
);
2015 static HRESULT WINAPI
PngEncoder_SetColorContexts(IWICBitmapEncoder
*iface
,
2016 UINT cCount
, IWICColorContext
**ppIColorContext
)
2018 FIXME("(%p,%u,%p): stub\n", iface
, cCount
, ppIColorContext
);
2022 static HRESULT WINAPI
PngEncoder_SetPalette(IWICBitmapEncoder
*iface
, IWICPalette
*palette
)
2024 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
2027 TRACE("(%p,%p)\n", iface
, palette
);
2029 EnterCriticalSection(&This
->lock
);
2031 hr
= This
->stream
? WINCODEC_ERR_UNSUPPORTEDOPERATION
: WINCODEC_ERR_NOTINITIALIZED
;
2033 LeaveCriticalSection(&This
->lock
);
2038 static HRESULT WINAPI
PngEncoder_SetThumbnail(IWICBitmapEncoder
*iface
, IWICBitmapSource
*pIThumbnail
)
2040 TRACE("(%p,%p)\n", iface
, pIThumbnail
);
2041 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
2044 static HRESULT WINAPI
PngEncoder_SetPreview(IWICBitmapEncoder
*iface
, IWICBitmapSource
*pIPreview
)
2046 TRACE("(%p,%p)\n", iface
, pIPreview
);
2047 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
2050 static HRESULT WINAPI
PngEncoder_CreateNewFrame(IWICBitmapEncoder
*iface
,
2051 IWICBitmapFrameEncode
**ppIFrameEncode
, IPropertyBag2
**ppIEncoderOptions
)
2053 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
2055 static const PROPBAG2 opts
[2] =
2057 { PROPBAG2_TYPE_DATA
, VT_BOOL
, 0, 0, (LPOLESTR
)wszPngInterlaceOption
},
2058 { PROPBAG2_TYPE_DATA
, VT_UI1
, 0, 0, (LPOLESTR
)wszPngFilterOption
},
2061 TRACE("(%p,%p,%p)\n", iface
, ppIFrameEncode
, ppIEncoderOptions
);
2063 EnterCriticalSection(&This
->lock
);
2065 if (This
->frame_count
!= 0)
2067 LeaveCriticalSection(&This
->lock
);
2068 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
2073 LeaveCriticalSection(&This
->lock
);
2074 return WINCODEC_ERR_NOTINITIALIZED
;
2077 if (ppIEncoderOptions
)
2079 hr
= CreatePropertyBag2(opts
, ARRAY_SIZE(opts
), ppIEncoderOptions
);
2082 LeaveCriticalSection(&This
->lock
);
2087 This
->frame_count
= 1;
2089 LeaveCriticalSection(&This
->lock
);
2091 IWICBitmapEncoder_AddRef(iface
);
2092 *ppIFrameEncode
= &This
->IWICBitmapFrameEncode_iface
;
2097 static HRESULT WINAPI
PngEncoder_Commit(IWICBitmapEncoder
*iface
)
2099 PngEncoder
*This
= impl_from_IWICBitmapEncoder(iface
);
2100 TRACE("(%p)\n", iface
);
2102 EnterCriticalSection(&This
->lock
);
2104 if (!This
->frame_committed
|| This
->committed
)
2106 LeaveCriticalSection(&This
->lock
);
2107 return WINCODEC_ERR_WRONGSTATE
;
2110 This
->committed
= TRUE
;
2112 LeaveCriticalSection(&This
->lock
);
2117 static HRESULT WINAPI
PngEncoder_GetMetadataQueryWriter(IWICBitmapEncoder
*iface
,
2118 IWICMetadataQueryWriter
**ppIMetadataQueryWriter
)
2120 FIXME("(%p,%p): stub\n", iface
, ppIMetadataQueryWriter
);
2124 static const IWICBitmapEncoderVtbl PngEncoder_Vtbl
= {
2125 PngEncoder_QueryInterface
,
2128 PngEncoder_Initialize
,
2129 PngEncoder_GetContainerFormat
,
2130 PngEncoder_GetEncoderInfo
,
2131 PngEncoder_SetColorContexts
,
2132 PngEncoder_SetPalette
,
2133 PngEncoder_SetThumbnail
,
2134 PngEncoder_SetPreview
,
2135 PngEncoder_CreateNewFrame
,
2137 PngEncoder_GetMetadataQueryWriter
2140 HRESULT
PngEncoder_CreateInstance(REFIID iid
, void** ppv
)
2145 TRACE("(%s,%p)\n", debugstr_guid(iid
), ppv
);
2151 ERR("Failed writing PNG because unable to find %s\n",SONAME_LIBPNG
);
2155 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(PngEncoder
));
2156 if (!This
) return E_OUTOFMEMORY
;
2158 This
->IWICBitmapEncoder_iface
.lpVtbl
= &PngEncoder_Vtbl
;
2159 This
->IWICBitmapFrameEncode_iface
.lpVtbl
= &PngEncoder_FrameVtbl
;
2161 This
->png_ptr
= NULL
;
2162 This
->info_ptr
= NULL
;
2163 This
->stream
= NULL
;
2164 This
->frame_count
= 0;
2165 This
->frame_initialized
= FALSE
;
2166 This
->format
= NULL
;
2167 This
->info_written
= FALSE
;
2172 This
->lines_written
= 0;
2173 This
->frame_committed
= FALSE
;
2174 This
->committed
= FALSE
;
2177 InitializeCriticalSection(&This
->lock
);
2178 This
->lock
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": PngEncoder.lock");
2180 ret
= IWICBitmapEncoder_QueryInterface(&This
->IWICBitmapEncoder_iface
, iid
, ppv
);
2181 IWICBitmapEncoder_Release(&This
->IWICBitmapEncoder_iface
);
2186 #else /* !SONAME_LIBPNG */
2188 HRESULT
PngDecoder_CreateInstance(REFIID iid
, void** ppv
)
2190 ERR("Trying to load PNG picture, but PNG support is not compiled in.\n");
2194 HRESULT
PngEncoder_CreateInstance(REFIID iid
, void** ppv
)
2196 ERR("Trying to save PNG picture, but PNG support is not compiled in.\n");