Lines Matching refs:pixels
120 *pixels; in ReadHRZImage() local
148 pixels=(unsigned char *) AcquireQuantumMemory(image->columns,3* in ReadHRZImage()
149 sizeof(*pixels)); in ReadHRZImage()
150 if (pixels == (unsigned char *) NULL) in ReadHRZImage()
155 count=ReadBlob(image,length,pixels); in ReadHRZImage()
158 p=pixels; in ReadHRZImage()
175 pixels=(unsigned char *) RelinquishMagickMemory(pixels); in ReadHRZImage()
292 *pixels; in WriteHRZImage() local
315 pixels=(unsigned char *) AcquireQuantumMemory((size_t) hrz_image->columns, in WriteHRZImage()
316 3*sizeof(*pixels)); in WriteHRZImage()
317 if (pixels == (unsigned char *) NULL) in WriteHRZImage()
330 q=pixels; in WriteHRZImage()
338 count=WriteBlob(image,(size_t) (q-pixels),pixels); in WriteHRZImage()
339 if (count != (ssize_t) (q-pixels)) in WriteHRZImage()
345 pixels=(unsigned char *) RelinquishMagickMemory(pixels); in WriteHRZImage()