From ebc891a1d9621a19c509200d7bf3470ca18dde7f Mon Sep 17 00:00:00 2001 From: cristy Date: Sun, 24 Apr 2011 23:04:16 +0000 Subject: [PATCH] --- coders/gif.c | 78 ++++++++++++++++------------------- coders/gray.c | 16 +++----- coders/hald.c | 15 ++++--- coders/hdr.c | 22 +++++----- coders/histogram.c | 6 +-- coders/hrz.c | 16 ++++---- coders/html.c | 8 ++-- coders/icon.c | 76 +++++++++++++++++----------------- coders/inline.c | 6 +-- coders/ipl.c | 100 ++++++++++++++++++++++----------------------- 10 files changed, 167 insertions(+), 176 deletions(-) diff --git a/coders/gif.c b/coders/gif.c index a864e421a..3742902b4 100644 --- a/coders/gif.c +++ b/coders/gif.c @@ -445,12 +445,12 @@ static MagickBooleanType DecodeImage(Image *image,const ssize_t opacity) if (c < 0) break; index=ConstrainColormapIndex(image,(size_t) c); - q->red=image->colormap[(ssize_t) index].red; - q->green=image->colormap[(ssize_t) index].green; - q->blue=image->colormap[(ssize_t) index].blue; - q->opacity=(ssize_t) index == opacity ? (Quantum) TransparentOpacity : - (Quantum) OpaqueOpacity; - indexes[x]=index; + SetIndexPixelComponent(indexes+x,index); + SetRedPixelComponent(q,image->colormap[(ssize_t) index].red); + SetGreenPixelComponent(q,image->colormap[(ssize_t) index].green); + SetBluePixelComponent(q,image->colormap[(ssize_t) index].blue); + SetOpacityPixelComponent(q,(ssize_t) index == opacity ? + TransparentOpacity : OpaqueOpacity); x++; q++; } @@ -579,39 +579,37 @@ static MagickBooleanType EncodeImage(const ImageInfo *image_info,Image *image, IndexPacket index; - ssize_t - displacement, - offset, - k, - y; - register ssize_t i; - size_t - length, - one; - short *hash_code, *hash_prefix, waiting_code; - unsigned char - *packet, - *hash_suffix; - size_t bits, clear_code, datum, end_of_information_code, free_code, + length, max_code, next_pixel, number_bits, + one, pass; + ssize_t + displacement, + offset, + k, + y; + + unsigned char + *packet, + *hash_suffix; + /* Allocate encoder tables. */ @@ -973,9 +971,6 @@ static Image *ReadGIFImage(const ImageInfo *image_info,ExceptionInfo *exception) int number_extensionss=0; - ssize_t - opacity; - MagickBooleanType status; @@ -988,8 +983,17 @@ static Image *ReadGIFImage(const ImageInfo *image_info,ExceptionInfo *exception) register unsigned char *p; + size_t + delay, + dispose, + global_colors, + image_count, + iterations, + one; + ssize_t - count; + count, + opacity; unsigned char background, @@ -999,14 +1003,6 @@ static Image *ReadGIFImage(const ImageInfo *image_info,ExceptionInfo *exception) header[MaxTextExtent], magick[12]; - size_t - delay, - dispose, - global_colors, - image_count, - iterations, - one; - /* Open image file. */ @@ -1457,10 +1453,6 @@ static MagickBooleanType WriteGIFImage(const ImageInfo *image_info,Image *image) int c; - ssize_t - j, - opacity; - ImageInfo *write_info; @@ -1483,17 +1475,19 @@ static MagickBooleanType WriteGIFImage(const ImageInfo *image_info,Image *image) *q; size_t - length; + bits_per_pixel, + delay, + length, + one; + + ssize_t + j, + opacity; unsigned char *colormap, *global_colormap; - size_t - bits_per_pixel, - delay, - one; - /* Open output image file. */ diff --git a/coders/gray.c b/coders/gray.c index 842c9dd34..953238496 100644 --- a/coders/gray.c +++ b/coders/gray.c @@ -102,9 +102,6 @@ static Image *ReadGRAYImage(const ImageInfo *image_info, *canvas_image, *image; - ssize_t - y; - MagickBooleanType status; @@ -121,7 +118,8 @@ static Image *ReadGRAYImage(const ImageInfo *image_info, length; ssize_t - count; + count, + y; unsigned char *pixels; @@ -368,9 +366,6 @@ ModuleExport void UnregisterGRAYImage(void) static MagickBooleanType WriteGRAYImage(const ImageInfo *image_info, Image *image) { - ssize_t - y; - MagickBooleanType status; @@ -383,12 +378,13 @@ static MagickBooleanType WriteGRAYImage(const ImageInfo *image_info, QuantumType quantum_type; - ssize_t - count; - size_t length; + ssize_t + count, + y; + unsigned char *pixels; diff --git a/coders/hald.c b/coders/hald.c index 1625e9eac..41eb89ec9 100644 --- a/coders/hald.c +++ b/coders/hald.c @@ -92,9 +92,6 @@ static Image *ReadHALDImage(const ImageInfo *image_info, Image *image; - ssize_t - y; - MagickBooleanType status; @@ -102,6 +99,9 @@ static Image *ReadHALDImage(const ImageInfo *image_info, cube_size, level; + ssize_t + y; + /* Create HALD color lookup table image. */ @@ -146,9 +146,12 @@ static Image *ReadHALDImage(const ImageInfo *image_info, { for (red=0; red < (ssize_t) cube_size; red++) { - q->red=ClampToQuantum(QuantumRange*red/(cube_size-1.0)); - q->green=ClampToQuantum(QuantumRange*green/(cube_size-1.0)); - q->blue=ClampToQuantum(QuantumRange*blue/(cube_size-1.0)); + SetRedPixelComponent(q,ClampToQuantum(QuantumRange*red/ + (cube_size-1.0))); + SetGreenPixelComponent(q,ClampToQuantum(QuantumRange*green/ + (cube_size-1.0))); + SetBluePixelComponent(q,ClampToQuantum(QuantumRange*blue/ + (cube_size-1.0))); SetOpacityPixelComponent(q,OpaqueOpacity); q++; } diff --git a/coders/hdr.c b/coders/hdr.c index a4d4cef1a..aa18c30f9 100644 --- a/coders/hdr.c +++ b/coders/hdr.c @@ -462,15 +462,15 @@ static Image *ReadHDRImage(const ImageInfo *image_info,ExceptionInfo *exception) pixel[2]=pixels[i++]; pixel[3]=pixels[i++]; } - q->red=0; - q->green=0; - q->blue=0; + SetRedPixelComponent(q,0); + SetGreenPixelComponent(q,0); + SetBluePixelComponent(q,0); if (pixel[3] != 0) { gamma=pow(2.0,pixel[3]-(128.0+8.0)); - q->red=ClampToQuantum(QuantumRange*gamma*pixel[0]); - q->green=ClampToQuantum(QuantumRange*gamma*pixel[1]); - q->blue=ClampToQuantum(QuantumRange*gamma*pixel[2]); + SetRedPixelComponent(q,ClampToQuantum(QuantumRange*gamma*pixel[0])); + SetGreenPixelComponent(q,ClampToQuantum(QuantumRange*gamma*pixel[1])); + SetBluePixelComponent(q,ClampToQuantum(QuantumRange*gamma*pixel[2])); } q++; } @@ -723,8 +723,8 @@ static MagickBooleanType WriteHDRImage(const ImageInfo *image_info,Image *image) /* Write HDR pixels. */ - pixels=(unsigned char *) AcquireQuantumMemory(image->columns, - 4*sizeof(*pixels)); + pixels=(unsigned char *) AcquireQuantumMemory(image->columns,4* + sizeof(*pixels)); if (pixels == (unsigned char *) NULL) ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed"); for (y=0; y < (ssize_t) image->rows; y++) @@ -764,8 +764,10 @@ static MagickBooleanType WriteHDRImage(const ImageInfo *image_info,Image *image) gamma=frexp(gamma,&exponent)*256.0/gamma; pixel[0]=(unsigned char) (gamma*QuantumScale*GetRedPixelComponent(p)); - pixel[1]=(unsigned char) (gamma*QuantumScale*GetGreenPixelComponent(p)); - pixel[2]=(unsigned char) (gamma*QuantumScale*GetBluePixelComponent(p)); + pixel[1]=(unsigned char) (gamma*QuantumScale* + GetGreenPixelComponent(p)); + pixel[2]=(unsigned char) (gamma*QuantumScale* + GetBluePixelComponent(p)); pixel[3]=(unsigned char) (exponent+128); } if ((image->columns >= 8) && (image->columns <= 0x7ffff)) diff --git a/coders/histogram.c b/coders/histogram.c index b13073451..d04df57fb 100644 --- a/coders/histogram.c +++ b/coders/histogram.c @@ -308,7 +308,7 @@ static MagickBooleanType WriteHISTOGRAMImage(const ImageInfo *image_info, r=q+y; for ( ; y < (ssize_t) histogram_image->rows; y++) { - r->red=(Quantum) QuantumRange; + SetRedPixelComponent(r,QuantumRange); r++; } } @@ -318,7 +318,7 @@ static MagickBooleanType WriteHISTOGRAMImage(const ImageInfo *image_info, r=q+y; for ( ; y < (ssize_t) histogram_image->rows; y++) { - r->green=(Quantum) QuantumRange; + SetGreenPixelComponent(r,QuantumRange); r++; } } @@ -328,7 +328,7 @@ static MagickBooleanType WriteHISTOGRAMImage(const ImageInfo *image_info, r=q+y; for ( ; y < (ssize_t) histogram_image->rows; y++) { - r->blue=(Quantum) QuantumRange; + SetBluePixelComponent(r,QuantumRange); r++; } } diff --git a/coders/hrz.c b/coders/hrz.c index 63d7e3b19..c8ea57dbf 100644 --- a/coders/hrz.c +++ b/coders/hrz.c @@ -95,9 +95,6 @@ static Image *ReadHRZImage(const ImageInfo *image_info,ExceptionInfo *exception) Image *image; - ssize_t - y; - MagickBooleanType status; @@ -111,7 +108,8 @@ static Image *ReadHRZImage(const ImageInfo *image_info,ExceptionInfo *exception) *p; ssize_t - count; + count, + y; size_t length; @@ -142,8 +140,8 @@ static Image *ReadHRZImage(const ImageInfo *image_info,ExceptionInfo *exception) image->columns=256; image->rows=240; image->depth=8; - pixels=(unsigned char *) AcquireQuantumMemory(image->columns, - 3*sizeof(*pixels)); + pixels=(unsigned char *) AcquireQuantumMemory(image->columns,3* + sizeof(*pixels)); if (pixels == (unsigned char *) NULL) ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); length=(size_t) (3*image->columns); @@ -158,9 +156,9 @@ static Image *ReadHRZImage(const ImageInfo *image_info,ExceptionInfo *exception) break; for (x=0; x < (ssize_t) image->columns; x++) { - q->red=4*ScaleCharToQuantum(*p++); - q->green=4*ScaleCharToQuantum(*p++); - q->blue=4*ScaleCharToQuantum(*p++); + SetRedPixelComponent(q,4*ScaleCharToQuantum(*p++)); + SetGreenPixelComponent(q,4*ScaleCharToQuantum(*p++)); + SetBluePixelComponent(q,4*ScaleCharToQuantum(*p++)); SetOpacityPixelComponent(q,OpaqueOpacity); q++; } diff --git a/coders/html.c b/coders/html.c index ed194578e..73939a562 100644 --- a/coders/html.c +++ b/coders/html.c @@ -351,8 +351,8 @@ static MagickBooleanType WriteHTMLImage(const ImageInfo *image_info, (void) WriteBlobByte(image,(unsigned char) *p); else { - (void) FormatMagickString(buffer,MaxTextExtent, - "\" shape=\"rect\" coords=\"%.20g,%.20g,%.20g,%.20g\" alt=\"\" />\n", + (void) FormatMagickString(buffer,MaxTextExtent,"\" shape=" + "\"rect\" coords=\"%.20g,%.20g,%.20g,%.20g\" alt=\"\" />\n", (double) geometry.x,(double) geometry.y,(double) (geometry.x+ geometry.width-1),(double) (geometry.y+geometry.height-1)); (void) WriteBlobString(image,buffer); @@ -426,8 +426,8 @@ static MagickBooleanType WriteHTMLImage(const ImageInfo *image_info, (void) WriteBlobByte(image,(unsigned char) *p); else { - (void) FormatMagickString(buffer,MaxTextExtent, - "\" shape=\"rect\" coords=\"%.20g,%.20g,%.20g,%.20g\" alt=\"\" />\n", + (void) FormatMagickString(buffer,MaxTextExtent,"\" shape=\"rect\"" + " coords=\"%.20g,%.20g,%.20g,%.20g\" alt=\"\" />\n", (double) geometry.x,(double) geometry.y,geometry.x+(double) geometry.width-1,geometry.y+(double) geometry.height-1); (void) WriteBlobString(image,buffer); diff --git a/coders/icon.c b/coders/icon.c index a4ba2bb0f..8f0c3d110 100644 --- a/coders/icon.c +++ b/coders/icon.c @@ -180,9 +180,6 @@ static Image *ReadICONImage(const ImageInfo *image_info, Image *image; - ssize_t - y; - MagickBooleanType status; @@ -199,10 +196,6 @@ static Image *ReadICONImage(const ImageInfo *image_info, register unsigned char *p; - ssize_t - count, - offset; - size_t bit, byte, @@ -210,6 +203,11 @@ static Image *ReadICONImage(const ImageInfo *image_info, one, scanline_pad; + ssize_t + count, + offset, + y; + /* Open image file. */ @@ -350,13 +348,13 @@ static Image *ReadICONImage(const ImageInfo *image_info, register ssize_t i; - unsigned char - *icon_colormap; - size_t number_colors, one; + unsigned char + *icon_colormap; + /* Read Icon raster colormap. */ @@ -411,15 +409,15 @@ static Image *ReadICONImage(const ImageInfo *image_info, { byte=(size_t) ReadBlobByte(image); for (bit=0; bit < 8; bit++) - indexes[x+bit]=(IndexPacket) - ((byte & (0x80 >> bit)) != 0 ? 0x01 : 0x00); + SetIndexPixelComponent(indexes+x+bit, + ((byte & (0x80 >> bit)) != 0 ? 0x01 : 0x00)); } if ((image->columns % 8) != 0) { byte=(size_t) ReadBlobByte(image); for (bit=0; bit < (image->columns % 8); bit++) - indexes[x+bit]=(IndexPacket) - ((byte & (0x80 >> bit)) != 0 ? 0x01 : 0x00); + SetIndexPixelComponent(indexes+x+bit, + ((byte & (0x80 >> bit)) != 0 ? 0x01 : 0x00)); } for (x=0; x < (ssize_t) scanline_pad; x++) (void) ReadBlobByte(image); @@ -449,13 +447,13 @@ static Image *ReadICONImage(const ImageInfo *image_info, for (x=0; x < ((ssize_t) image->columns-1); x+=2) { byte=(size_t) ReadBlobByte(image); - indexes[x]=(IndexPacket) ((byte >> 4) & 0xf); - indexes[x+1]=(IndexPacket) ((byte) & 0xf); + SetIndexPixelComponent(indexes+x,((byte >> 4) & 0xf)); + SetIndexPixelComponent(indexes+x+1,((byte) & 0xf)); } if ((image->columns % 2) != 0) { byte=(size_t) ReadBlobByte(image); - indexes[x]=(IndexPacket) ((byte >> 4) & 0xf); + SetIndexPixelComponent(indexes+x,((byte >> 4) & 0xf)); } for (x=0; x < (ssize_t) scanline_pad; x++) (void) ReadBlobByte(image); @@ -485,7 +483,7 @@ static Image *ReadICONImage(const ImageInfo *image_info, for (x=0; x < (ssize_t) image->columns; x++) { byte=(size_t) ReadBlobByte(image); - indexes[x]=(IndexPacket) byte; + SetIndexPixelComponent(indexes+x,byte); } for (x=0; x < (ssize_t) scanline_pad; x++) (void) ReadBlobByte(image); @@ -516,7 +514,7 @@ static Image *ReadICONImage(const ImageInfo *image_info, { byte=(size_t) ReadBlobByte(image); byte|=(size_t) (ReadBlobByte(image) << 8); - indexes[x]=(IndexPacket) byte; + SetIndexPixelComponent(indexes+x,byte); } for (x=0; x < (ssize_t) scanline_pad; x++) (void) ReadBlobByte(image); @@ -545,13 +543,15 @@ static Image *ReadICONImage(const ImageInfo *image_info, break; for (x=0; x < (ssize_t) image->columns; x++) { - q->blue=ScaleCharToQuantum((unsigned char) ReadBlobByte(image)); - q->green=ScaleCharToQuantum((unsigned char) - ReadBlobByte(image)); - q->red=ScaleCharToQuantum((unsigned char) ReadBlobByte(image)); + SetBluePixelComponent(q,ScaleCharToQuantum((unsigned char) + ReadBlobByte(image))); + SetGreenPixelComponent(q,ScaleCharToQuantum((unsigned char) + ReadBlobByte(image))); + SetRedPixelComponent(q,ScaleCharToQuantum((unsigned char) + ReadBlobByte(image))); if (icon_info.bits_per_pixel == 32) - q->opacity=(Quantum) (QuantumRange-ScaleCharToQuantum( - (unsigned char) ReadBlobByte(image))); + SetOpacityPixelComponent(q,(QuantumRange-ScaleCharToQuantum( + (unsigned char) ReadBlobByte(image)))); q++; } if (icon_info.bits_per_pixel == 24) @@ -589,15 +589,15 @@ static Image *ReadICONImage(const ImageInfo *image_info, { byte=(size_t) ReadBlobByte(image); for (bit=0; bit < 8; bit++) - q[x+bit].opacity=(Quantum) (((byte & (0x80 >> bit)) != 0) ? - TransparentOpacity : OpaqueOpacity); + SetOpacityPixelComponent(q+x+bit,(((byte & (0x80 >> bit)) != + 0) ? TransparentOpacity : OpaqueOpacity)); } if ((image->columns % 8) != 0) { byte=(size_t) ReadBlobByte(image); for (bit=0; bit < (image->columns % 8); bit++) - q[x+bit].opacity=(Quantum) (((byte & (0x80 >> bit)) != 0) ? - TransparentOpacity : OpaqueOpacity); + SetOpacityPixelComponent(q+x+bit,(((byte & (0x80 >> bit)) != + 0) ? TransparentOpacity : OpaqueOpacity)); } if ((image->columns % 32) != 0) for (x=0; x < (ssize_t) ((32-(image->columns % 32))/8); x++) @@ -761,9 +761,6 @@ static MagickBooleanType WriteICONImage(const ImageInfo *image_info, Image *next; - ssize_t - y; - MagickBooleanType status; @@ -784,15 +781,18 @@ static MagickBooleanType WriteICONImage(const ImageInfo *image_info, register unsigned char *q; + size_t + bytes_per_line, + scanline_pad; + + ssize_t + y; + unsigned char bit, byte, *pixels; - size_t - bytes_per_line, - scanline_pad; - /* Open output image file. */ @@ -1000,7 +1000,7 @@ static MagickBooleanType WriteICONImage(const ImageInfo *image_info, for (x=0; x < (ssize_t) next->columns; x++) { byte<<=1; - byte|=indexes[x] != 0 ? 0x01 : 0x00; + byte|=GetIndexPixelComponent(indexes+x) != 0 ? 0x01 : 0x00; bit++; if (bit == 8) { @@ -1041,7 +1041,7 @@ static MagickBooleanType WriteICONImage(const ImageInfo *image_info, for (x=0; x < (ssize_t) next->columns; x++) { byte<<=4; - byte|=((size_t) indexes[x] & 0x0f); + byte|=((size_t) GetIndexPixelComponent(indexes+x) & 0x0f); nibble++; if (nibble == 2) { diff --git a/coders/inline.c b/coders/inline.c index f40d4f62d..19739640a 100644 --- a/coders/inline.c +++ b/coders/inline.c @@ -105,12 +105,12 @@ static Image *ReadINLINEImage(const ImageInfo *image_info, register size_t i; - ssize_t - count; - size_t quantum; + ssize_t + count; + unsigned char *inline_image; diff --git a/coders/ipl.c b/coders/ipl.c index 3625bd14b..73cc42a5d 100644 --- a/coders/ipl.c +++ b/coders/ipl.c @@ -1,42 +1,42 @@ /* - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % % - % % - % % - % IIIIIIIIII PPPPPPPP LL % - % II PP PP LL % - % II PP PP LL % - % II PP PP LL % - % II PPPPPPPP LL % - % II PP LL % - % II PP LL % - % IIIIIIIIII PP LLLLLLLL % - % % - % % - % % - % Read/Write Scanalytics IPLab Image Format % - % Sean Burke % - % 2008.05.07 % - % v 0.9 % - % % - % Copyright 1999-2007 ImageMagick Studio LLC, a non-profit organization % - % dedicated to making software imaging solutions freely available. % - % % - % You may not use this file except in compliance with the License. You may % - % obtain a copy of the License at % - % % - % http://www.imagemagick.org/script/license.php % - % % - % Unless required by applicable law or agreed to in writing, software % - % distributed under the License is distributed on an "AS IS" BASIS, % - % WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. % - % See the License for the specific language governing permissions and % - % limitations under the License. % - % % - %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - % - % - */ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% % +% % +% IIIIIIIIII PPPPPPPP LL % +% II PP PP LL % +% II PP PP LL % +% II PP PP LL % +% II PPPPPPPP LL % +% II PP LL % +% II PP LL % +% IIIIIIIIII PP LLLLLLLL % +% % +% % +% % +% Read/Write Scanalytics IPLab Image Format % +% Sean Burke % +% 2008.05.07 % +% v 0.9 % +% % +% Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization % +% dedicated to making software imaging solutions freely available. % +% % +% You may not use this file except in compliance with the License. You may % +% obtain a copy of the License at % +% % +% http://www.imagemagick.org/script/license.php % +% % +% Unless required by applicable law or agreed to in writing, software % +% distributed under the License is distributed on an "AS IS" BASIS, % +% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. % +% See the License for the specific language governing permissions and % +% limitations under the License. % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% +% +*/ /* Include declarations. @@ -363,7 +363,7 @@ static Image *ReadIPLImage(const ImageInfo *image_info,ExceptionInfo *exception) (void) ReadBlob(image, length*image->depth/8, pixels); q=QueueAuthenticPixels(image,0,y,image->columns,1,exception); if (q == (PixelPacket *) NULL) - break; + break; (void) ImportQuantumPixels(image,(CacheView *) NULL,quantum_info, GreenQuantum,pixels,exception); if (SyncAuthenticPixels(image,exception) == MagickFalse) @@ -373,7 +373,7 @@ static Image *ReadIPLImage(const ImageInfo *image_info,ExceptionInfo *exception) (void) ReadBlob(image, length*image->depth/8, pixels); q=QueueAuthenticPixels(image,0,y,image->columns,1,exception); if (q == (PixelPacket *) NULL) - break; + break; (void) ImportQuantumPixels(image,(CacheView *) NULL,quantum_info, BlueQuantum,pixels,exception); if (SyncAuthenticPixels(image,exception) == MagickFalse) @@ -499,6 +499,9 @@ static MagickBooleanType WriteIPLImage(const ImageInfo *image_info,Image *image) ExceptionInfo *exception; + IPLInfo + ipl_info; + MagickBooleanType status; @@ -508,18 +511,15 @@ static MagickBooleanType WriteIPLImage(const ImageInfo *image_info,Image *image) register const PixelPacket *p; - unsigned char - *pixels; - - ssize_t - y; - - IPLInfo - ipl_info; - QuantumInfo *quantum_info; + ssize_t + y; + + unsigned char + *pixels; + /* Open output image file. */ @@ -683,5 +683,3 @@ static MagickBooleanType WriteIPLImage(const ImageInfo *image_info,Image *image) CloseBlob(image); return(MagickTrue); } - - -- 2.49.0