cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % N N U U L L % |
| 7 | % NN N U U L L % |
| 8 | % N N N U U L L % |
| 9 | % N NN U U L L % |
| 10 | % N N UUU LLLLL LLLLL % |
| 11 | % % |
| 12 | % % |
| 13 | % Read/Write Image Of Uniform Color. % |
| 14 | % % |
| 15 | % Software Design % |
| 16 | % John Cristy % |
| 17 | % July 1992 % |
| 18 | % % |
| 19 | % % |
cristy | 1454be7 | 2011-12-19 01:52:48 +0000 | [diff] [blame^] | 20 | % Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization % |
cristy | 3ed852e | 2009-09-05 21:47:34 +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 | % % |
| 26 | % http://www.imagemagick.org/script/license.php % |
| 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" |
| 43 | #include "MagickCore/blob.h" |
| 44 | #include "MagickCore/blob-private.h" |
| 45 | #include "MagickCore/cache.h" |
| 46 | #include "MagickCore/color.h" |
| 47 | #include "MagickCore/color-private.h" |
| 48 | #include "MagickCore/colorspace-private.h" |
| 49 | #include "MagickCore/exception.h" |
| 50 | #include "MagickCore/exception-private.h" |
| 51 | #include "MagickCore/image.h" |
| 52 | #include "MagickCore/image-private.h" |
| 53 | #include "MagickCore/list.h" |
| 54 | #include "MagickCore/magick.h" |
| 55 | #include "MagickCore/memory_.h" |
| 56 | #include "MagickCore/pixel-accessor.h" |
| 57 | #include "MagickCore/quantum-private.h" |
| 58 | #include "MagickCore/static.h" |
| 59 | #include "MagickCore/string_.h" |
| 60 | #include "MagickCore/module.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 61 | |
| 62 | /* |
| 63 | Forward declarations. |
| 64 | */ |
| 65 | static MagickBooleanType |
cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 66 | WriteNULLImage(const ImageInfo *,Image *,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 70 | % % |
| 71 | % % |
| 72 | % % |
| 73 | % R e a d N U L L I m a g e % |
| 74 | % % |
| 75 | % % |
| 76 | % % |
| 77 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 78 | % |
| 79 | % ReadNULLImage creates a constant image and initializes it to the |
| 80 | % X server color as specified by the filename. It allocates the memory |
| 81 | % necessary for the new Image structure and returns a pointer to the new |
| 82 | % image. |
| 83 | % |
| 84 | % The format of the ReadNULLImage method is: |
| 85 | % |
| 86 | % Image *ReadNULLImage(const ImageInfo *image_info, |
| 87 | % ExceptionInfo *exception) |
| 88 | % |
| 89 | % A description of each parameter follows: |
| 90 | % |
| 91 | % o image_info: the image info. |
| 92 | % |
| 93 | % o exception: return any errors or warnings in this structure. |
| 94 | % |
| 95 | */ |
| 96 | static Image *ReadNULLImage(const ImageInfo *image_info, |
| 97 | ExceptionInfo *exception) |
| 98 | { |
| 99 | Image |
| 100 | *image; |
| 101 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 102 | PixelInfo |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 103 | background; |
| 104 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 105 | register ssize_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 106 | x; |
| 107 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 108 | register Quantum |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 109 | *q; |
| 110 | |
cristy | aff6d80 | 2011-04-26 01:46:31 +0000 | [diff] [blame] | 111 | ssize_t |
| 112 | y; |
| 113 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 114 | /* |
| 115 | Initialize Image structure. |
| 116 | */ |
| 117 | assert(image_info != (const ImageInfo *) NULL); |
| 118 | assert(image_info->signature == MagickSignature); |
| 119 | if (image_info->debug != MagickFalse) |
| 120 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 121 | image_info->filename); |
| 122 | assert(exception != (ExceptionInfo *) NULL); |
| 123 | assert(exception->signature == MagickSignature); |
cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 124 | image=AcquireImage(image_info,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 125 | if (image->columns == 0) |
| 126 | image->columns=1; |
| 127 | if (image->rows == 0) |
| 128 | image->rows=1; |
| 129 | image->matte=MagickTrue; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 130 | GetPixelInfo(image,&background); |
| 131 | background.alpha=(MagickRealType) TransparentAlpha; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 132 | if (image->colorspace == CMYKColorspace) |
| 133 | ConvertRGBToCMYK(&background); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 134 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 135 | { |
| 136 | q=QueueAuthenticPixels(image,0,y,image->columns,1,exception); |
cristy | acd2ed2 | 2011-08-30 01:44:23 +0000 | [diff] [blame] | 137 | if (q == (Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 138 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 139 | for (x=0; x < (ssize_t) image->columns; x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 140 | { |
cristy | 803640d | 2011-11-17 02:11:32 +0000 | [diff] [blame] | 141 | SetPixelInfoPixel(image,&background,q); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 142 | q+=GetPixelChannels(image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 143 | } |
| 144 | if (SyncAuthenticPixels(image,exception) == MagickFalse) |
| 145 | break; |
| 146 | } |
| 147 | return(GetFirstImageInList(image)); |
| 148 | } |
| 149 | |
| 150 | /* |
| 151 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 152 | % % |
| 153 | % % |
| 154 | % % |
| 155 | % R e g i s t e r N U L L I m a g e % |
| 156 | % % |
| 157 | % % |
| 158 | % % |
| 159 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 160 | % |
| 161 | % RegisterNULLImage() adds attributes for the NULL image format to |
| 162 | % the list of supported formats. The attributes include the image format |
| 163 | % tag, a method to read and/or write the format, whether the format |
| 164 | % supports the saving of more than one frame to the same file or blob, |
| 165 | % whether the format supports native in-memory I/O, and a brief |
| 166 | % description of the format. |
| 167 | % |
| 168 | % The format of the RegisterNULLImage method is: |
| 169 | % |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 170 | % size_t RegisterNULLImage(void) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 171 | % |
| 172 | */ |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 173 | ModuleExport size_t RegisterNULLImage(void) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 174 | { |
| 175 | MagickInfo |
| 176 | *entry; |
| 177 | |
| 178 | entry=SetMagickInfo("NULL"); |
| 179 | entry->decoder=(DecodeImageHandler *) ReadNULLImage; |
| 180 | entry->encoder=(EncodeImageHandler *) WriteNULLImage; |
| 181 | entry->adjoin=MagickFalse; |
cristy | 009d739 | 2010-07-25 22:08:41 +0000 | [diff] [blame] | 182 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 183 | entry->description=ConstantString("Constant image of uniform color"); |
| 184 | entry->module=ConstantString("NULL"); |
| 185 | (void) RegisterMagickInfo(entry); |
| 186 | return(MagickImageCoderSignature); |
| 187 | } |
| 188 | |
| 189 | /* |
| 190 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 191 | % % |
| 192 | % % |
| 193 | % % |
| 194 | % U n r e g i s t e r N U L L I m a g e % |
| 195 | % % |
| 196 | % % |
| 197 | % % |
| 198 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 199 | % |
| 200 | % UnregisterNULLImage() removes format registrations made by the |
| 201 | % NULL module from the list of supported formats. |
| 202 | % |
| 203 | % The format of the UnregisterNULLImage method is: |
| 204 | % |
| 205 | % UnregisterNULLImage(void) |
| 206 | % |
| 207 | */ |
| 208 | ModuleExport void UnregisterNULLImage(void) |
| 209 | { |
| 210 | (void) UnregisterMagickInfo("NULL"); |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 215 | % % |
| 216 | % % |
| 217 | % % |
| 218 | % W r i t e N U L L I m a g e % |
| 219 | % % |
| 220 | % % |
| 221 | % % |
| 222 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 223 | % |
| 224 | % WriteNULLImage writes no output at all. It is useful when specified |
| 225 | % as an output format when profiling. |
| 226 | % |
| 227 | % The format of the WriteNULLImage method is: |
| 228 | % |
| 229 | % MagickBooleanType WriteNULLImage(const ImageInfo *image_info, |
cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 230 | % Image *image,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 231 | % |
| 232 | % A description of each parameter follows. |
| 233 | % |
| 234 | % o image_info: the image info. |
| 235 | % |
| 236 | % o image: The image. |
| 237 | % |
cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 238 | % o exception: return any errors or warnings in this structure. |
| 239 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 240 | */ |
| 241 | static MagickBooleanType WriteNULLImage(const ImageInfo *image_info, |
cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 242 | Image *image,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 243 | { |
| 244 | assert(image_info != (const ImageInfo *) NULL); |
| 245 | assert(image_info->signature == MagickSignature); |
| 246 | assert(image != (Image *) NULL); |
| 247 | assert(image->signature == MagickSignature); |
cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 248 | assert(exception != (ExceptionInfo *) NULL); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 249 | if (image->debug != MagickFalse) |
| 250 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 251 | return(MagickTrue); |
| 252 | } |