webp_common.cpp 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /**************************************************************************/
  2. /* webp_common.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #include "webp_common.h"
  31. #include "core/config/project_settings.h"
  32. #include "core/os/os.h"
  33. #include <webp/decode.h>
  34. #include <webp/encode.h>
  35. #include <string.h>
  36. namespace WebPCommon {
  37. Vector<uint8_t> _webp_lossy_pack(const Ref<Image> &p_image, float p_quality) {
  38. ERR_FAIL_COND_V(p_image.is_null() || p_image->is_empty(), Vector<uint8_t>());
  39. return _webp_packer(p_image, CLAMP(p_quality * 100.0f, 0.0f, 100.0f), false);
  40. }
  41. Vector<uint8_t> _webp_lossless_pack(const Ref<Image> &p_image) {
  42. ERR_FAIL_COND_V(p_image.is_null() || p_image->is_empty(), Vector<uint8_t>());
  43. float compression_factor = GLOBAL_GET("rendering/textures/webp_compression/lossless_compression_factor");
  44. compression_factor = CLAMP(compression_factor, 0.0f, 100.0f);
  45. return _webp_packer(p_image, compression_factor, true);
  46. }
  47. Vector<uint8_t> _webp_packer(const Ref<Image> &p_image, float p_quality, bool p_lossless) {
  48. int compression_method = GLOBAL_GET("rendering/textures/webp_compression/compression_method");
  49. compression_method = CLAMP(compression_method, 0, 6);
  50. Ref<Image> img = p_image->duplicate();
  51. if (img->is_compressed()) {
  52. Error error = img->decompress();
  53. ERR_FAIL_COND_V_MSG(error != OK, Vector<uint8_t>(), "Couldn't decompress image.");
  54. }
  55. if (img->detect_alpha()) {
  56. img->convert(Image::FORMAT_RGBA8);
  57. } else {
  58. img->convert(Image::FORMAT_RGB8);
  59. }
  60. Size2 s(img->get_width(), img->get_height());
  61. Vector<uint8_t> data = img->get_data();
  62. const uint8_t *r = data.ptr();
  63. // we need to use the more complex API in order to access specific flags...
  64. WebPConfig config;
  65. WebPPicture pic;
  66. if (!WebPConfigInit(&config) || !WebPPictureInit(&pic)) {
  67. ERR_FAIL_V(Vector<uint8_t>());
  68. }
  69. WebPMemoryWriter wrt;
  70. if (p_lossless) {
  71. config.lossless = 1;
  72. config.exact = 1;
  73. }
  74. config.method = compression_method;
  75. config.quality = p_quality;
  76. config.use_sharp_yuv = 1;
  77. pic.use_argb = 1;
  78. pic.width = s.width;
  79. pic.height = s.height;
  80. pic.writer = WebPMemoryWrite;
  81. pic.custom_ptr = &wrt;
  82. WebPMemoryWriterInit(&wrt);
  83. bool success_import = false;
  84. if (img->get_format() == Image::FORMAT_RGB8) {
  85. success_import = WebPPictureImportRGB(&pic, r, 3 * s.width);
  86. } else {
  87. success_import = WebPPictureImportRGBA(&pic, r, 4 * s.width);
  88. }
  89. bool success_encode = false;
  90. if (success_import) {
  91. success_encode = WebPEncode(&config, &pic);
  92. }
  93. WebPPictureFree(&pic);
  94. if (!success_encode) {
  95. WebPMemoryWriterClear(&wrt);
  96. ERR_FAIL_V_MSG(Vector<uint8_t>(), "WebP packing failed.");
  97. }
  98. // copy from wrt
  99. Vector<uint8_t> dst;
  100. dst.resize(wrt.size);
  101. uint8_t *w = dst.ptrw();
  102. memcpy(w, wrt.mem, wrt.size);
  103. WebPMemoryWriterClear(&wrt);
  104. return dst;
  105. }
  106. Ref<Image> _webp_unpack(const Vector<uint8_t> &p_buffer) {
  107. int size = p_buffer.size();
  108. ERR_FAIL_COND_V(size <= 0, Ref<Image>());
  109. const uint8_t *r = p_buffer.ptr();
  110. // A WebP file uses a RIFF header, which starts with "RIFF____WEBP".
  111. ERR_FAIL_COND_V(r[0] != 'R' || r[1] != 'I' || r[2] != 'F' || r[3] != 'F' || r[8] != 'W' || r[9] != 'E' || r[10] != 'B' || r[11] != 'P', Ref<Image>());
  112. WebPBitstreamFeatures features;
  113. if (WebPGetFeatures(r, size, &features) != VP8_STATUS_OK) {
  114. ERR_FAIL_V_MSG(Ref<Image>(), "Error unpacking WebP image.");
  115. }
  116. Vector<uint8_t> dst_image;
  117. int datasize = features.width * features.height * (features.has_alpha ? 4 : 3);
  118. dst_image.resize(datasize);
  119. uint8_t *dst_w = dst_image.ptrw();
  120. bool errdec = false;
  121. if (features.has_alpha) {
  122. errdec = WebPDecodeRGBAInto(r, size, dst_w, datasize, 4 * features.width) == nullptr;
  123. } else {
  124. errdec = WebPDecodeRGBInto(r, size, dst_w, datasize, 3 * features.width) == nullptr;
  125. }
  126. ERR_FAIL_COND_V_MSG(errdec, Ref<Image>(), "Failed decoding WebP image.");
  127. Ref<Image> img = memnew(Image(features.width, features.height, 0, features.has_alpha ? Image::FORMAT_RGBA8 : Image::FORMAT_RGB8, dst_image));
  128. return img;
  129. }
  130. Error webp_load_image_from_buffer(Image *p_image, const uint8_t *p_buffer, int p_buffer_len) {
  131. ERR_FAIL_NULL_V(p_image, ERR_INVALID_PARAMETER);
  132. WebPBitstreamFeatures features;
  133. if (WebPGetFeatures(p_buffer, p_buffer_len, &features) != VP8_STATUS_OK) {
  134. ERR_FAIL_V(ERR_FILE_CORRUPT);
  135. }
  136. Vector<uint8_t> dst_image;
  137. int datasize = features.width * features.height * (features.has_alpha ? 4 : 3);
  138. dst_image.resize(datasize);
  139. uint8_t *dst_w = dst_image.ptrw();
  140. bool errdec = false;
  141. if (features.has_alpha) {
  142. errdec = WebPDecodeRGBAInto(p_buffer, p_buffer_len, dst_w, datasize, 4 * features.width) == nullptr;
  143. } else {
  144. errdec = WebPDecodeRGBInto(p_buffer, p_buffer_len, dst_w, datasize, 3 * features.width) == nullptr;
  145. }
  146. ERR_FAIL_COND_V_MSG(errdec, ERR_FILE_CORRUPT, "Failed decoding WebP image.");
  147. p_image->set_data(features.width, features.height, false, features.has_alpha ? Image::FORMAT_RGBA8 : Image::FORMAT_RGB8, dst_image);
  148. return OK;
  149. }
  150. } // namespace WebPCommon