webp_common.cpp 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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 <webp/decode.h>
  33. #include <webp/encode.h>
  34. namespace WebPCommon {
  35. Vector<uint8_t> _webp_lossy_pack(const Ref<Image> &p_image, float p_quality) {
  36. ERR_FAIL_COND_V(p_image.is_null() || p_image->is_empty(), Vector<uint8_t>());
  37. return _webp_packer(p_image, CLAMP(p_quality * 100.0f, 0.0f, 100.0f), false);
  38. }
  39. Vector<uint8_t> _webp_lossless_pack(const Ref<Image> &p_image) {
  40. ERR_FAIL_COND_V(p_image.is_null() || p_image->is_empty(), Vector<uint8_t>());
  41. float compression_factor = GLOBAL_GET("rendering/textures/webp_compression/lossless_compression_factor");
  42. compression_factor = CLAMP(compression_factor, 0.0f, 100.0f);
  43. return _webp_packer(p_image, compression_factor, true);
  44. }
  45. Vector<uint8_t> _webp_packer(const Ref<Image> &p_image, float p_quality, bool p_lossless) {
  46. int compression_method = GLOBAL_GET("rendering/textures/webp_compression/compression_method");
  47. compression_method = CLAMP(compression_method, 0, 6);
  48. Ref<Image> img = p_image->duplicate();
  49. if (img->is_compressed()) {
  50. Error error = img->decompress();
  51. ERR_FAIL_COND_V_MSG(error != OK, Vector<uint8_t>(), "Couldn't decompress image.");
  52. }
  53. if (img->detect_alpha()) {
  54. img->convert(Image::FORMAT_RGBA8);
  55. } else {
  56. img->convert(Image::FORMAT_RGB8);
  57. }
  58. Size2 s(img->get_width(), img->get_height());
  59. Vector<uint8_t> data = img->get_data();
  60. const uint8_t *r = data.ptr();
  61. // we need to use the more complex API in order to access specific flags...
  62. WebPConfig config;
  63. WebPPicture pic;
  64. if (!WebPConfigInit(&config) || !WebPPictureInit(&pic)) {
  65. ERR_FAIL_V(Vector<uint8_t>());
  66. }
  67. WebPMemoryWriter wrt;
  68. if (p_lossless) {
  69. config.lossless = 1;
  70. config.exact = 1;
  71. }
  72. config.method = compression_method;
  73. config.quality = p_quality;
  74. config.use_sharp_yuv = 1;
  75. pic.use_argb = 1;
  76. pic.width = s.width;
  77. pic.height = s.height;
  78. pic.writer = WebPMemoryWrite;
  79. pic.custom_ptr = &wrt;
  80. WebPMemoryWriterInit(&wrt);
  81. bool success_import = false;
  82. if (img->get_format() == Image::FORMAT_RGB8) {
  83. success_import = WebPPictureImportRGB(&pic, r, 3 * s.width);
  84. } else {
  85. success_import = WebPPictureImportRGBA(&pic, r, 4 * s.width);
  86. }
  87. bool success_encode = false;
  88. if (success_import) {
  89. success_encode = WebPEncode(&config, &pic);
  90. }
  91. WebPPictureFree(&pic);
  92. if (!success_encode) {
  93. WebPMemoryWriterClear(&wrt);
  94. ERR_FAIL_V_MSG(Vector<uint8_t>(), "WebP packing failed.");
  95. }
  96. // copy from wrt
  97. Vector<uint8_t> dst;
  98. dst.resize(wrt.size);
  99. uint8_t *w = dst.ptrw();
  100. memcpy(w, wrt.mem, wrt.size);
  101. WebPMemoryWriterClear(&wrt);
  102. return dst;
  103. }
  104. Ref<Image> _webp_unpack(const Vector<uint8_t> &p_buffer) {
  105. int size = p_buffer.size();
  106. ERR_FAIL_COND_V(size <= 0, Ref<Image>());
  107. const uint8_t *r = p_buffer.ptr();
  108. // A WebP file uses a RIFF header, which starts with "RIFF____WEBP".
  109. 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>());
  110. WebPBitstreamFeatures features;
  111. if (WebPGetFeatures(r, size, &features) != VP8_STATUS_OK) {
  112. ERR_FAIL_V_MSG(Ref<Image>(), "Error unpacking WebP image.");
  113. }
  114. Vector<uint8_t> dst_image;
  115. int datasize = features.width * features.height * (features.has_alpha ? 4 : 3);
  116. dst_image.resize(datasize);
  117. uint8_t *dst_w = dst_image.ptrw();
  118. bool errdec = false;
  119. if (features.has_alpha) {
  120. errdec = WebPDecodeRGBAInto(r, size, dst_w, datasize, 4 * features.width) == nullptr;
  121. } else {
  122. errdec = WebPDecodeRGBInto(r, size, dst_w, datasize, 3 * features.width) == nullptr;
  123. }
  124. ERR_FAIL_COND_V_MSG(errdec, Ref<Image>(), "Failed decoding WebP image.");
  125. Ref<Image> img = memnew(Image(features.width, features.height, false, features.has_alpha ? Image::FORMAT_RGBA8 : Image::FORMAT_RGB8, dst_image));
  126. return img;
  127. }
  128. Error webp_load_image_from_buffer(Image *p_image, const uint8_t *p_buffer, int p_buffer_len) {
  129. ERR_FAIL_NULL_V(p_image, ERR_INVALID_PARAMETER);
  130. WebPBitstreamFeatures features;
  131. if (WebPGetFeatures(p_buffer, p_buffer_len, &features) != VP8_STATUS_OK) {
  132. ERR_FAIL_V(ERR_FILE_CORRUPT);
  133. }
  134. Vector<uint8_t> dst_image;
  135. int datasize = features.width * features.height * (features.has_alpha ? 4 : 3);
  136. dst_image.resize(datasize);
  137. uint8_t *dst_w = dst_image.ptrw();
  138. bool errdec = false;
  139. if (features.has_alpha) {
  140. errdec = WebPDecodeRGBAInto(p_buffer, p_buffer_len, dst_w, datasize, 4 * features.width) == nullptr;
  141. } else {
  142. errdec = WebPDecodeRGBInto(p_buffer, p_buffer_len, dst_w, datasize, 3 * features.width) == nullptr;
  143. }
  144. ERR_FAIL_COND_V_MSG(errdec, ERR_FILE_CORRUPT, "Failed decoding WebP image.");
  145. p_image->set_data(features.width, features.height, false, features.has_alpha ? Image::FORMAT_RGBA8 : Image::FORMAT_RGB8, dst_image);
  146. return OK;
  147. }
  148. } // namespace WebPCommon