cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % RRRR AAA W W % |
| 7 | % R R A A W W % |
| 8 | % RRRR AAAAA W W W % |
| 9 | % R R A A WW WW % |
| 10 | % R R A A W W % |
| 11 | % % |
| 12 | % % |
| 13 | % Read/Write RAW Image Format % |
| 14 | % % |
| 15 | % Software Design % |
cristy | de984cd | 2013-12-01 14:49:27 +0000 | [diff] [blame] | 16 | % Cristy % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 17 | % July 1992 % |
| 18 | % % |
| 19 | % % |
Cristy | f6ff9ea | 2016-12-05 09:53:35 -0500 | [diff] [blame] | 20 | % Copyright 1999-2017 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 | % % |
Cristy | f19d414 | 2017-04-24 11:34:30 -0400 | [diff] [blame] | 26 | % https://www.imagemagick.org/script/license.php % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 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/colorspace.h" |
| 47 | #include "MagickCore/constitute.h" |
| 48 | #include "MagickCore/exception.h" |
| 49 | #include "MagickCore/exception-private.h" |
| 50 | #include "MagickCore/image.h" |
| 51 | #include "MagickCore/image-private.h" |
| 52 | #include "MagickCore/list.h" |
| 53 | #include "MagickCore/magick.h" |
| 54 | #include "MagickCore/memory_.h" |
| 55 | #include "MagickCore/monitor.h" |
| 56 | #include "MagickCore/monitor-private.h" |
| 57 | #include "MagickCore/pixel-accessor.h" |
| 58 | #include "MagickCore/quantum-private.h" |
| 59 | #include "MagickCore/quantum-private.h" |
| 60 | #include "MagickCore/static.h" |
| 61 | #include "MagickCore/statistic.h" |
| 62 | #include "MagickCore/string_.h" |
| 63 | #include "MagickCore/module.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 64 | |
| 65 | /* |
| 66 | Forward declarations. |
| 67 | */ |
| 68 | static MagickBooleanType |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 69 | WriteRAWImage(const ImageInfo *,Image *,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 70 | |
| 71 | /* |
| 72 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 73 | % % |
| 74 | % % |
| 75 | % % |
| 76 | % R e a d R A W I m a g e % |
| 77 | % % |
| 78 | % % |
| 79 | % % |
| 80 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 81 | % |
| 82 | % ReadRAWImage() reads an image of raw samples and returns it. It allocates |
| 83 | % the memory necessary for the new Image structure and returns a pointer to |
| 84 | % the new image. |
| 85 | % |
| 86 | % The format of the ReadRAWImage method is: |
| 87 | % |
| 88 | % Image *ReadRAWImage(const ImageInfo *image_info,ExceptionInfo *exception) |
| 89 | % |
| 90 | % A description of each parameter follows: |
| 91 | % |
| 92 | % o image_info: the image info. |
| 93 | % |
| 94 | % o exception: return any errors or warnings in this structure. |
| 95 | % |
| 96 | */ |
cristy | 0f8bcf3 | 2012-01-11 01:27:20 +0000 | [diff] [blame] | 97 | static Image *ReadRAWImage(const ImageInfo *image_info,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 98 | { |
cristy | b3f97ae | 2015-05-18 12:29:32 +0000 | [diff] [blame] | 99 | const unsigned char |
cristy | bd797f1 | 2015-01-24 20:42:32 +0000 | [diff] [blame] | 100 | *pixels; |
| 101 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 102 | Image |
| 103 | *canvas_image, |
| 104 | *image; |
| 105 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 106 | MagickBooleanType |
| 107 | status; |
| 108 | |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 109 | MagickOffsetType |
| 110 | scene; |
| 111 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 112 | QuantumInfo |
| 113 | *quantum_info; |
| 114 | |
| 115 | QuantumType |
| 116 | quantum_type; |
| 117 | |
cristy | b20901d | 2010-09-16 23:13:55 +0000 | [diff] [blame] | 118 | size_t |
| 119 | length; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 120 | |
| 121 | ssize_t |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 122 | count, |
| 123 | y; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 124 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 125 | /* |
| 126 | Open image file. |
| 127 | */ |
| 128 | assert(image_info != (const ImageInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 129 | assert(image_info->signature == MagickCoreSignature); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 130 | if (image_info->debug != MagickFalse) |
| 131 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 132 | image_info->filename); |
| 133 | assert(exception != (ExceptionInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 134 | assert(exception->signature == MagickCoreSignature); |
cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 135 | image=AcquireImage(image_info,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 136 | if ((image->columns == 0) || (image->rows == 0)) |
| 137 | ThrowReaderException(OptionError,"MustSpecifyImageSize"); |
Cristy | f420dab | 2017-09-13 10:49:56 -0400 | [diff] [blame] | 138 | status=SetImageExtent(image,image->columns,image->rows,exception); |
| 139 | if (status == MagickFalse) |
| 140 | return(DestroyImageList(image)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 141 | status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception); |
| 142 | if (status == MagickFalse) |
| 143 | { |
| 144 | image=DestroyImageList(image); |
| 145 | return((Image *) NULL); |
| 146 | } |
Cristy | f420dab | 2017-09-13 10:49:56 -0400 | [diff] [blame] | 147 | if (DiscardBlobBytes(image,(MagickSizeType) image->offset) == MagickFalse) |
cristy | d429702 | 2010-09-16 22:59:09 +0000 | [diff] [blame] | 148 | ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", |
| 149 | image->filename); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 150 | /* |
| 151 | Create virtual canvas to support cropping (i.e. image.gray[100x100+10+20]). |
| 152 | */ |
| 153 | canvas_image=CloneImage(image,image->extract_info.width,1,MagickFalse, |
| 154 | exception); |
cristy | 387430f | 2012-02-07 13:09:46 +0000 | [diff] [blame] | 155 | (void) SetImageVirtualPixelMethod(canvas_image,BlackVirtualPixelMethod, |
| 156 | exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 157 | quantum_type=GrayQuantum; |
cristy | 5f766ef | 2014-12-14 21:12:47 +0000 | [diff] [blame] | 158 | quantum_info=AcquireQuantumInfo(image_info,canvas_image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 159 | if (quantum_info == (QuantumInfo *) NULL) |
| 160 | ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); |
cristy | b3f97ae | 2015-05-18 12:29:32 +0000 | [diff] [blame] | 161 | pixels=(const unsigned char *) NULL; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 162 | if (image_info->number_scenes != 0) |
| 163 | while (image->scene < image_info->scene) |
| 164 | { |
| 165 | /* |
| 166 | Skip to next image. |
| 167 | */ |
| 168 | image->scene++; |
| 169 | length=GetQuantumExtent(canvas_image,quantum_info,quantum_type); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 170 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 171 | { |
cristy | b3f97ae | 2015-05-18 12:29:32 +0000 | [diff] [blame] | 172 | pixels=(const unsigned char *) ReadBlobStream(image,length, |
| 173 | GetQuantumPixels(quantum_info),&count); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 174 | if (count != (ssize_t) length) |
| 175 | break; |
| 176 | } |
| 177 | } |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 178 | scene=0; |
| 179 | count=0; |
| 180 | length=0; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 181 | do |
| 182 | { |
| 183 | /* |
| 184 | Read pixels to virtual canvas image then push to image. |
| 185 | */ |
| 186 | if ((image_info->ping != MagickFalse) && (image_info->number_scenes != 0)) |
| 187 | if (image->scene >= (image_info->scene+image_info->number_scenes-1)) |
| 188 | break; |
cristy | acabb84 | 2014-12-14 23:36:33 +0000 | [diff] [blame] | 189 | status=SetImageExtent(image,image->columns,image->rows,exception); |
| 190 | if (status == MagickFalse) |
Cristy | f420dab | 2017-09-13 10:49:56 -0400 | [diff] [blame] | 191 | break; |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 192 | if (scene == 0) |
| 193 | { |
| 194 | length=GetQuantumExtent(canvas_image,quantum_info,quantum_type); |
cristy | b3f97ae | 2015-05-18 12:29:32 +0000 | [diff] [blame] | 195 | pixels=(const unsigned char *) ReadBlobStream(image,length, |
| 196 | GetQuantumPixels(quantum_info),&count); |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 197 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 198 | for (y=0; y < (ssize_t) image->extract_info.height; y++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 199 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 200 | register const Quantum |
dirk | 05d2ff7 | 2015-11-18 23:13:43 +0100 | [diff] [blame] | 201 | *magick_restrict p; |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 202 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 203 | register Quantum |
dirk | 05d2ff7 | 2015-11-18 23:13:43 +0100 | [diff] [blame] | 204 | *magick_restrict q; |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 205 | |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 206 | register ssize_t |
| 207 | x; |
| 208 | |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 209 | if (count != (ssize_t) length) |
| 210 | { |
cristy | 128e20d | 2012-01-11 01:24:58 +0000 | [diff] [blame] | 211 | ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", |
| 212 | image->filename); |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 213 | break; |
| 214 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 215 | q=GetAuthenticPixels(canvas_image,0,0,canvas_image->columns,1,exception); |
cristy | acd2ed2 | 2011-08-30 01:44:23 +0000 | [diff] [blame] | 216 | if (q == (Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 217 | break; |
| 218 | length=ImportQuantumPixels(canvas_image,(CacheView *) NULL,quantum_info, |
| 219 | quantum_type,pixels,exception); |
| 220 | if (SyncAuthenticPixels(canvas_image,exception) == MagickFalse) |
| 221 | break; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 222 | if (((y-image->extract_info.y) >= 0) && |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 223 | ((y-image->extract_info.y) < (ssize_t) image->rows)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 224 | { |
| 225 | p=GetVirtualPixels(canvas_image,canvas_image->extract_info.x,0, |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 226 | image->columns,1,exception); |
| 227 | q=QueueAuthenticPixels(image,0,y-image->extract_info.y,image->columns, |
| 228 | 1,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 229 | if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 230 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 231 | for (x=0; x < (ssize_t) image->columns; x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 232 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 233 | SetPixelRed(image,GetPixelRed(canvas_image,p),q); |
| 234 | SetPixelGreen(image,GetPixelGreen(canvas_image,p),q); |
| 235 | SetPixelBlue(image,GetPixelBlue(canvas_image,p),q); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 236 | p+=GetPixelChannels(canvas_image); |
| 237 | q+=GetPixelChannels(image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 238 | } |
| 239 | if (SyncAuthenticPixels(image,exception) == MagickFalse) |
| 240 | break; |
| 241 | } |
| 242 | if (image->previous == (Image *) NULL) |
| 243 | { |
cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 244 | status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y, |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 245 | image->rows); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 246 | if (status == MagickFalse) |
| 247 | break; |
| 248 | } |
cristy | b3f97ae | 2015-05-18 12:29:32 +0000 | [diff] [blame] | 249 | pixels=(const unsigned char *) ReadBlobStream(image,length, |
| 250 | GetQuantumPixels(quantum_info),&count); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 251 | } |
| 252 | SetQuantumImageType(image,quantum_type); |
| 253 | /* |
| 254 | Proceed to next image. |
| 255 | */ |
| 256 | if (image_info->number_scenes != 0) |
| 257 | if (image->scene >= (image_info->scene+image_info->number_scenes-1)) |
| 258 | break; |
| 259 | if (count == (ssize_t) length) |
| 260 | { |
| 261 | /* |
| 262 | Allocate next image structure. |
| 263 | */ |
cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 264 | AcquireNextImage(image_info,image,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 265 | if (GetNextImageInList(image) == (Image *) NULL) |
| 266 | { |
| 267 | image=DestroyImageList(image); |
| 268 | return((Image *) NULL); |
| 269 | } |
| 270 | image=SyncNextImageInList(image); |
| 271 | status=SetImageProgress(image,LoadImagesTag,TellBlob(image), |
| 272 | GetBlobSize(image)); |
| 273 | if (status == MagickFalse) |
| 274 | break; |
| 275 | } |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 276 | scene++; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 277 | } while (count == (ssize_t) length); |
| 278 | quantum_info=DestroyQuantumInfo(quantum_info); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 279 | canvas_image=DestroyImage(canvas_image); |
| 280 | (void) CloseBlob(image); |
| 281 | return(GetFirstImageInList(image)); |
| 282 | } |
| 283 | |
| 284 | /* |
| 285 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 286 | % % |
| 287 | % % |
| 288 | % % |
| 289 | % R e g i s t e r R A W I m a g e % |
| 290 | % % |
| 291 | % % |
| 292 | % % |
| 293 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 294 | % |
| 295 | % RegisterRAWImage() adds attributes for the RAW image format to the list of |
| 296 | % supported formats. The attributes include the image format tag, a method to |
| 297 | % read and/or write the format, whether the format supports the saving of |
| 298 | % more than one frame to the same file or blob, whether the format supports |
| 299 | % native in-memory I/O, and a brief description of the format. |
| 300 | % |
| 301 | % The format of the RegisterRAWImage method is: |
| 302 | % |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 303 | % size_t RegisterRAWImage(void) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 304 | % |
| 305 | */ |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 306 | ModuleExport size_t RegisterRAWImage(void) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 307 | { |
| 308 | MagickInfo |
| 309 | *entry; |
| 310 | |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 311 | entry=AcquireMagickInfo("RAW","R","Raw red samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 312 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 313 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 314 | entry->flags|=CoderRawSupportFlag; |
| 315 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 316 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 317 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 318 | entry=AcquireMagickInfo("RAW","C","Raw cyan samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 319 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 320 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 321 | entry->flags|=CoderRawSupportFlag; |
| 322 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 323 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 324 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 325 | entry=AcquireMagickInfo("RAW","G","Raw green samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 326 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 327 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 328 | entry->flags|=CoderRawSupportFlag; |
| 329 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 330 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 331 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 332 | entry=AcquireMagickInfo("RAW","M","Raw magenta samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 333 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 334 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 335 | entry->flags|=CoderRawSupportFlag; |
| 336 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 337 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 338 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 339 | entry=AcquireMagickInfo("RAW","B","Raw blue samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 340 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 341 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 342 | entry->flags|=CoderRawSupportFlag; |
| 343 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 344 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 345 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 346 | entry=AcquireMagickInfo("RAW","Y","Raw yellow samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 347 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 348 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 349 | entry->flags|=CoderRawSupportFlag; |
| 350 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 351 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 352 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 353 | entry=AcquireMagickInfo("RAW","A","Raw alpha samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 354 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 355 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 356 | entry->flags|=CoderRawSupportFlag; |
| 357 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 358 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 359 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 360 | entry=AcquireMagickInfo("RAW","O","Raw opacity samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 361 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 362 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 363 | entry->flags|=CoderRawSupportFlag; |
| 364 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 365 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 366 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 367 | entry=AcquireMagickInfo("RAW","K","Raw black samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 368 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 369 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 370 | entry->flags|=CoderRawSupportFlag; |
| 371 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 372 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 373 | (void) RegisterMagickInfo(entry); |
| 374 | return(MagickImageCoderSignature); |
| 375 | } |
| 376 | |
| 377 | /* |
| 378 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 379 | % % |
| 380 | % % |
| 381 | % % |
| 382 | % U n r e g i s t e r R A W I m a g e % |
| 383 | % % |
| 384 | % % |
| 385 | % % |
| 386 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 387 | % |
| 388 | % UnregisterRAWImage() removes format registrations made by the RAW module |
| 389 | % from the list of supported formats. |
| 390 | % |
| 391 | % The format of the UnregisterRAWImage method is: |
| 392 | % |
| 393 | % UnregisterRAWImage(void) |
| 394 | % |
| 395 | */ |
| 396 | ModuleExport void UnregisterRAWImage(void) |
| 397 | { |
| 398 | (void) UnregisterMagickInfo("R"); |
| 399 | (void) UnregisterMagickInfo("C"); |
| 400 | (void) UnregisterMagickInfo("G"); |
| 401 | (void) UnregisterMagickInfo("M"); |
| 402 | (void) UnregisterMagickInfo("B"); |
| 403 | (void) UnregisterMagickInfo("Y"); |
| 404 | (void) UnregisterMagickInfo("A"); |
| 405 | (void) UnregisterMagickInfo("O"); |
| 406 | (void) UnregisterMagickInfo("K"); |
| 407 | } |
| 408 | |
| 409 | /* |
| 410 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 411 | % % |
| 412 | % % |
| 413 | % % |
| 414 | % W r i t e R A W I m a g e % |
| 415 | % % |
| 416 | % % |
| 417 | % % |
| 418 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 419 | % |
| 420 | % WriteRAWImage() writes an image to a file as raw intensity values. |
| 421 | % |
| 422 | % The format of the WriteRAWImage method is: |
| 423 | % |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 424 | % MagickBooleanType WriteRAWImage(const ImageInfo *image_info, |
| 425 | % Image *image,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 426 | % |
| 427 | % A description of each parameter follows. |
| 428 | % |
| 429 | % o image_info: the image info. |
| 430 | % |
| 431 | % o image: The image. |
| 432 | % |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 433 | % o exception: return any errors or warnings in this structure. |
| 434 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 435 | */ |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 436 | static MagickBooleanType WriteRAWImage(const ImageInfo *image_info,Image *image, |
| 437 | ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 438 | { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 439 | MagickOffsetType |
| 440 | scene; |
| 441 | |
| 442 | QuantumInfo |
| 443 | *quantum_info; |
| 444 | |
| 445 | QuantumType |
| 446 | quantum_type; |
| 447 | |
| 448 | MagickBooleanType |
| 449 | status; |
| 450 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 451 | register const Quantum |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 452 | *p; |
| 453 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 454 | size_t |
| 455 | length; |
| 456 | |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 457 | ssize_t |
| 458 | count, |
| 459 | y; |
| 460 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 461 | unsigned char |
| 462 | *pixels; |
| 463 | |
| 464 | /* |
| 465 | Open output image file. |
| 466 | */ |
| 467 | assert(image_info != (const ImageInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 468 | assert(image_info->signature == MagickCoreSignature); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 469 | assert(image != (Image *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 470 | assert(image->signature == MagickCoreSignature); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 471 | if (image->debug != MagickFalse) |
| 472 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 473 | assert(exception != (ExceptionInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 474 | assert(exception->signature == MagickCoreSignature); |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 475 | status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 476 | if (status == MagickFalse) |
| 477 | return(status); |
| 478 | switch (*image->magick) |
| 479 | { |
| 480 | case 'A': |
| 481 | case 'a': |
| 482 | { |
| 483 | quantum_type=AlphaQuantum; |
| 484 | break; |
| 485 | } |
| 486 | case 'B': |
| 487 | case 'b': |
| 488 | { |
| 489 | quantum_type=BlueQuantum; |
| 490 | break; |
| 491 | } |
| 492 | case 'C': |
| 493 | case 'c': |
| 494 | { |
| 495 | quantum_type=CyanQuantum; |
| 496 | if (image->colorspace == CMYKColorspace) |
| 497 | break; |
| 498 | ThrowWriterException(ImageError,"ColorSeparatedImageRequired"); |
| 499 | } |
| 500 | case 'g': |
| 501 | case 'G': |
| 502 | { |
| 503 | quantum_type=GreenQuantum; |
| 504 | break; |
| 505 | } |
| 506 | case 'I': |
| 507 | case 'i': |
| 508 | { |
| 509 | quantum_type=IndexQuantum; |
| 510 | break; |
| 511 | } |
| 512 | case 'K': |
| 513 | case 'k': |
| 514 | { |
| 515 | quantum_type=BlackQuantum; |
| 516 | if (image->colorspace == CMYKColorspace) |
| 517 | break; |
| 518 | ThrowWriterException(ImageError,"ColorSeparatedImageRequired"); |
| 519 | } |
| 520 | case 'M': |
| 521 | case 'm': |
| 522 | { |
| 523 | quantum_type=MagentaQuantum; |
| 524 | if (image->colorspace == CMYKColorspace) |
| 525 | break; |
| 526 | ThrowWriterException(ImageError,"ColorSeparatedImageRequired"); |
| 527 | } |
| 528 | case 'o': |
| 529 | case 'O': |
| 530 | { |
| 531 | quantum_type=OpacityQuantum; |
| 532 | break; |
| 533 | } |
| 534 | case 'R': |
| 535 | case 'r': |
| 536 | { |
| 537 | quantum_type=RedQuantum; |
| 538 | break; |
| 539 | } |
| 540 | case 'Y': |
| 541 | case 'y': |
| 542 | { |
| 543 | quantum_type=YellowQuantum; |
| 544 | if (image->colorspace == CMYKColorspace) |
| 545 | break; |
| 546 | ThrowWriterException(ImageError,"ColorSeparatedImageRequired"); |
| 547 | } |
| 548 | default: |
| 549 | { |
| 550 | quantum_type=GrayQuantum; |
| 551 | break; |
| 552 | } |
| 553 | } |
| 554 | scene=0; |
| 555 | do |
| 556 | { |
| 557 | /* |
| 558 | Convert image to RAW raster pixels. |
| 559 | */ |
cristy | 5f766ef | 2014-12-14 21:12:47 +0000 | [diff] [blame] | 560 | quantum_info=AcquireQuantumInfo(image_info,image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 561 | if (quantum_info == (QuantumInfo *) NULL) |
| 562 | ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed"); |
cristy | b3f97ae | 2015-05-18 12:29:32 +0000 | [diff] [blame] | 563 | pixels=(unsigned char *) GetQuantumPixels(quantum_info); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 564 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 565 | { |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 566 | p=GetVirtualPixels(image,0,y,image->columns,1,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 567 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 568 | break; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 569 | length=ExportQuantumPixels(image,(CacheView *) NULL,quantum_info, |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 570 | quantum_type,pixels,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 571 | count=WriteBlob(image,length,pixels); |
| 572 | if (count != (ssize_t) length) |
| 573 | break; |
| 574 | if (image->previous == (Image *) NULL) |
| 575 | { |
cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 576 | status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y, |
cristy | 566c5a8 | 2010-06-06 15:37:51 +0000 | [diff] [blame] | 577 | image->rows); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 578 | if (status == MagickFalse) |
| 579 | break; |
| 580 | } |
| 581 | } |
| 582 | quantum_info=DestroyQuantumInfo(quantum_info); |
| 583 | if (GetNextImageInList(image) == (Image *) NULL) |
| 584 | break; |
| 585 | image=SyncNextImageInList(image); |
| 586 | status=SetImageProgress(image,SaveImagesTag,scene++, |
| 587 | GetImageListLength(image)); |
| 588 | if (status == MagickFalse) |
| 589 | break; |
| 590 | } while (image_info->adjoin != MagickFalse); |
| 591 | (void) CloseBlob(image); |
| 592 | return(MagickTrue); |
| 593 | } |