12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef WEBP_IMAGEIO_PNGDEC_H_
- #define WEBP_IMAGEIO_PNGDEC_H_
- #include "webp/types.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- struct Metadata;
- struct WebPPicture;
- int ReadPNG(const uint8_t* const data, size_t data_size,
- struct WebPPicture* const pic,
- int keep_alpha, struct Metadata* const metadata);
- #ifdef __cplusplus
- }
- #endif
- #endif
|