2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
6 % W W EEEEE BBBB PPPP %
8 % W W W EEE BBBB PPPP %
13 % Read/Write WebP Image Format %
20 % Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization %
21 % dedicated to making software imaging solutions freely available. %
23 % You may not use this file except in compliance with the License. You may %
24 % obtain a copy of the License at %
26 % http://www.imagemagick.org/script/license.php %
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. %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
42 #include "magick/studio.h"
43 #include "magick/blob.h"
44 #include "magick/blob-private.h"
45 #include "magick/client.h"
46 #include "magick/display.h"
47 #include "magick/exception.h"
48 #include "magick/exception-private.h"
49 #include "magick/image.h"
50 #include "magick/image-private.h"
51 #include "magick/list.h"
52 #include "magick/magick.h"
53 #include "magick/monitor.h"
54 #include "magick/monitor-private.h"
55 #include "magick/memory_.h"
56 #include "magick/option.h"
57 #include "magick/quantum-private.h"
58 #include "magick/static.h"
59 #include "magick/string_.h"
60 #include "magick/module.h"
61 #include "magick/utility.h"
62 #include "magick/xwindow.h"
63 #include "magick/xwindow-private.h"
64 #if defined(MAGICKCORE_WEBP_DELEGATE)
65 #include <webp/decode.h>
66 #include <webp/encode.h>
72 #if defined(MAGICKCORE_WEBP_DELEGATE)
73 static MagickBooleanType
74 WriteWEBPImage(const ImageInfo *,Image *);
77 #if defined(MAGICKCORE_WEBP_DELEGATE)
79 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
83 % R e a d W E B P I m a g e %
87 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
89 % ReadWEBPImage() reads an image in the WebP image format.
91 % The format of the ReadWEBPImage method is:
93 % Image *ReadWEBPImage(const ImageInfo *image_info,
94 % ExceptionInfo *exception)
96 % A description of each parameter follows:
98 % o image_info: the image info.
100 % o exception: return any errors or warnings in this structure.
103 static Image *ReadWEBPImage(const ImageInfo *image_info,
104 ExceptionInfo *exception)
122 register unsigned char
139 assert(image_info != (const ImageInfo *) NULL);
140 assert(image_info->signature == MagickSignature);
141 if (image_info->debug != MagickFalse)
142 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
143 image_info->filename);
144 assert(exception != (ExceptionInfo *) NULL);
145 assert(exception->signature == MagickSignature);
146 image=AcquireImage(image_info);
147 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
148 if (status == MagickFalse)
150 image=DestroyImageList(image);
151 return((Image *) NULL);
153 length=(size_t) GetBlobSize(image);
154 stream=(unsigned char *) AcquireQuantumMemory(length,sizeof(*stream));
155 if (stream == (unsigned char *) NULL)
156 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
157 count=ReadBlob(image,length,stream);
158 if (count != (ssize_t) length)
159 ThrowReaderException(CorruptImageError,"InsufficientImageDataInFile");
160 pixels=(unsigned char *) WebPDecodeRGBA(stream,length,&width,&height);
161 if (pixels == (unsigned char *) NULL)
162 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
163 image->columns=(size_t) width;
164 image->rows=(size_t) height;
166 for (y=0; y < (ssize_t) image->rows; y++)
168 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
169 if (q == (PixelPacket *) NULL)
171 for (x=0; x < (ssize_t) image->columns; x++)
173 q->red=ScaleCharToQuantum(*p++);
174 q->green=ScaleCharToQuantum(*p++);
175 q->blue=ScaleCharToQuantum(*p++);
176 q->opacity=(Quantum) (QuantumRange-ScaleCharToQuantum(*p++));
177 if (q->opacity != OpaqueOpacity)
178 image->matte=MagickTrue;
181 if (SyncAuthenticPixels(image,exception) == MagickFalse)
183 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
185 if (status == MagickFalse)
189 pixels=(unsigned char *) NULL;
195 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
199 % R e g i s t e r W E B P I m a g e %
203 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
205 % RegisterWEBPImage() adds attributes for the WebP image format to
206 % the list of supported formats. The attributes include the image format
207 % tag, a method to read and/or write the format, whether the format
208 % supports the saving of more than one frame to the same file or blob,
209 % whether the format supports native in-memory I/O, and a brief
210 % description of the format.
212 % The format of the RegisterWEBPImage method is:
214 % size_t RegisterWEBPImage(void)
217 ModuleExport size_t RegisterWEBPImage(void)
222 entry=SetMagickInfo("WEBP");
223 #if defined(MAGICKCORE_WEBP_DELEGATE)
224 entry->decoder=(DecodeImageHandler *) ReadWEBPImage;
225 entry->encoder=(EncodeImageHandler *) WriteWEBPImage;
227 entry->description=ConstantString("WebP Image Format");
228 entry->adjoin=MagickFalse;
229 entry->module=ConstantString("WEBP");
230 (void) RegisterMagickInfo(entry);
231 return(MagickImageCoderSignature);
235 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
239 % U n r e g i s t e r W E B P I m a g e %
243 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
245 % UnregisterWEBPImage() removes format registrations made by the WebP module
246 % from the list of supported formats.
248 % The format of the UnregisterWEBPImage method is:
250 % UnregisterWEBPImage(void)
253 ModuleExport void UnregisterWEBPImage(void)
255 (void) UnregisterMagickInfo("WEBP");
257 #if defined(MAGICKCORE_WEBP_DELEGATE)
260 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
264 % W r i t e W E B P I m a g e %
268 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
270 % WriteWEBPImage() writes an image in the WebP image format.
272 % The format of the WriteWEBPImage method is:
274 % MagickBooleanType WriteWEBPImage(const ImageInfo *image_info,
277 % A description of each parameter follows.
279 % o image_info: the image info.
281 % o image: The image.
285 static int WebPWriter(const unsigned char *stream,size_t length,
286 const WebPPicture *const picture)
291 image=(Image *) picture->custom_ptr;
292 return(length != 0 ? (int) WriteBlob(image,length,stream) : 1);
295 static MagickBooleanType WriteWEBPImage(const ImageInfo *image_info,
304 register const PixelPacket
310 register unsigned char
329 Open output image file.
331 assert(image_info != (const ImageInfo *) NULL);
332 assert(image_info->signature == MagickSignature);
333 assert(image != (Image *) NULL);
334 assert(image->signature == MagickSignature);
335 if (image->debug != MagickFalse)
336 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
337 status=OpenBlob(image_info,image,WriteBinaryBlobMode,&image->exception);
338 if (status == MagickFalse)
340 if (WebPPictureInit(&picture) == 0)
341 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
342 picture.writer=WebPWriter;
343 picture.custom_ptr=(void *) image;
344 picture.stats=(&statistics);
345 picture.width=(int) image->columns;
346 picture.height=(int) image->rows;
347 if (image->quality != UndefinedCompressionQuality)
348 configure.quality=(float) image->quality;
349 if (WebPConfigInit(&configure) == 0)
350 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
352 Future: set custom configuration parameters here.
354 if (WebPValidateConfig(&configure) == 0)
355 ThrowWriterException(ResourceLimitError,"UnableToEncodeImageFile");
357 Allocate memory for pixels.
359 pixels=(unsigned char *) AcquireQuantumMemory(image->columns,
360 (image->matte != MagickFalse ? 4 : 3)*image->rows*sizeof(*pixels));
361 if (pixels == (unsigned char *) NULL)
362 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
364 Convert image to WebP raster pixels.
367 for (y=0; y < (ssize_t) image->rows; y++)
369 p=GetVirtualPixels(image,0,y,image->columns,1,&image->exception);
370 if (p == (PixelPacket *) NULL)
372 for (x=0; x < (ssize_t) image->columns; x++)
374 *q++=ScaleQuantumToChar(GetRedPixelComponent(p));
375 *q++=ScaleQuantumToChar(GetGreenPixelComponent(p));
376 *q++=ScaleQuantumToChar(GetBluePixelComponent(p));
377 if (image->matte != MagickFalse)
378 *q++=ScaleQuantumToChar((Quantum) (QuantumRange-
379 (image->matte != MagickFalse ? p->opacity : OpaqueOpacity)));
382 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
384 if (status == MagickFalse)
387 if (image->matte == MagickFalse)
388 webp_status=WebPPictureImportRGB(&picture,pixels,3*picture.width);
390 webp_status=WebPPictureImportRGBA(&picture,pixels,4*picture.width);
391 pixels=(unsigned char *) RelinquishMagickMemory(pixels);
392 webp_status=WebPEncode(&configure,&picture);
393 (void) CloseBlob(image);
394 return(webp_status == 0 ? MagickFalse : MagickTrue);