| 62 | #include <webp/decode.h> |
| 63 | |
| 64 | static Image DecodeWebp(const uint8_t* pData, size_t size) |
| 65 | { |
| 66 | int width = 0, height = 0; |
| 67 | uint8_t* Data = WebPDecodeBGRA(pData, size, &width, &height); |
| 68 | if (!Data) |
| 69 | return Image(); |
| 70 | |
| 71 | return Image(ImageFrame(Data, WebPFree), width, height); |
| 72 | } |
| 73 | |
| 74 | #else |
| 75 |
no test coverage detected