Lines Matching defs:blob
48 #include "MagickCore/blob.h"
49 #include "MagickCore/blob-private.h"
4407 /* Copy chunk to color_image->blob */
4426 /* Copy IDAT header and chunk data to alpha_image->blob */
4451 /* Copy chunk data to alpha_image->blob */
7385 % supports the saving of more than one frame to the same file or blob,
12231 *blob,
12248 blob=(unsigned char *) NULL;
12276 /* Create JPEG blob, image, and image_info */
12340 /* Encode alpha as a grayscale PNG blob */
12348 " Creating PNG blob.");
12357 blob=(unsigned char *) ImageToBlob(jpeg_image_info,jpeg_image,
12367 /* Encode alpha as a grayscale JPEG blob */
12380 " Creating blob.");
12381 blob=(unsigned char *) ImageToBlob(jpeg_image_info,jpeg_image,&length,
12387 " Successfully read jpeg_image into a blob, length=%.20g.",
12635 " Write IDAT chunks from blob, length=%.20g.",(double)
12640 p=blob+8;
12679 (void) WriteBlob(image,length,blob);
12680 (void) WriteBlobMSBULong(image,crc32(crc32(0,chunk,4),blob,
12683 blob=(unsigned char *) RelinquishMagickMemory(blob);
12686 /* Encode image as a JPEG blob */
12728 " Creating blob.");
12730 blob=(unsigned char *) ImageToBlob(jpeg_image_info,jpeg_image,&length,
12736 " Successfully read jpeg_image into a blob, length=%.20g.",
12748 (void) WriteBlob(image,length,blob);
12749 (void) WriteBlobMSBULong(image,crc32(crc32(0,chunk,4),blob,(uInt) length));
12754 blob=(unsigned char *) RelinquishMagickMemory(blob);