#pragma region CPL License /* Nuclex Native Framework Copyright (C) 2002-2021 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #pragma endregion // CPL License // If the library is compiled as a DLL, this ensures symbols are exported #define NUCLEX_PIXELS_SOURCE 1 #include "ExampleWebPs.h" namespace Nuclex { namespace Pixels { namespace Storage { namespace WebP { // ------------------------------------------------------------------------------------------- // const std::uint8_t verySmallWebP[38] = { 0x52, 0x49, 0x46, 0x46, 0x1E, 0x00, 0x00, 0x00, 0x57, 0x45, 0x42, 0x50, 0x56, 0x50, 0x38, 0x4C, 0x11, 0x00, 0x00, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x00, 0x07, 0xD0, 0xFF, 0xFE, 0xF7, 0xBF, 0xFF, 0x81, 0x88, 0xE8, 0x7F, 0x00, 0x00 }; // ------------------------------------------------------------------------------------------- // const std::uint8_t losslessTestWebP[126] = { 0x52, 0x49, 0x46, 0x46, 0x76, 0x00, 0x00, 0x00, 0x57, 0x45, 0x42, 0x50, 0x56, 0x50, 0x38, 0x4C, 0x6A, 0x00, 0x00, 0x00, 0x2F, 0x10, 0x80, 0x04, 0x00, 0x27, 0x20, 0x10, 0x48, 0xDA, 0x1F, 0x7A, 0x8D, 0xF9, 0x17, 0x10, 0x14, 0xF9, 0x3F, 0xDA, 0xFC, 0x07, 0xB2, 0xA5, 0x6C, 0x60, 0x10, 0xC9, 0x6A, 0x2B, 0x8A, 0x81, 0x34, 0x05, 0x28, 0x80, 0xC4, 0xC0, 0x2F, 0xCF, 0xBF, 0xA9, 0x34, 0x0B, 0x11, 0xFD, 0x57, 0xE0, 0xB6, 0x8D, 0x92, 0x31, 0x1C, 0xBC, 0x63, 0x4C, 0x31, 0x33, 0xD1, 0x31, 0x74, 0x08, 0xD1, 0xC6, 0xC1, 0x9D, 0x8A, 0x89, 0xAF, 0x6E, 0xB8, 0xFB, 0x8A, 0xEA, 0x58, 0x8E, 0x1D, 0xFE, 0x0F, 0x00, 0xED, 0x40, 0xCE, 0x99, 0x41, 0x84, 0xC6, 0x94, 0x18, 0x0F, 0x9E, 0xC6, 0x99, 0x0F, 0x6C, 0x05, 0x2F, 0x05, 0x66, 0x71, 0x61, 0x3D, 0xB6, 0xFF, 0x9F, 0x01 }; // ------------------------------------------------------------------------------------------- // const std::uint8_t lossyTestWebP[150] = { 0x52, 0x49, 0x46, 0x46, 0x8E, 0x00, 0x00, 0x00, 0x57, 0x45, 0x42, 0x50, 0x56, 0x50, 0x38, 0x20, 0x82, 0x00, 0x00, 0x00, 0x70, 0x04, 0x00, 0x9D, 0x01, 0x2A, 0x11, 0x00, 0x13, 0x00, 0x3F, 0xCD, 0xE0, 0xE7, 0x6E, 0x3F, 0xB5, 0xAE, 0xAA, 0x28, 0x08, 0x03, 0xF0, 0x39, 0x89, 0x6C, 0x00, 0x81, 0xA0, 0x03, 0x42, 0x19, 0x09, 0x68, 0x86, 0xE5, 0x6C, 0x6E, 0xA0, 0x30, 0xC5, 0x33, 0x00, 0x40, 0x00, 0xFE, 0x16, 0xD5, 0xEF, 0x73, 0x30, 0xAC, 0x70, 0x9B, 0x4A, 0x8A, 0x0F, 0xDD, 0x7A, 0x54, 0xD7, 0x25, 0x85, 0x68, 0xBA, 0xE2, 0xF2, 0x78, 0x0D, 0x19, 0x53, 0xFA, 0x99, 0x41, 0x60, 0x8C, 0x2F, 0xAF, 0xDB, 0x87, 0xB2, 0xB5, 0x3F, 0xEB, 0x03, 0x65, 0x58, 0xD8, 0x6E, 0x46, 0x82, 0xAB, 0x70, 0x3F, 0xA1, 0xA3, 0x81, 0x0D, 0x77, 0x2C, 0x90, 0x05, 0x94, 0x07, 0xFE, 0xBE, 0x3B, 0x8A, 0xFE, 0xC1, 0x57, 0x34, 0x6B, 0x99, 0xA0, 0x19, 0x2A, 0x76, 0x78, 0x1C, 0x71, 0xB9, 0x69, 0x86, 0xD4, 0xC7, 0xE6, 0x80, 0x00, 0x00 }; // ------------------------------------------------------------------------------------------- // }}}} // namespace Nuclex::Pixels::Storage::WebP