cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % W W EEEEE BBBB PPPP % |
| 7 | % W W E B B P P % |
| 8 | % W W W EEE BBBB PPPP % |
| 9 | % WW WW E B B P % |
| 10 | % W W EEEEE BBBB P % |
| 11 | % % |
| 12 | % % |
| 13 | % Read/Write WebP Image Format % |
| 14 | % % |
| 15 | % Software Design % |
Cristy | cb63560 | 2017-08-02 06:59:15 -0400 | [diff] [blame] | 16 | % Cristy % |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 17 | % March 2011 % |
| 18 | % % |
| 19 | % % |
Cristy | d842011 | 2021-01-01 14:52:00 -0500 | [diff] [blame] | 20 | % Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization % |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 21 | % dedicated to making software imaging solutions freely available. % |
| 22 | % % |
| 23 | % You may not use this file except in compliance with the License. You may % |
| 24 | % obtain a copy of the License at % |
| 25 | % % |
Cristy | 83d74de | 2018-10-13 10:17:25 -0400 | [diff] [blame] | 26 | % https://imagemagick.org/script/license.php % |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 27 | % % |
| 28 | % Unless required by applicable law or agreed to in writing, software % |
| 29 | % distributed under the License is distributed on an "AS IS" BASIS, % |
| 30 | % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. % |
| 31 | % See the License for the specific language governing permissions and % |
| 32 | % limitations under the License. % |
| 33 | % % |
| 34 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 35 | % |
| 36 | % |
| 37 | */ |
| 38 | |
| 39 | /* |
| 40 | Include declarations. |
| 41 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 42 | #include "MagickCore/studio.h" |
cristy | 76ce6e1 | 2013-04-05 14:33:38 +0000 | [diff] [blame] | 43 | #include "MagickCore/artifact.h" |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 44 | #include "MagickCore/blob.h" |
| 45 | #include "MagickCore/blob-private.h" |
| 46 | #include "MagickCore/client.h" |
cristy | e65bb19 | 2013-08-01 11:22:06 +0000 | [diff] [blame] | 47 | #include "MagickCore/colorspace-private.h" |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 48 | #include "MagickCore/display.h" |
| 49 | #include "MagickCore/exception.h" |
| 50 | #include "MagickCore/exception-private.h" |
| 51 | #include "MagickCore/image.h" |
| 52 | #include "MagickCore/image-private.h" |
Cristy | 75f4730 | 2020-08-02 10:08:22 -0400 | [diff] [blame] | 53 | #include "MagickCore/layer.h" |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 54 | #include "MagickCore/list.h" |
| 55 | #include "MagickCore/magick.h" |
| 56 | #include "MagickCore/monitor.h" |
| 57 | #include "MagickCore/monitor-private.h" |
| 58 | #include "MagickCore/memory_.h" |
| 59 | #include "MagickCore/option.h" |
| 60 | #include "MagickCore/pixel-accessor.h" |
Cristy | 692b678 | 2017-11-19 12:35:18 -0500 | [diff] [blame] | 61 | #include "MagickCore/profile.h" |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 62 | #include "MagickCore/property.h" |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 63 | #include "MagickCore/quantum-private.h" |
| 64 | #include "MagickCore/static.h" |
| 65 | #include "MagickCore/string_.h" |
cristy | e71e089 | 2013-02-18 13:13:53 +0000 | [diff] [blame] | 66 | #include "MagickCore/string-private.h" |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 67 | #include "MagickCore/module.h" |
| 68 | #include "MagickCore/utility.h" |
| 69 | #include "MagickCore/xwindow.h" |
| 70 | #include "MagickCore/xwindow-private.h" |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 71 | #if defined(MAGICKCORE_WEBP_DELEGATE) |
| 72 | #include <webp/decode.h> |
| 73 | #include <webp/encode.h> |
Cristy | 692b678 | 2017-11-19 12:35:18 -0500 | [diff] [blame] | 74 | #if defined(MAGICKCORE_WEBPMUX_DELEGATE) |
| 75 | #include <webp/mux.h> |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 76 | #include <webp/demux.h> |
Cristy | 692b678 | 2017-11-19 12:35:18 -0500 | [diff] [blame] | 77 | #endif |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 78 | #endif |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 79 | |
| 80 | /* |
| 81 | Forward declarations. |
| 82 | */ |
| 83 | #if defined(MAGICKCORE_WEBP_DELEGATE) |
| 84 | static MagickBooleanType |
cristy | 018f07f | 2011-09-04 21:15:19 +0000 | [diff] [blame] | 85 | WriteWEBPImage(const ImageInfo *,Image *,ExceptionInfo *); |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 86 | #endif |
| 87 | |
cristy | dffa79e | 2013-02-20 00:57:26 +0000 | [diff] [blame] | 88 | /* |
| 89 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 90 | % % |
| 91 | % % |
| 92 | % % |
| 93 | % I s W E B P % |
| 94 | % % |
| 95 | % % |
| 96 | % % |
| 97 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 98 | % |
| 99 | % IsWEBP() returns MagickTrue if the image format type, identified by the |
| 100 | % magick string, is WebP. |
| 101 | % |
| 102 | % The format of the IsWEBP method is: |
| 103 | % |
| 104 | % MagickBooleanType IsWEBP(const unsigned char *magick,const size_t length) |
| 105 | % |
| 106 | % A description of each parameter follows: |
| 107 | % |
| 108 | % o magick: compare image format pattern against these bytes. |
| 109 | % |
| 110 | % o length: Specifies the length of the magick string. |
| 111 | % |
| 112 | */ |
| 113 | static MagickBooleanType IsWEBP(const unsigned char *magick,const size_t length) |
| 114 | { |
| 115 | if (length < 12) |
| 116 | return(MagickFalse); |
| 117 | if (LocaleNCompare((const char *) magick+8,"WEBP",4) == 0) |
| 118 | return(MagickTrue); |
| 119 | return(MagickFalse); |
| 120 | } |
| 121 | |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 122 | #if defined(MAGICKCORE_WEBP_DELEGATE) |
| 123 | /* |
| 124 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 125 | % % |
| 126 | % % |
| 127 | % % |
| 128 | % R e a d W E B P I m a g e % |
| 129 | % % |
| 130 | % % |
| 131 | % % |
| 132 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 133 | % |
| 134 | % ReadWEBPImage() reads an image in the WebP image format. |
| 135 | % |
| 136 | % The format of the ReadWEBPImage method is: |
| 137 | % |
| 138 | % Image *ReadWEBPImage(const ImageInfo *image_info, |
| 139 | % ExceptionInfo *exception) |
| 140 | % |
| 141 | % A description of each parameter follows: |
| 142 | % |
| 143 | % o image_info: the image info. |
| 144 | % |
| 145 | % o exception: return any errors or warnings in this structure. |
| 146 | % |
| 147 | */ |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 148 | |
dirk | 05d2ff7 | 2015-11-18 23:13:43 +0100 | [diff] [blame] | 149 | static inline uint32_t ReadWebPLSBWord( |
| 150 | const unsigned char *magick_restrict data) |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 151 | { |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 152 | const unsigned char |
cristy | 0b7a033 | 2013-02-23 02:28:08 +0000 | [diff] [blame] | 153 | *p; |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 154 | |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 155 | uint32_t |
cristy | 0b7a033 | 2013-02-23 02:28:08 +0000 | [diff] [blame] | 156 | value; |
| 157 | |
| 158 | p=data; |
| 159 | value=(uint32_t) (*p++); |
| 160 | value|=((uint32_t) (*p++)) << 8; |
| 161 | value|=((uint32_t) (*p++)) << 16; |
| 162 | value|=((uint32_t) (*p++)) << 24; |
| 163 | return(value); |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | static MagickBooleanType IsWEBPImageLossless(const unsigned char *stream, |
| 167 | const size_t length) |
| 168 | { |
cristy | 0b7a033 | 2013-02-23 02:28:08 +0000 | [diff] [blame] | 169 | #define VP8_CHUNK_INDEX 15 |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 170 | #define LOSSLESS_FLAG 'L' |
| 171 | #define EXTENDED_HEADER 'X' |
| 172 | #define VP8_CHUNK_HEADER "VP8" |
| 173 | #define VP8_CHUNK_HEADER_SIZE 3 |
cristy | 0b7a033 | 2013-02-23 02:28:08 +0000 | [diff] [blame] | 174 | #define RIFF_HEADER_SIZE 12 |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 175 | #define VP8X_CHUNK_SIZE 10 |
| 176 | #define TAG_SIZE 4 |
| 177 | #define CHUNK_SIZE_BYTES 4 |
| 178 | #define CHUNK_HEADER_SIZE 8 |
cristy | a230a61 | 2014-01-05 20:51:47 +0000 | [diff] [blame] | 179 | #define MAX_CHUNK_PAYLOAD (~0U-CHUNK_HEADER_SIZE-1) |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 180 | |
Cristy | 27e15b7 | 2019-11-17 16:30:19 -0500 | [diff] [blame] | 181 | size_t |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 182 | offset; |
| 183 | |
| 184 | /* |
| 185 | Read simple header. |
| 186 | */ |
Cristy | 361ed68 | 2018-03-27 20:39:27 -0400 | [diff] [blame] | 187 | if (length <= VP8_CHUNK_INDEX) |
| 188 | return(MagickFalse); |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 189 | if (stream[VP8_CHUNK_INDEX] != EXTENDED_HEADER) |
cristy | ef632a5 | 2013-12-03 11:06:33 +0000 | [diff] [blame] | 190 | return(stream[VP8_CHUNK_INDEX] == LOSSLESS_FLAG ? MagickTrue : MagickFalse); |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 191 | /* |
| 192 | Read extended header. |
| 193 | */ |
| 194 | offset=RIFF_HEADER_SIZE+TAG_SIZE+CHUNK_SIZE_BYTES+VP8X_CHUNK_SIZE; |
Alex Gaynor | e0ed80f | 2019-11-17 10:29:04 -0500 | [diff] [blame] | 195 | while (offset <= (length-TAG_SIZE-TAG_SIZE-4)) |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 196 | { |
| 197 | uint32_t |
| 198 | chunk_size, |
| 199 | chunk_size_pad; |
| 200 | |
cristy | ef97829 | 2013-02-23 02:32:06 +0000 | [diff] [blame] | 201 | chunk_size=ReadWebPLSBWord(stream+offset+TAG_SIZE); |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 202 | if (chunk_size > MAX_CHUNK_PAYLOAD) |
| 203 | break; |
| 204 | chunk_size_pad=(CHUNK_HEADER_SIZE+chunk_size+1) & ~1; |
cristy | 5def203 | 2013-06-30 17:44:08 +0000 | [diff] [blame] | 205 | if (memcmp(stream+offset,VP8_CHUNK_HEADER,VP8_CHUNK_HEADER_SIZE) == 0) |
cristy | ef97829 | 2013-02-23 02:32:06 +0000 | [diff] [blame] | 206 | return(*(stream+offset+VP8_CHUNK_HEADER_SIZE) == LOSSLESS_FLAG ? |
cristy | 8f25aa8 | 2013-02-23 02:14:37 +0000 | [diff] [blame] | 207 | MagickTrue : MagickFalse); |
| 208 | offset+=chunk_size_pad; |
| 209 | } |
| 210 | return(MagickFalse); |
| 211 | } |
| 212 | |
Cristy | 9dd0587 | 2019-10-12 10:31:46 -0400 | [diff] [blame] | 213 | static int FillBasicWEBPInfo(Image *image,const uint8_t *stream,size_t length, |
| 214 | WebPDecoderConfig *configure) |
| 215 | { |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 216 | WebPBitstreamFeatures |
| 217 | *magick_restrict features = &configure->input; |
cristy | ffa663d | 2011-03-14 00:58:51 +0000 | [diff] [blame] | 218 | |
cristy | ef632a5 | 2013-12-03 11:06:33 +0000 | [diff] [blame] | 219 | int |
| 220 | webp_status; |
| 221 | |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 222 | webp_status=WebPGetFeatures(stream,length,features); |
| 223 | |
| 224 | if (webp_status != VP8_STATUS_OK) |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 225 | return(webp_status); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 226 | |
| 227 | image->columns=(size_t) features->width; |
| 228 | image->rows=(size_t) features->height; |
| 229 | image->depth=8; |
| 230 | image->alpha_trait=features->has_alpha != 0 ? BlendPixelTrait : |
| 231 | UndefinedPixelTrait; |
| 232 | |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 233 | return(webp_status); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 234 | } |
| 235 | |
Cristy | 9dd0587 | 2019-10-12 10:31:46 -0400 | [diff] [blame] | 236 | static int ReadSingleWEBPImage(Image *image,const uint8_t *stream, |
jace.k (김준성) | 7b743df | 2019-12-17 14:57:46 +0900 | [diff] [blame] | 237 | size_t length,WebPDecoderConfig *configure,ExceptionInfo *exception, |
| 238 | MagickBooleanType is_first) |
Cristy | 9dd0587 | 2019-10-12 10:31:46 -0400 | [diff] [blame] | 239 | { |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 240 | int |
| 241 | webp_status; |
cristy | ffa663d | 2011-03-14 00:58:51 +0000 | [diff] [blame] | 242 | |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 243 | unsigned char |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 244 | *p; |
| 245 | |
jace.k (김준성) | 7b743df | 2019-12-17 14:57:46 +0900 | [diff] [blame] | 246 | size_t |
| 247 | canvas_width, |
| 248 | canvas_height, |
| 249 | image_width, |
| 250 | image_height; |
| 251 | |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 252 | ssize_t |
jace.k (김준성) | 7b743df | 2019-12-17 14:57:46 +0900 | [diff] [blame] | 253 | x_offset, |
| 254 | y_offset, |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 255 | y; |
| 256 | |
cristy | af29b62 | 2013-02-18 15:06:48 +0000 | [diff] [blame] | 257 | WebPDecBuffer |
Dirk Lemstra | 89d15bb | 2020-12-28 09:56:41 +0100 | [diff] [blame] | 258 | *magick_restrict webp_image; |
cristy | af29b62 | 2013-02-18 15:06:48 +0000 | [diff] [blame] | 259 | |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 260 | MagickBooleanType |
| 261 | status; |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 262 | |
Dirk Lemstra | 89d15bb | 2020-12-28 09:56:41 +0100 | [diff] [blame] | 263 | webp_image=&configure->output; |
jace.k (김준성) | c835fda | 2019-12-18 08:38:52 +0900 | [diff] [blame] | 264 | if (is_first) |
| 265 | { |
| 266 | canvas_width=image->columns; |
| 267 | canvas_height=image->rows; |
| 268 | x_offset=image->page.x; |
| 269 | y_offset=image->page.y; |
| 270 | image->page.x=0; |
| 271 | image->page.y=0; |
| 272 | } |
| 273 | else |
| 274 | { |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 275 | canvas_width=0; |
| 276 | canvas_height=0; |
jace.k (김준성) | c835fda | 2019-12-18 08:38:52 +0900 | [diff] [blame] | 277 | x_offset=0; |
| 278 | y_offset=0; |
| 279 | } |
jace.k (김준성) | 7b743df | 2019-12-17 14:57:46 +0900 | [diff] [blame] | 280 | webp_status=FillBasicWEBPInfo(image,stream,length,configure); |
| 281 | image_width=image->columns; |
| 282 | image_height=image->rows; |
| 283 | if (is_first) |
| 284 | { |
| 285 | image->columns=canvas_width; |
| 286 | image->rows=canvas_height; |
| 287 | } |
| 288 | |
| 289 | if (webp_status != VP8_STATUS_OK) |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 290 | return(webp_status); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 291 | |
| 292 | if (IsWEBPImageLossless(stream,length) != MagickFalse) |
| 293 | image->quality=100; |
| 294 | |
jace.k (김준성) | 7b743df | 2019-12-17 14:57:46 +0900 | [diff] [blame] | 295 | webp_status=WebPDecode(stream,length,configure); |
| 296 | if (webp_status != VP8_STATUS_OK) |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 297 | return(webp_status); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 298 | |
cristy | b22ab41 | 2014-04-06 15:09:41 +0000 | [diff] [blame] | 299 | p=(unsigned char *) webp_image->u.RGBA.rgba; |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 300 | for (y=0; y < (ssize_t) image->rows; y++) |
| 301 | { |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 302 | Quantum |
cristy | af29b62 | 2013-02-18 15:06:48 +0000 | [diff] [blame] | 303 | *q; |
| 304 | |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 305 | ssize_t |
cristy | af29b62 | 2013-02-18 15:06:48 +0000 | [diff] [blame] | 306 | x; |
| 307 | |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 308 | q=QueueAuthenticPixels(image,0,y,image->columns,1,exception); |
cristy | acd2ed2 | 2011-08-30 01:44:23 +0000 | [diff] [blame] | 309 | if (q == (Quantum *) NULL) |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 310 | break; |
| 311 | for (x=0; x < (ssize_t) image->columns; x++) |
| 312 | { |
Cristy | fcaccf4 | 2020-12-22 16:20:58 -0500 | [diff] [blame] | 313 | if ((x >= x_offset && x < (ssize_t) (x_offset+image_width)) && |
| 314 | (y >= y_offset && y < (ssize_t) (y_offset+image_height))) |
jace.k (김준성) | c835fda | 2019-12-18 08:38:52 +0900 | [diff] [blame] | 315 | { |
| 316 | SetPixelRed(image,ScaleCharToQuantum(*p++),q); |
| 317 | SetPixelGreen(image,ScaleCharToQuantum(*p++),q); |
| 318 | SetPixelBlue(image,ScaleCharToQuantum(*p++),q); |
| 319 | SetPixelAlpha(image,ScaleCharToQuantum(*p++),q); |
| 320 | } |
| 321 | else |
| 322 | { |
| 323 | SetPixelRed(image,0,q); |
| 324 | SetPixelGreen(image,0,q); |
| 325 | SetPixelBlue(image,0,q); |
| 326 | SetPixelAlpha(image,0,q); |
| 327 | } |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 328 | q+=GetPixelChannels(image); |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 329 | } |
| 330 | if (SyncAuthenticPixels(image,exception) == MagickFalse) |
| 331 | break; |
| 332 | status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y, |
| 333 | image->rows); |
| 334 | if (status == MagickFalse) |
| 335 | break; |
| 336 | } |
cristy | af29b62 | 2013-02-18 15:06:48 +0000 | [diff] [blame] | 337 | WebPFreeDecBuffer(webp_image); |
Cristy | 692b678 | 2017-11-19 12:35:18 -0500 | [diff] [blame] | 338 | #if defined(MAGICKCORE_WEBPMUX_DELEGATE) |
| 339 | { |
| 340 | StringInfo |
| 341 | *profile; |
| 342 | |
| 343 | uint32_t |
| 344 | webp_flags = 0; |
| 345 | |
| 346 | WebPData |
Cristy | 5e87ab2 | 2018-06-24 16:26:06 -0400 | [diff] [blame] | 347 | chunk, |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 348 | content; |
Cristy | 692b678 | 2017-11-19 12:35:18 -0500 | [diff] [blame] | 349 | |
| 350 | WebPMux |
| 351 | *mux; |
| 352 | |
| 353 | /* |
Cristy | 5fa0d44 | 2020-09-22 14:50:00 -0400 | [diff] [blame] | 354 | Extract any profiles: |
| 355 | https://developers.google.com/speed/webp/docs/container-api. |
Cristy | 692b678 | 2017-11-19 12:35:18 -0500 | [diff] [blame] | 356 | */ |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 357 | content.bytes=stream; |
| 358 | content.size=length; |
Cristy | 692b678 | 2017-11-19 12:35:18 -0500 | [diff] [blame] | 359 | mux=WebPMuxCreate(&content,0); |
Cristy | 5e87ab2 | 2018-06-24 16:26:06 -0400 | [diff] [blame] | 360 | (void) memset(&chunk,0,sizeof(chunk)); |
Cristy | 692b678 | 2017-11-19 12:35:18 -0500 | [diff] [blame] | 361 | WebPMuxGetFeatures(mux,&webp_flags); |
| 362 | if (webp_flags & ICCP_FLAG) |
| 363 | { |
| 364 | WebPMuxGetChunk(mux,"ICCP",&chunk); |
| 365 | profile=BlobToStringInfo(chunk.bytes,chunk.size); |
| 366 | if (profile != (StringInfo *) NULL) |
| 367 | { |
| 368 | SetImageProfile(image,"ICC",profile,exception); |
| 369 | profile=DestroyStringInfo(profile); |
| 370 | } |
| 371 | } |
| 372 | if (webp_flags & EXIF_FLAG) |
| 373 | { |
| 374 | WebPMuxGetChunk(mux,"EXIF",&chunk); |
| 375 | profile=BlobToStringInfo(chunk.bytes,chunk.size); |
| 376 | if (profile != (StringInfo *) NULL) |
| 377 | { |
| 378 | SetImageProfile(image,"EXIF",profile,exception); |
| 379 | profile=DestroyStringInfo(profile); |
| 380 | } |
| 381 | } |
| 382 | if (webp_flags & XMP_FLAG) |
| 383 | { |
| 384 | WebPMuxGetChunk(mux,"XMP",&chunk); |
| 385 | profile=BlobToStringInfo(chunk.bytes,chunk.size); |
| 386 | if (profile != (StringInfo *) NULL) |
| 387 | { |
| 388 | SetImageProfile(image,"XMP",profile,exception); |
| 389 | profile=DestroyStringInfo(profile); |
| 390 | } |
| 391 | } |
| 392 | WebPMuxDelete(mux); |
| 393 | } |
| 394 | #endif |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 395 | return(webp_status); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | #if defined(MAGICKCORE_WEBPMUX_DELEGATE) |
Cristy | 7caee07 | 2019-11-17 10:54:58 -0500 | [diff] [blame] | 399 | static int ReadAnimatedWEBPImage(const ImageInfo *image_info,Image *image, |
| 400 | uint8_t *stream,size_t length,WebPDecoderConfig *configure, |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 401 | ExceptionInfo *exception) |
| 402 | { |
| 403 | Image |
| 404 | *original_image; |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 405 | |
| 406 | int |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 407 | image_count, |
| 408 | webp_status; |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 409 | |
jace.k (김준성) | 7b743df | 2019-12-17 14:57:46 +0900 | [diff] [blame] | 410 | size_t |
| 411 | canvas_width, |
| 412 | canvas_height; |
| 413 | |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 414 | WebPData |
| 415 | data; |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 416 | |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 417 | WebPDemuxer |
| 418 | *demux; |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 419 | |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 420 | WebPIterator |
| 421 | iter; |
| 422 | |
| 423 | image_count=0; |
| 424 | webp_status=0; |
| 425 | original_image=image; |
jace.k (김준성) | 7b743df | 2019-12-17 14:57:46 +0900 | [diff] [blame] | 426 | webp_status=FillBasicWEBPInfo(image,stream,length,configure); |
| 427 | canvas_width=image->columns; |
| 428 | canvas_height=image->rows; |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 429 | data.bytes=stream; |
| 430 | data.size=length; |
Cristy | 0e421ed | 2020-12-01 00:58:17 +0000 | [diff] [blame] | 431 | { |
| 432 | WebPMux |
| 433 | *mux; |
| 434 | |
| 435 | WebPMuxAnimParams |
| 436 | params; |
| 437 | |
| 438 | WebPMuxError |
| 439 | status; |
| 440 | |
| 441 | mux=WebPMuxCreate(&data,0); |
| 442 | status=WebPMuxGetAnimationParams(mux,¶ms); |
| 443 | if (status >= 0) |
| 444 | image->iterations=params.loop_count; |
| 445 | WebPMuxDelete(mux); |
| 446 | } |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 447 | demux=WebPDemux(&data); |
Cristy | fab704b | 2020-08-03 18:46:38 -0400 | [diff] [blame] | 448 | if (WebPDemuxGetFrame(demux,1,&iter)) |
| 449 | { |
| 450 | do |
| 451 | { |
| 452 | if (image_count != 0) |
| 453 | { |
| 454 | AcquireNextImage(image_info,image,exception); |
| 455 | if (GetNextImageInList(image) == (Image *) NULL) |
| 456 | break; |
| 457 | image=SyncNextImageInList(image); |
| 458 | CloneImageProperties(image,original_image); |
| 459 | image->page.x=iter.x_offset; |
| 460 | image->page.y=iter.y_offset; |
| 461 | webp_status=ReadSingleWEBPImage(image,iter.fragment.bytes, |
| 462 | iter.fragment.size,configure,exception,MagickFalse); |
| 463 | } |
| 464 | else |
| 465 | { |
| 466 | image->page.x=iter.x_offset; |
| 467 | image->page.y=iter.y_offset; |
| 468 | webp_status=ReadSingleWEBPImage(image,iter.fragment.bytes, |
| 469 | iter.fragment.size,configure,exception,MagickTrue); |
| 470 | } |
| 471 | if (webp_status != VP8_STATUS_OK) |
| 472 | break; |
| 473 | image->page.width=canvas_width; |
| 474 | image->page.height=canvas_height; |
| 475 | image->ticks_per_second=100; |
| 476 | image->delay=iter.duration/10; |
| 477 | image->dispose=NoneDispose; |
| 478 | if (iter.dispose_method == WEBP_MUX_DISPOSE_BACKGROUND) |
| 479 | image->dispose=BackgroundDispose; |
| 480 | (void) SetImageProperty(image,"webp:mux-blend", |
| 481 | "AtopPreviousAlphaBlend",exception); |
| 482 | if (iter.blend_method == WEBP_MUX_BLEND) |
| 483 | (void) SetImageProperty(image,"webp:mux-blend", |
| 484 | "AtopBackgroundAlphaBlend",exception); |
| 485 | image_count++; |
| 486 | } while (WebPDemuxNextFrame(&iter)); |
| 487 | WebPDemuxReleaseIterator(&iter); |
| 488 | } |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 489 | WebPDemuxDelete(demux); |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 490 | return(webp_status); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 491 | } |
| 492 | #endif |
| 493 | |
| 494 | static Image *ReadWEBPImage(const ImageInfo *image_info, |
| 495 | ExceptionInfo *exception) |
| 496 | { |
| 497 | #define ThrowWEBPException(severity,tag) \ |
| 498 | { \ |
| 499 | if (stream != (unsigned char *) NULL) \ |
| 500 | stream=(unsigned char*) RelinquishMagickMemory(stream); \ |
| 501 | if (webp_image != (WebPDecBuffer *) NULL) \ |
| 502 | WebPFreeDecBuffer(webp_image); \ |
| 503 | ThrowReaderException(severity,tag); \ |
| 504 | } |
| 505 | |
| 506 | Image |
| 507 | *image; |
| 508 | |
| 509 | int |
| 510 | webp_status; |
| 511 | |
| 512 | MagickBooleanType |
| 513 | status; |
| 514 | |
| 515 | size_t |
| 516 | length; |
| 517 | |
| 518 | ssize_t |
| 519 | count; |
| 520 | |
| 521 | unsigned char |
| 522 | header[12], |
| 523 | *stream; |
| 524 | |
| 525 | WebPDecoderConfig |
| 526 | configure; |
| 527 | |
| 528 | WebPDecBuffer |
| 529 | *magick_restrict webp_image = &configure.output; |
| 530 | |
| 531 | /* |
| 532 | Open image file. |
| 533 | */ |
| 534 | assert(image_info != (const ImageInfo *) NULL); |
| 535 | assert(image_info->signature == MagickCoreSignature); |
| 536 | if (image_info->debug != MagickFalse) |
| 537 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 538 | image_info->filename); |
| 539 | assert(exception != (ExceptionInfo *) NULL); |
| 540 | assert(exception->signature == MagickCoreSignature); |
| 541 | image=AcquireImage(image_info,exception); |
| 542 | status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); |
| 543 | if (status == MagickFalse) |
| 544 | { |
| 545 | image=DestroyImageList(image); |
| 546 | return((Image *) NULL); |
| 547 | } |
| 548 | stream=(unsigned char *) NULL; |
| 549 | if (WebPInitDecoderConfig(&configure) == 0) |
| 550 | ThrowReaderException(ResourceLimitError,"UnableToDecodeImageFile"); |
| 551 | webp_image->colorspace=MODE_RGBA; |
| 552 | count=ReadBlob(image,12,header); |
| 553 | if (count != 12) |
| 554 | ThrowWEBPException(CorruptImageError,"InsufficientImageDataInFile"); |
| 555 | status=IsWEBP(header,count); |
| 556 | if (status == MagickFalse) |
| 557 | ThrowWEBPException(CorruptImageError,"CorruptImage"); |
| 558 | length=(size_t) (ReadWebPLSBWord(header+4)+8); |
| 559 | if (length < 12) |
| 560 | ThrowWEBPException(CorruptImageError,"CorruptImage"); |
| 561 | if (length > GetBlobSize(image)) |
| 562 | ThrowWEBPException(CorruptImageError,"InsufficientImageDataInFile"); |
| 563 | stream=(unsigned char *) AcquireQuantumMemory(length,sizeof(*stream)); |
| 564 | if (stream == (unsigned char *) NULL) |
| 565 | ThrowWEBPException(ResourceLimitError,"MemoryAllocationFailed"); |
| 566 | (void) memcpy(stream,header,12); |
| 567 | count=ReadBlob(image,length-12,stream+12); |
| 568 | if (count != (ssize_t) (length-12)) |
| 569 | ThrowWEBPException(CorruptImageError,"InsufficientImageDataInFile"); |
| 570 | |
| 571 | webp_status=FillBasicWEBPInfo(image,stream,length,&configure); |
| 572 | if (webp_status == VP8_STATUS_OK) { |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 573 | if (configure.input.has_animation) { |
| 574 | #if defined(MAGICKCORE_WEBPMUX_DELEGATE) |
Cristy | 7caee07 | 2019-11-17 10:54:58 -0500 | [diff] [blame] | 575 | webp_status=ReadAnimatedWEBPImage(image_info,image,stream,length, |
| 576 | &configure,exception); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 577 | #else |
Alex Gaynor | d58edd3 | 2019-09-30 07:41:01 -0400 | [diff] [blame] | 578 | webp_status=VP8_STATUS_UNSUPPORTED_FEATURE; |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 579 | #endif |
| 580 | } else { |
jace.k (김준성) | 7b743df | 2019-12-17 14:57:46 +0900 | [diff] [blame] | 581 | webp_status=ReadSingleWEBPImage(image,stream,length,&configure,exception,MagickFalse); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 582 | } |
| 583 | } |
| 584 | |
| 585 | if (webp_status != VP8_STATUS_OK) |
| 586 | switch (webp_status) |
| 587 | { |
| 588 | case VP8_STATUS_OUT_OF_MEMORY: |
| 589 | { |
| 590 | ThrowWEBPException(ResourceLimitError,"MemoryAllocationFailed"); |
| 591 | break; |
| 592 | } |
| 593 | case VP8_STATUS_INVALID_PARAM: |
| 594 | { |
| 595 | ThrowWEBPException(CorruptImageError,"invalid parameter"); |
| 596 | break; |
| 597 | } |
| 598 | case VP8_STATUS_BITSTREAM_ERROR: |
| 599 | { |
| 600 | ThrowWEBPException(CorruptImageError,"CorruptImage"); |
| 601 | break; |
| 602 | } |
| 603 | case VP8_STATUS_UNSUPPORTED_FEATURE: |
| 604 | { |
| 605 | ThrowWEBPException(CoderError,"DataEncodingSchemeIsNotSupported"); |
| 606 | break; |
| 607 | } |
| 608 | case VP8_STATUS_SUSPENDED: |
| 609 | { |
| 610 | ThrowWEBPException(CorruptImageError,"decoder suspended"); |
| 611 | break; |
| 612 | } |
| 613 | case VP8_STATUS_USER_ABORT: |
| 614 | { |
| 615 | ThrowWEBPException(CorruptImageError,"user abort"); |
| 616 | break; |
| 617 | } |
| 618 | case VP8_STATUS_NOT_ENOUGH_DATA: |
| 619 | { |
| 620 | ThrowWEBPException(CorruptImageError,"InsufficientImageDataInFile"); |
| 621 | break; |
| 622 | } |
| 623 | default: |
| 624 | ThrowWEBPException(CorruptImageError,"CorruptImage"); |
| 625 | } |
| 626 | |
cristy | e71e089 | 2013-02-18 13:13:53 +0000 | [diff] [blame] | 627 | stream=(unsigned char*) RelinquishMagickMemory(stream); |
zhangji | fe757a2 | 2017-02-17 18:34:45 +0800 | [diff] [blame] | 628 | (void) CloseBlob(image); |
cristy | ffa663d | 2011-03-14 00:58:51 +0000 | [diff] [blame] | 629 | return(image); |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 630 | } |
| 631 | #endif |
| 632 | |
| 633 | /* |
| 634 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 635 | % % |
| 636 | % % |
| 637 | % % |
| 638 | % R e g i s t e r W E B P I m a g e % |
| 639 | % % |
| 640 | % % |
| 641 | % % |
| 642 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 643 | % |
| 644 | % RegisterWEBPImage() adds attributes for the WebP image format to |
| 645 | % the list of supported formats. The attributes include the image format |
| 646 | % tag, a method to read and/or write the format, whether the format |
| 647 | % supports the saving of more than one frame to the same file or blob, |
| 648 | % whether the format supports native in-memory I/O, and a brief |
| 649 | % description of the format. |
| 650 | % |
| 651 | % The format of the RegisterWEBPImage method is: |
| 652 | % |
| 653 | % size_t RegisterWEBPImage(void) |
| 654 | % |
| 655 | */ |
| 656 | ModuleExport size_t RegisterWEBPImage(void) |
| 657 | { |
cristy | af29b62 | 2013-02-18 15:06:48 +0000 | [diff] [blame] | 658 | char |
cristy | 151b66d | 2015-04-15 10:50:31 +0000 | [diff] [blame] | 659 | version[MagickPathExtent]; |
cristy | af29b62 | 2013-02-18 15:06:48 +0000 | [diff] [blame] | 660 | |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 661 | MagickInfo |
| 662 | *entry; |
| 663 | |
cristy | af29b62 | 2013-02-18 15:06:48 +0000 | [diff] [blame] | 664 | *version='\0'; |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 665 | entry=AcquireMagickInfo("WEBP","WEBP","WebP Image Format"); |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 666 | #if defined(MAGICKCORE_WEBP_DELEGATE) |
| 667 | entry->decoder=(DecodeImageHandler *) ReadWEBPImage; |
| 668 | entry->encoder=(EncodeImageHandler *) WriteWEBPImage; |
cristy | 151b66d | 2015-04-15 10:50:31 +0000 | [diff] [blame] | 669 | (void) FormatLocaleString(version,MagickPathExtent,"libwebp %d.%d.%d [%04X]", |
よや | 5ce163f | 2019-02-10 22:42:15 +0900 | [diff] [blame] | 670 | (WebPGetEncoderVersion() >> 16) & 0xff, |
| 671 | (WebPGetEncoderVersion() >> 8) & 0xff, |
| 672 | (WebPGetEncoderVersion() >> 0) & 0xff,WEBP_ENCODER_ABI_VERSION); |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 673 | #endif |
dirk | 8648daf | 2015-09-14 22:26:43 +0200 | [diff] [blame] | 674 | entry->mime_type=ConstantString("image/webp"); |
Cristy | cb63560 | 2017-08-02 06:59:15 -0400 | [diff] [blame] | 675 | entry->flags|=CoderDecoderSeekableStreamFlag; |
Dirk Lemstra | 47f757a | 2020-01-10 14:58:40 +0100 | [diff] [blame] | 676 | #if !defined(MAGICKCORE_WEBPMUX_DELEGATE) |
| 677 | entry->flags^=CoderAdjoinFlag; |
Dirk Lemstra | 2424fb2 | 2020-01-10 14:55:54 +0100 | [diff] [blame] | 678 | #endif |
cristy | dffa79e | 2013-02-20 00:57:26 +0000 | [diff] [blame] | 679 | entry->magick=(IsImageFormatHandler *) IsWEBP; |
cristy | af29b62 | 2013-02-18 15:06:48 +0000 | [diff] [blame] | 680 | if (*version != '\0') |
| 681 | entry->version=ConstantString(version); |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 682 | (void) RegisterMagickInfo(entry); |
| 683 | return(MagickImageCoderSignature); |
| 684 | } |
| 685 | |
| 686 | /* |
| 687 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 688 | % % |
| 689 | % % |
| 690 | % % |
| 691 | % U n r e g i s t e r W E B P I m a g e % |
| 692 | % % |
| 693 | % % |
| 694 | % % |
| 695 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 696 | % |
| 697 | % UnregisterWEBPImage() removes format registrations made by the WebP module |
| 698 | % from the list of supported formats. |
| 699 | % |
| 700 | % The format of the UnregisterWEBPImage method is: |
| 701 | % |
| 702 | % UnregisterWEBPImage(void) |
| 703 | % |
| 704 | */ |
| 705 | ModuleExport void UnregisterWEBPImage(void) |
| 706 | { |
| 707 | (void) UnregisterMagickInfo("WEBP"); |
| 708 | } |
| 709 | #if defined(MAGICKCORE_WEBP_DELEGATE) |
| 710 | |
| 711 | /* |
| 712 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 713 | % % |
| 714 | % % |
| 715 | % % |
| 716 | % W r i t e W E B P I m a g e % |
| 717 | % % |
| 718 | % % |
| 719 | % % |
| 720 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 721 | % |
| 722 | % WriteWEBPImage() writes an image in the WebP image format. |
| 723 | % |
| 724 | % The format of the WriteWEBPImage method is: |
| 725 | % |
| 726 | % MagickBooleanType WriteWEBPImage(const ImageInfo *image_info, |
| 727 | % Image *image) |
| 728 | % |
| 729 | % A description of each parameter follows. |
| 730 | % |
| 731 | % o image_info: the image info. |
| 732 | % |
| 733 | % o image: The image. |
| 734 | % |
| 735 | */ |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 736 | |
よや | 5ce163f | 2019-02-10 22:42:15 +0900 | [diff] [blame] | 737 | #if WEBP_ENCODER_ABI_VERSION >= 0x0100 |
cristy | b22ab41 | 2014-04-06 15:09:41 +0000 | [diff] [blame] | 738 | static int WebPEncodeProgress(int percent,const WebPPicture* picture) |
| 739 | { |
cristy | 88bf7c1 | 2014-04-06 15:21:42 +0000 | [diff] [blame] | 740 | #define EncodeImageTag "Encode/Image" |
| 741 | |
cristy | b22ab41 | 2014-04-06 15:09:41 +0000 | [diff] [blame] | 742 | Image |
| 743 | *image; |
| 744 | |
| 745 | MagickBooleanType |
| 746 | status; |
| 747 | |
Cristy | cf4ad30 | 2017-12-23 08:32:30 -0500 | [diff] [blame] | 748 | image=(Image *) picture->user_data; |
cristy | 88bf7c1 | 2014-04-06 15:21:42 +0000 | [diff] [blame] | 749 | status=SetImageProgress(image,EncodeImageTag,percent-1,100); |
cristy | b22ab41 | 2014-04-06 15:09:41 +0000 | [diff] [blame] | 750 | return(status == MagickFalse ? 0 : 1); |
| 751 | } |
| 752 | #endif |
| 753 | |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 754 | static const char * WebPErrorCodeMessage(WebPEncodingError error_code) |
| 755 | { |
| 756 | switch (error_code) |
| 757 | { |
| 758 | case VP8_ENC_OK: |
| 759 | return NULL; |
| 760 | case VP8_ENC_ERROR_OUT_OF_MEMORY: |
| 761 | return "out of memory"; |
| 762 | case VP8_ENC_ERROR_BITSTREAM_OUT_OF_MEMORY: |
| 763 | return "bitstream out of memory"; |
| 764 | case VP8_ENC_ERROR_NULL_PARAMETER: |
| 765 | return "NULL parameter"; |
| 766 | case VP8_ENC_ERROR_INVALID_CONFIGURATION: |
| 767 | return "invalid configuration"; |
| 768 | case VP8_ENC_ERROR_BAD_DIMENSION: |
| 769 | return "bad dimension"; |
| 770 | case VP8_ENC_ERROR_PARTITION0_OVERFLOW: |
| 771 | return "partition 0 overflow (> 512K)"; |
| 772 | case VP8_ENC_ERROR_PARTITION_OVERFLOW: |
| 773 | return "partition overflow (> 16M)"; |
| 774 | case VP8_ENC_ERROR_BAD_WRITE: |
| 775 | return "bad write"; |
| 776 | case VP8_ENC_ERROR_FILE_TOO_BIG: |
| 777 | return "file too big (> 4GB)"; |
| 778 | #if WEBP_ENCODER_ABI_VERSION >= 0x0100 |
| 779 | case VP8_ENC_ERROR_USER_ABORT: |
| 780 | return "user abort"; |
| 781 | case VP8_ENC_ERROR_LAST: |
| 782 | return "error last"; |
| 783 | #endif |
| 784 | } |
| 785 | return "unknown exception"; |
| 786 | } |
| 787 | |
| 788 | static MagickBooleanType WriteSingleWEBPPicture(const ImageInfo *image_info, |
| 789 | Image *image,WebPConfig *configure,WebPPicture *picture,ExceptionInfo *exception) |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 790 | { |
| 791 | MagickBooleanType |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 792 | status; |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 793 | |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 794 | uint32_t |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 795 | *magick_restrict q; |
| 796 | |
| 797 | ssize_t |
| 798 | y; |
| 799 | |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 800 | MemoryInfo |
| 801 | *pixel_info; |
| 802 | |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 803 | #if WEBP_ENCODER_ABI_VERSION >= 0x0100 |
| 804 | picture->progress_hook=WebPEncodeProgress; |
| 805 | picture->user_data=(void *) image; |
| 806 | #endif |
| 807 | picture->width=(int) image->columns; |
| 808 | picture->height=(int) image->rows; |
| 809 | picture->argb_stride=(int) image->columns; |
| 810 | picture->use_argb=1; |
| 811 | |
| 812 | /* |
| 813 | Allocate memory for pixels. |
| 814 | */ |
| 815 | (void) TransformImageColorspace(image,sRGBColorspace,exception); |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 816 | pixel_info=AcquireVirtualMemory(image->columns,image->rows* |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 817 | sizeof(*(picture->argb))); |
| 818 | |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 819 | if (pixel_info == (MemoryInfo *) NULL) |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 820 | ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed"); |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 821 | picture->argb=(uint32_t *) GetVirtualMemoryBlob(pixel_info); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 822 | /* |
| 823 | Convert image to WebP raster pixels. |
| 824 | */ |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 825 | status=MagickFalse; |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 826 | q=picture->argb; |
| 827 | for (y=0; y < (ssize_t) image->rows; y++) |
| 828 | { |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 829 | const Quantum |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 830 | *magick_restrict p; |
| 831 | |
Cristy | f2dc1dd | 2020-12-28 13:59:26 -0500 | [diff] [blame] | 832 | ssize_t |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 833 | x; |
| 834 | |
| 835 | p=GetVirtualPixels(image,0,y,image->columns,1,exception); |
| 836 | if (p == (const Quantum *) NULL) |
| 837 | break; |
| 838 | for (x=0; x < (ssize_t) image->columns; x++) |
| 839 | { |
| 840 | *q++=(uint32_t) (image->alpha_trait != UndefinedPixelTrait ? (uint32_t) |
| 841 | ScaleQuantumToChar(GetPixelAlpha(image,p)) << 24 : 0xff000000) | |
| 842 | ((uint32_t) ScaleQuantumToChar(GetPixelRed(image,p)) << 16) | |
| 843 | ((uint32_t) ScaleQuantumToChar(GetPixelGreen(image,p)) << 8) | |
| 844 | ((uint32_t) ScaleQuantumToChar(GetPixelBlue(image,p))); |
| 845 | p+=GetPixelChannels(image); |
| 846 | } |
| 847 | status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y, |
| 848 | image->rows); |
| 849 | if (status == MagickFalse) |
| 850 | break; |
| 851 | } |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 852 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 853 | if (status != MagickFalse) |
| 854 | status=(MagickBooleanType) WebPEncode(configure, picture); |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 855 | |
| 856 | RelinquishVirtualMemory(pixel_info); |
| 857 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 858 | if (status == MagickFalse) |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 859 | (void) ThrowMagickException(exception,GetMagickModule(),CorruptImageError, |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 860 | WebPErrorCodeMessage(picture->error_code),"`%s'", |
| 861 | image->filename); |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 862 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 863 | return(status); |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 864 | } |
| 865 | |
| 866 | static MagickBooleanType WriteSingleWEBPImage(const ImageInfo *image_info, |
Dirk Lemstra | d219762 | 2020-12-28 15:57:43 +0100 | [diff] [blame] | 867 | Image *image,WebPConfig *configure,WebPMemoryWriter *writer, |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 868 | ExceptionInfo *exception) |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 869 | { |
| 870 | MagickBooleanType |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 871 | status; |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 872 | |
| 873 | WebPPicture |
| 874 | picture; |
| 875 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 876 | if (WebPPictureInit(&picture) == 0) |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 877 | ThrowWriterException(ResourceLimitError,"UnableToEncodeImageFile"); |
| 878 | |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 879 | picture.writer=WebPMemoryWrite; |
Dirk Lemstra | d219762 | 2020-12-28 15:57:43 +0100 | [diff] [blame] | 880 | picture.custom_ptr=writer; |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 881 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 882 | status=WriteSingleWEBPPicture(image_info,image,configure,&picture,exception); |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 883 | WebPPictureFree(&picture); |
| 884 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 885 | return(status); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | #if defined(MAGICKCORE_WEBPMUX_DELEGATE) |
| 889 | static MagickBooleanType WriteAnimatedWEBPImage(const ImageInfo *image_info, |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 890 | Image *image,WebPConfig *configure,WebPData *webp_data, |
| 891 | ExceptionInfo *exception) |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 892 | { |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 893 | Image |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 894 | *first_image; |
| 895 | |
Cristy | 7caee07 | 2019-11-17 10:54:58 -0500 | [diff] [blame] | 896 | size_t |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 897 | effective_delta, |
| 898 | frame_timestamp; |
Cristy | 7caee07 | 2019-11-17 10:54:58 -0500 | [diff] [blame] | 899 | |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 900 | WebPAnimEncoder |
| 901 | *enc; |
| 902 | |
| 903 | WebPAnimEncoderOptions |
| 904 | enc_options; |
| 905 | |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 906 | WebPPicture |
| 907 | picture; |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 908 | |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 909 | MagickBooleanType |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 910 | status; |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 911 | |
| 912 | first_image=CoalesceImages(image,exception); |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 913 | if (first_image == (Image *) NULL) |
| 914 | return(MagickFalse); |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 915 | image=first_image; |
| 916 | effective_delta=0; |
| 917 | frame_timestamp=0; |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 918 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 919 | (void) WebPAnimEncoderOptionsInit(&enc_options); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 920 | if (image_info->verbose) |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 921 | enc_options.verbose=1; |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 922 | enc=WebPAnimEncoderNew((int) image->page.width,(int) image->page.height, |
| 923 | &enc_options); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 924 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 925 | status=MagickTrue; |
Cristy | 6f84d89 | 2019-10-29 21:32:11 -0400 | [diff] [blame] | 926 | while (image != NULL) |
Dirk Lemstra | abb9179 | 2019-10-26 13:23:52 +0200 | [diff] [blame] | 927 | { |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 928 | status=(MagickBooleanType) WebPPictureInit(&picture); |
| 929 | if (status == MagickFalse) |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 930 | { |
| 931 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 932 | ResourceLimitError,"UnableToEncodeImageFile","`%s'",image->filename); |
| 933 | break; |
| 934 | } |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 935 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 936 | status=WriteSingleWEBPPicture(image_info,image,configure,&picture, |
| 937 | exception); |
| 938 | if (status == MagickFalse) |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 939 | break; |
| 940 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 941 | status=(MagickBooleanType) WebPAnimEncoderAdd(enc,&picture, |
| 942 | (int) frame_timestamp,configure); |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 943 | WebPPictureFree(&picture); |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 944 | if (status == MagickFalse) |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 945 | { |
| 946 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 947 | CoderError,WebPAnimEncoderGetError(enc),"`%s'",image->filename); |
| 948 | break; |
| 949 | } |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 950 | |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 951 | effective_delta=image->delay*1000*PerceptibleReciprocal( |
| 952 | image->ticks_per_second); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 953 | if (effective_delta < 10) |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 954 | effective_delta=100; /* Consistent with gif2webp */ |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 955 | frame_timestamp+=effective_delta; |
| 956 | |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 957 | image=GetNextImageInList(image); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 958 | } |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 959 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 960 | if (status != MagickFalse) |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 961 | { |
| 962 | // add last null frame and assemble picture. |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 963 | status=(MagickBooleanType) WebPAnimEncoderAdd(enc,(WebPPicture *) NULL, |
| 964 | (int) frame_timestamp,configure); |
| 965 | if (status != MagickFalse) |
| 966 | status=(MagickBooleanType) WebPAnimEncoderAssemble(enc,webp_data); |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 967 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 968 | if (status == MagickFalse) |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 969 | (void) ThrowMagickException(exception,GetMagickModule(), |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 970 | CoderError,WebPAnimEncoderGetError(enc),"`%s'", |
| 971 | first_image->filename); |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 972 | } |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 973 | |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 974 | WebPAnimEncoderDelete(enc); |
| 975 | DestroyImageList(first_image); |
tomwei7 | 2d2e014 | 2020-12-27 23:52:46 +0800 | [diff] [blame] | 976 | return(status); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 977 | } |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 978 | |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 979 | static MagickBooleanType WriteWEBPImageProfile(Image *image, |
| 980 | WebPData *webp_data,ExceptionInfo *exception) |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 981 | { |
| 982 | const StringInfo |
| 983 | *icc_profile, |
| 984 | *exif_profile, |
| 985 | *xmp_profile; |
| 986 | |
| 987 | WebPData |
| 988 | chunk; |
| 989 | |
| 990 | WebPMux |
| 991 | *mux; |
| 992 | |
| 993 | WebPMuxError |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 994 | mux_error; |
| 995 | |
| 996 | WebPMuxAnimParams |
| 997 | new_params; |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 998 | |
| 999 | icc_profile=GetImageProfile(image,"ICC"); |
| 1000 | exif_profile=GetImageProfile(image,"EXIF"); |
| 1001 | xmp_profile=GetImageProfile(image,"XMP"); |
| 1002 | |
| 1003 | if (icc_profile == (StringInfo *) NULL |
| 1004 | && exif_profile == (StringInfo *) NULL |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1005 | && xmp_profile == (StringInfo *) NULL |
| 1006 | && image->iterations == 0) |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 1007 | return(MagickTrue); |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 1008 | |
| 1009 | mux=WebPMuxCreate(webp_data, 1); |
| 1010 | WebPDataClear(webp_data); |
| 1011 | |
| 1012 | if (mux == NULL) |
| 1013 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 1014 | ResourceLimitError,"UnableToEncodeImageFile","`%s'",image->filename); |
| 1015 | |
| 1016 | // Clean up returned data |
| 1017 | memset(webp_data, 0, sizeof(*webp_data)); |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1018 | mux_error=WEBP_MUX_OK; |
| 1019 | if (image->iterations > 0) |
| 1020 | { |
| 1021 | mux_error=WebPMuxGetAnimationParams(mux, &new_params); |
| 1022 | /* |
| 1023 | If there is only 1 frame webp_data will be created by WriteSingleWEBPImage |
| 1024 | and WebPMuxGetAnimationParams will return WEBP_MUX_NOT_FOUND |
| 1025 | */ |
| 1026 | if (mux_error == WEBP_MUX_NOT_FOUND) |
| 1027 | mux_error=WEBP_MUX_OK; |
| 1028 | else |
| 1029 | if (mux_error == WEBP_MUX_OK) |
| 1030 | { |
| 1031 | new_params.loop_count=MagickMin((int) image->iterations,65535); |
| 1032 | mux_error=WebPMuxSetAnimationParams(mux, &new_params); |
| 1033 | } |
| 1034 | } |
| 1035 | if ((icc_profile != (StringInfo *) NULL) && (mux_error == WEBP_MUX_OK)) |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 1036 | { |
| 1037 | chunk.bytes=GetStringInfoDatum(icc_profile); |
| 1038 | chunk.size=GetStringInfoLength(icc_profile); |
| 1039 | mux_error=WebPMuxSetChunk(mux,"ICCP",&chunk,0); |
| 1040 | } |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1041 | if ((exif_profile != (StringInfo *) NULL) && (mux_error == WEBP_MUX_OK)) |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 1042 | { |
| 1043 | chunk.bytes=GetStringInfoDatum(exif_profile); |
| 1044 | chunk.size=GetStringInfoLength(exif_profile); |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1045 | if ((chunk.size >= 6) && |
| 1046 | (chunk.bytes[0] == 'E') && (chunk.bytes[1] == 'x') && |
| 1047 | (chunk.bytes[2] == 'i') && (chunk.bytes[3] == 'f') && |
| 1048 | (chunk.bytes[4] == '\0') && (chunk.bytes[5] == '\0')) |
| 1049 | { |
| 1050 | chunk.bytes=GetStringInfoDatum(exif_profile)+6; |
| 1051 | chunk.size-=6; |
| 1052 | } |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 1053 | mux_error=WebPMuxSetChunk(mux,"EXIF",&chunk,0); |
| 1054 | } |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1055 | if ((xmp_profile != (StringInfo *) NULL) && (mux_error == WEBP_MUX_OK)) |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 1056 | { |
| 1057 | chunk.bytes=GetStringInfoDatum(xmp_profile); |
| 1058 | chunk.size=GetStringInfoLength(xmp_profile); |
| 1059 | mux_error=WebPMuxSetChunk(mux,"XMP",&chunk,0); |
| 1060 | } |
| 1061 | if (mux_error == WEBP_MUX_OK) |
| 1062 | mux_error=WebPMuxAssemble(mux,webp_data); |
| 1063 | WebPMuxDelete(mux); |
| 1064 | |
| 1065 | if (mux_error != WEBP_MUX_OK) |
| 1066 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 1067 | ResourceLimitError,"UnableToEncodeImageFile","`%s'",image->filename); |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 1068 | return(MagickTrue); |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 1069 | } |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 1070 | #endif |
| 1071 | |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1072 | static inline void SetBooleanOption(const ImageInfo *image_info, |
| 1073 | const char *option,int *setting) |
| 1074 | { |
| 1075 | const char |
| 1076 | *value; |
| 1077 | |
| 1078 | value=GetImageOption(image_info,option); |
| 1079 | if (value != (char *) NULL) |
| 1080 | *setting=(int) ParseCommandOption(MagickBooleanOptions,MagickFalse,value); |
| 1081 | } |
| 1082 | |
Dirk Lemstra | 4e056d6 | 2020-12-30 11:09:32 +0100 | [diff] [blame] | 1083 | static inline void SetIntegerOption(const ImageInfo *image_info, |
| 1084 | const char *option,int *setting) |
| 1085 | { |
| 1086 | const char |
| 1087 | *value; |
| 1088 | |
| 1089 | value=GetImageOption(image_info,option); |
| 1090 | if (value != (const char *) NULL) |
| 1091 | *setting=StringToInteger(value); |
| 1092 | } |
| 1093 | |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 1094 | static MagickBooleanType WriteWEBPImage(const ImageInfo *image_info, |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 1095 | Image *image,ExceptionInfo * exception) |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 1096 | { |
cristy | e71e089 | 2013-02-18 13:13:53 +0000 | [diff] [blame] | 1097 | const char |
| 1098 | *value; |
| 1099 | |
cristy | ffa663d | 2011-03-14 00:58:51 +0000 | [diff] [blame] | 1100 | MagickBooleanType |
| 1101 | status; |
| 1102 | |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 1103 | WebPConfig |
| 1104 | configure; |
| 1105 | |
Dirk Lemstra | d219762 | 2020-12-28 15:57:43 +0100 | [diff] [blame] | 1106 | WebPMemoryWriter |
| 1107 | writer; |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 1108 | |
cristy | ffa663d | 2011-03-14 00:58:51 +0000 | [diff] [blame] | 1109 | /* |
| 1110 | Open output image file. |
| 1111 | */ |
| 1112 | assert(image_info != (const ImageInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 1113 | assert(image_info->signature == MagickCoreSignature); |
cristy | ffa663d | 2011-03-14 00:58:51 +0000 | [diff] [blame] | 1114 | assert(image != (Image *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 1115 | assert(image->signature == MagickCoreSignature); |
cristy | ffa663d | 2011-03-14 00:58:51 +0000 | [diff] [blame] | 1116 | if (image->debug != MagickFalse) |
| 1117 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
cristy | 5779030 | 2013-02-18 18:19:08 +0000 | [diff] [blame] | 1118 | if ((image->columns > 16383UL) || (image->rows > 16383UL)) |
cristy | e4d08fd | 2012-04-26 17:29:08 +0000 | [diff] [blame] | 1119 | ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit"); |
cristy | c82a27b | 2011-10-21 01:07:16 +0000 | [diff] [blame] | 1120 | status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception); |
cristy | ffa663d | 2011-03-14 00:58:51 +0000 | [diff] [blame] | 1121 | if (status == MagickFalse) |
| 1122 | return(status); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 1123 | if (WebPConfigInit(&configure) == 0) |
| 1124 | ThrowWriterException(ResourceLimitError,"UnableToEncodeImageFile"); |
cristy | 35c63c7 | 2012-10-23 14:40:54 +0000 | [diff] [blame] | 1125 | if (image->quality != UndefinedCompressionQuality) |
| 1126 | configure.quality=(float) image->quality; |
cristy | 7ab1ba8 | 2014-11-13 21:37:21 +0000 | [diff] [blame] | 1127 | if (image->quality >= 100) |
| 1128 | configure.lossless=1; |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1129 | SetBooleanOption(image_info,"webp:lossless",&configure.lossless); |
cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 1130 | value=GetImageOption(image_info,"webp:image-hint"); |
cristy | e71e089 | 2013-02-18 13:13:53 +0000 | [diff] [blame] | 1131 | if (value != (char *) NULL) |
cristy | d6f2cc4 | 2013-02-18 17:24:19 +0000 | [diff] [blame] | 1132 | { |
cristy | 9bb4d7a | 2014-04-20 01:41:32 +0000 | [diff] [blame] | 1133 | if (LocaleCompare(value,"default") == 0) |
| 1134 | configure.image_hint=WEBP_HINT_DEFAULT; |
cristy | 547fe7f | 2013-02-18 17:27:13 +0000 | [diff] [blame] | 1135 | if (LocaleCompare(value,"photo") == 0) |
cristy | d6f2cc4 | 2013-02-18 17:24:19 +0000 | [diff] [blame] | 1136 | configure.image_hint=WEBP_HINT_PHOTO; |
cristy | 547fe7f | 2013-02-18 17:27:13 +0000 | [diff] [blame] | 1137 | if (LocaleCompare(value,"picture") == 0) |
cristy | d6f2cc4 | 2013-02-18 17:24:19 +0000 | [diff] [blame] | 1138 | configure.image_hint=WEBP_HINT_PICTURE; |
よや | 5ce163f | 2019-02-10 22:42:15 +0900 | [diff] [blame] | 1139 | #if WEBP_ENCODER_ABI_VERSION >= 0x0200 |
cristy | 9bb4d7a | 2014-04-20 01:41:32 +0000 | [diff] [blame] | 1140 | if (LocaleCompare(value,"graph") == 0) |
| 1141 | configure.image_hint=WEBP_HINT_GRAPH; |
| 1142 | #endif |
cristy | d6f2cc4 | 2013-02-18 17:24:19 +0000 | [diff] [blame] | 1143 | } |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1144 | SetBooleanOption(image_info,"webp:auto-filter",&configure.autofilter); |
Dirk Lemstra | 4e056d6 | 2020-12-30 11:09:32 +0100 | [diff] [blame] | 1145 | value=GetImageOption(image_info,"webp:target-psnr"); |
cristy | e71e089 | 2013-02-18 13:13:53 +0000 | [diff] [blame] | 1146 | if (value != (char *) NULL) |
Dirk Lemstra | 4e056d6 | 2020-12-30 11:09:32 +0100 | [diff] [blame] | 1147 | configure.target_PSNR=(float) StringToDouble(value,(char **) NULL); |
| 1148 | SetIntegerOption(image_info,"webp:alpha-compression", |
| 1149 | &configure.alpha_compression); |
| 1150 | SetIntegerOption(image_info,"webp:alpha-filtering", |
| 1151 | &configure.alpha_filtering); |
| 1152 | SetIntegerOption(image_info,"webp:alpha-quality", |
| 1153 | &configure.alpha_quality); |
| 1154 | SetIntegerOption(image_info,"webp:filter-strength", |
| 1155 | &configure.filter_strength); |
| 1156 | SetIntegerOption(image_info,"webp:filter-sharpness", |
| 1157 | &configure.filter_sharpness); |
| 1158 | SetIntegerOption(image_info,"webp:filter-type",&configure.filter_type); |
| 1159 | SetIntegerOption(image_info,"webp:method",&configure.method); |
| 1160 | SetIntegerOption(image_info,"webp:partitions",&configure.partitions); |
| 1161 | SetIntegerOption(image_info,"webp:partition-limit", |
| 1162 | &configure.partition_limit); |
| 1163 | SetIntegerOption(image_info,"webp:pass",&configure.pass); |
| 1164 | SetIntegerOption(image_info,"webp:preprocessing",&configure.preprocessing); |
| 1165 | SetIntegerOption(image_info,"webp:segments",&configure.segments); |
| 1166 | SetIntegerOption(image_info,"webp:show-compressed", |
| 1167 | &configure.show_compressed); |
| 1168 | SetIntegerOption(image_info,"webp:sns-strength",&configure.sns_strength); |
| 1169 | SetIntegerOption(image_info,"webp:target-size",&configure.target_size); |
よや | 5ce163f | 2019-02-10 22:42:15 +0900 | [diff] [blame] | 1170 | #if WEBP_ENCODER_ABI_VERSION >= 0x0201 |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1171 | SetBooleanOption(image_info,"webp:emulate-jpeg-size", |
| 1172 | &configure.emulate_jpeg_size); |
| 1173 | SetBooleanOption(image_info,"webp:low-memory",&configure.low_memory); |
Dirk Lemstra | 4e056d6 | 2020-12-30 11:09:32 +0100 | [diff] [blame] | 1174 | SetIntegerOption(image_info,"webp:thread-level",&configure.thread_level); |
cristy | 9bb4d7a | 2014-04-20 01:41:32 +0000 | [diff] [blame] | 1175 | #endif |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1176 | #if WEBP_ENCODER_ABI_VERSION >= 0x0209 |
| 1177 | SetBooleanOption(image_info,"webp:exact",&configure.exact); |
| 1178 | #endif |
よや | 5ce163f | 2019-02-10 22:42:15 +0900 | [diff] [blame] | 1179 | #if WEBP_ENCODER_ABI_VERSION >= 0x020e |
Dirk Lemstra | 0b770a9 | 2020-12-30 11:14:36 +0100 | [diff] [blame] | 1180 | SetIntegerOption(image_info,"webp:near-lossless",&configure.near_lossless); |
Elliott Hughes | 5d41fba | 2021-04-12 16:36:42 -0700 | [diff] [blame] | 1181 | SetBooleanOption(image_info,"webp:use-sharp-yuv",&configure.use_sharp_yuv); |
Cristy | aa5bcab | 2019-01-31 07:38:50 -0500 | [diff] [blame] | 1182 | #endif |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 1183 | if (WebPValidateConfig(&configure) == 0) |
| 1184 | ThrowWriterException(ResourceLimitError,"UnableToEncodeImageFile"); |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 1185 | #if defined(MAGICKCORE_WEBPMUX_DELEGATE) |
Dirk Lemstra | d219762 | 2020-12-28 15:57:43 +0100 | [diff] [blame] | 1186 | { |
| 1187 | WebPData |
| 1188 | webp_data; |
Cristy | 46d4fb5 | 2019-09-29 20:32:20 -0400 | [diff] [blame] | 1189 | |
Dirk Lemstra | d219762 | 2020-12-28 15:57:43 +0100 | [diff] [blame] | 1190 | memset(&webp_data,0,sizeof(webp_data)); |
| 1191 | if ((image_info->adjoin != MagickFalse) && |
| 1192 | (GetPreviousImageInList(image) == (Image *) NULL) && |
| 1193 | (GetNextImageInList(image) != (Image *) NULL)) |
| 1194 | status=WriteAnimatedWEBPImage(image_info,image,&configure,&webp_data, |
| 1195 | exception); |
| 1196 | else |
| 1197 | { |
| 1198 | WebPMemoryWriterInit(&writer); |
| 1199 | status=WriteSingleWEBPImage(image_info,image,&configure,&writer, |
| 1200 | exception); |
| 1201 | if (status == MagickFalse) |
| 1202 | WebPMemoryWriterClear(&writer); |
| 1203 | else |
| 1204 | { |
| 1205 | webp_data.bytes=writer.mem; |
| 1206 | webp_data.size=writer.size; |
| 1207 | } |
| 1208 | } |
| 1209 | if (status != MagickFalse) |
| 1210 | status=WriteWEBPImageProfile(image,&webp_data,exception); |
| 1211 | if (status != MagickFalse) |
| 1212 | (void) WriteBlob(image,webp_data.size,webp_data.bytes); |
| 1213 | WebPDataClear(&webp_data); |
| 1214 | } |
| 1215 | #else |
| 1216 | WebPMemoryWriterInit(&writer); |
| 1217 | status=WriteSingleWEBPImage(image_info,image,&configure,&writer, |
| 1218 | exception); |
Dirk Lemstra | acc0682 | 2020-12-28 10:26:17 +0100 | [diff] [blame] | 1219 | if (status != MagickFalse) |
Dirk Lemstra | d219762 | 2020-12-28 15:57:43 +0100 | [diff] [blame] | 1220 | (void) WriteBlob(image,writer.size,writer.mem); |
| 1221 | WebPMemoryWriterClear(&writer); |
| 1222 | #endif |
cristy | 644040e | 2011-03-14 17:31:59 +0000 | [diff] [blame] | 1223 | (void) CloseBlob(image); |
tomwei7 | 17e7643 | 2020-11-26 23:34:47 +0800 | [diff] [blame] | 1224 | return(status); |
cristy | b186075 | 2011-03-14 00:27:46 +0000 | [diff] [blame] | 1225 | } |
| 1226 | #endif |