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 | 7a610d4 | 2017-09-14 07:18:36 -0400 | [diff] [blame] | 181 | status=MagickTrue; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 182 | do |
| 183 | { |
| 184 | /* |
| 185 | Read pixels to virtual canvas image then push to image. |
| 186 | */ |
| 187 | if ((image_info->ping != MagickFalse) && (image_info->number_scenes != 0)) |
| 188 | if (image->scene >= (image_info->scene+image_info->number_scenes-1)) |
| 189 | break; |
cristy | acabb84 | 2014-12-14 23:36:33 +0000 | [diff] [blame] | 190 | status=SetImageExtent(image,image->columns,image->rows,exception); |
| 191 | if (status == MagickFalse) |
Cristy | f420dab | 2017-09-13 10:49:56 -0400 | [diff] [blame] | 192 | break; |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 193 | if (scene == 0) |
| 194 | { |
| 195 | length=GetQuantumExtent(canvas_image,quantum_info,quantum_type); |
cristy | b3f97ae | 2015-05-18 12:29:32 +0000 | [diff] [blame] | 196 | pixels=(const unsigned char *) ReadBlobStream(image,length, |
| 197 | GetQuantumPixels(quantum_info),&count); |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 198 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 199 | for (y=0; y < (ssize_t) image->extract_info.height; y++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 200 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 201 | register const Quantum |
dirk | 05d2ff7 | 2015-11-18 23:13:43 +0100 | [diff] [blame] | 202 | *magick_restrict p; |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 203 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 204 | register Quantum |
dirk | 05d2ff7 | 2015-11-18 23:13:43 +0100 | [diff] [blame] | 205 | *magick_restrict q; |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 206 | |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 207 | register ssize_t |
| 208 | x; |
| 209 | |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 210 | if (count != (ssize_t) length) |
| 211 | { |
Cristy | 7a610d4 | 2017-09-14 07:18:36 -0400 | [diff] [blame] | 212 | status=MagickFalse; |
cristy | 128e20d | 2012-01-11 01:24:58 +0000 | [diff] [blame] | 213 | ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", |
| 214 | image->filename); |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 215 | break; |
| 216 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 217 | q=GetAuthenticPixels(canvas_image,0,0,canvas_image->columns,1,exception); |
cristy | acd2ed2 | 2011-08-30 01:44:23 +0000 | [diff] [blame] | 218 | if (q == (Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 219 | break; |
| 220 | length=ImportQuantumPixels(canvas_image,(CacheView *) NULL,quantum_info, |
| 221 | quantum_type,pixels,exception); |
| 222 | if (SyncAuthenticPixels(canvas_image,exception) == MagickFalse) |
| 223 | break; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 224 | if (((y-image->extract_info.y) >= 0) && |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 225 | ((y-image->extract_info.y) < (ssize_t) image->rows)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 226 | { |
| 227 | p=GetVirtualPixels(canvas_image,canvas_image->extract_info.x,0, |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 228 | image->columns,1,exception); |
| 229 | q=QueueAuthenticPixels(image,0,y-image->extract_info.y,image->columns, |
| 230 | 1,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 231 | if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 232 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 233 | for (x=0; x < (ssize_t) image->columns; x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 234 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 235 | SetPixelRed(image,GetPixelRed(canvas_image,p),q); |
| 236 | SetPixelGreen(image,GetPixelGreen(canvas_image,p),q); |
| 237 | SetPixelBlue(image,GetPixelBlue(canvas_image,p),q); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 238 | p+=GetPixelChannels(canvas_image); |
| 239 | q+=GetPixelChannels(image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 240 | } |
| 241 | if (SyncAuthenticPixels(image,exception) == MagickFalse) |
| 242 | break; |
| 243 | } |
| 244 | if (image->previous == (Image *) NULL) |
| 245 | { |
cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 246 | status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y, |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 247 | image->rows); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 248 | if (status == MagickFalse) |
| 249 | break; |
| 250 | } |
cristy | b3f97ae | 2015-05-18 12:29:32 +0000 | [diff] [blame] | 251 | pixels=(const unsigned char *) ReadBlobStream(image,length, |
| 252 | GetQuantumPixels(quantum_info),&count); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 253 | } |
| 254 | SetQuantumImageType(image,quantum_type); |
| 255 | /* |
| 256 | Proceed to next image. |
| 257 | */ |
| 258 | if (image_info->number_scenes != 0) |
| 259 | if (image->scene >= (image_info->scene+image_info->number_scenes-1)) |
| 260 | break; |
| 261 | if (count == (ssize_t) length) |
| 262 | { |
| 263 | /* |
| 264 | Allocate next image structure. |
| 265 | */ |
cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 266 | AcquireNextImage(image_info,image,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 267 | if (GetNextImageInList(image) == (Image *) NULL) |
| 268 | { |
| 269 | image=DestroyImageList(image); |
| 270 | return((Image *) NULL); |
| 271 | } |
| 272 | image=SyncNextImageInList(image); |
| 273 | status=SetImageProgress(image,LoadImagesTag,TellBlob(image), |
| 274 | GetBlobSize(image)); |
| 275 | if (status == MagickFalse) |
| 276 | break; |
| 277 | } |
cristy | 9af8a2a | 2009-10-02 13:29:27 +0000 | [diff] [blame] | 278 | scene++; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 279 | } while (count == (ssize_t) length); |
| 280 | quantum_info=DestroyQuantumInfo(quantum_info); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 281 | canvas_image=DestroyImage(canvas_image); |
| 282 | (void) CloseBlob(image); |
Cristy | 7a610d4 | 2017-09-14 07:18:36 -0400 | [diff] [blame] | 283 | if (status == MagickFalse) |
| 284 | return(DestroyImageList(image)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 285 | return(GetFirstImageInList(image)); |
| 286 | } |
| 287 | |
| 288 | /* |
| 289 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 290 | % % |
| 291 | % % |
| 292 | % % |
| 293 | % R e g i s t e r R A W I m a g e % |
| 294 | % % |
| 295 | % % |
| 296 | % % |
| 297 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 298 | % |
| 299 | % RegisterRAWImage() adds attributes for the RAW image format to the list of |
| 300 | % supported formats. The attributes include the image format tag, a method to |
| 301 | % read and/or write the format, whether the format supports the saving of |
| 302 | % more than one frame to the same file or blob, whether the format supports |
| 303 | % native in-memory I/O, and a brief description of the format. |
| 304 | % |
| 305 | % The format of the RegisterRAWImage method is: |
| 306 | % |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 307 | % size_t RegisterRAWImage(void) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 308 | % |
| 309 | */ |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 310 | ModuleExport size_t RegisterRAWImage(void) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 311 | { |
| 312 | MagickInfo |
| 313 | *entry; |
| 314 | |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 315 | entry=AcquireMagickInfo("RAW","R","Raw red samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 316 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 317 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 318 | entry->flags|=CoderRawSupportFlag; |
| 319 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 320 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 321 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 322 | entry=AcquireMagickInfo("RAW","C","Raw cyan samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 323 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 324 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 325 | entry->flags|=CoderRawSupportFlag; |
| 326 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 327 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 328 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 329 | entry=AcquireMagickInfo("RAW","G","Raw green samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 330 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 331 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 332 | entry->flags|=CoderRawSupportFlag; |
| 333 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 334 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 335 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 336 | entry=AcquireMagickInfo("RAW","M","Raw magenta samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 337 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 338 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 339 | entry->flags|=CoderRawSupportFlag; |
| 340 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 341 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 342 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 343 | entry=AcquireMagickInfo("RAW","B","Raw blue samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 344 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 345 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 346 | entry->flags|=CoderRawSupportFlag; |
| 347 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 348 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 349 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 350 | entry=AcquireMagickInfo("RAW","Y","Raw yellow samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 351 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 352 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 353 | entry->flags|=CoderRawSupportFlag; |
| 354 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 355 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 356 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 357 | entry=AcquireMagickInfo("RAW","A","Raw alpha samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 358 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 359 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 360 | entry->flags|=CoderRawSupportFlag; |
| 361 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 362 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 363 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 364 | entry=AcquireMagickInfo("RAW","O","Raw opacity samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 365 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 366 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 367 | entry->flags|=CoderRawSupportFlag; |
| 368 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 369 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 370 | (void) RegisterMagickInfo(entry); |
dirk | 06b627a | 2015-04-06 18:59:17 +0000 | [diff] [blame] | 371 | entry=AcquireMagickInfo("RAW","K","Raw black samples"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 372 | entry->decoder=(DecodeImageHandler *) ReadRAWImage; |
| 373 | entry->encoder=(EncodeImageHandler *) WriteRAWImage; |
dirk | 08e9a11 | 2015-02-22 01:51:41 +0000 | [diff] [blame] | 374 | entry->flags|=CoderRawSupportFlag; |
| 375 | entry->flags|=CoderEndianSupportFlag; |
cristy | 32ccaaa | 2015-06-14 19:13:46 +0000 | [diff] [blame] | 376 | entry->format_type=ImplicitFormatType; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 377 | (void) RegisterMagickInfo(entry); |
| 378 | return(MagickImageCoderSignature); |
| 379 | } |
| 380 | |
| 381 | /* |
| 382 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 383 | % % |
| 384 | % % |
| 385 | % % |
| 386 | % U n r e g i s t e r R A W I m a g e % |
| 387 | % % |
| 388 | % % |
| 389 | % % |
| 390 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 391 | % |
| 392 | % UnregisterRAWImage() removes format registrations made by the RAW module |
| 393 | % from the list of supported formats. |
| 394 | % |
| 395 | % The format of the UnregisterRAWImage method is: |
| 396 | % |
| 397 | % UnregisterRAWImage(void) |
| 398 | % |
| 399 | */ |
| 400 | ModuleExport void UnregisterRAWImage(void) |
| 401 | { |
| 402 | (void) UnregisterMagickInfo("R"); |
| 403 | (void) UnregisterMagickInfo("C"); |
| 404 | (void) UnregisterMagickInfo("G"); |
| 405 | (void) UnregisterMagickInfo("M"); |
| 406 | (void) UnregisterMagickInfo("B"); |
| 407 | (void) UnregisterMagickInfo("Y"); |
| 408 | (void) UnregisterMagickInfo("A"); |
| 409 | (void) UnregisterMagickInfo("O"); |
| 410 | (void) UnregisterMagickInfo("K"); |
| 411 | } |
| 412 | |
| 413 | /* |
| 414 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 415 | % % |
| 416 | % % |
| 417 | % % |
| 418 | % W r i t e R A W I m a g e % |
| 419 | % % |
| 420 | % % |
| 421 | % % |
| 422 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 423 | % |
| 424 | % WriteRAWImage() writes an image to a file as raw intensity values. |
| 425 | % |
| 426 | % The format of the WriteRAWImage method is: |
| 427 | % |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 428 | % MagickBooleanType WriteRAWImage(const ImageInfo *image_info, |
| 429 | % Image *image,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 430 | % |
| 431 | % A description of each parameter follows. |
| 432 | % |
| 433 | % o image_info: the image info. |
| 434 | % |
| 435 | % o image: The image. |
| 436 | % |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 437 | % o exception: return any errors or warnings in this structure. |
| 438 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 439 | */ |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 440 | static MagickBooleanType WriteRAWImage(const ImageInfo *image_info,Image *image, |
| 441 | ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 442 | { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 443 | MagickOffsetType |
| 444 | scene; |
| 445 | |
| 446 | QuantumInfo |
| 447 | *quantum_info; |
| 448 | |
| 449 | QuantumType |
| 450 | quantum_type; |
| 451 | |
| 452 | MagickBooleanType |
| 453 | status; |
| 454 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 455 | register const Quantum |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 456 | *p; |
| 457 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 458 | size_t |
| 459 | length; |
| 460 | |
cristy | c6da28e | 2011-04-28 01:41:35 +0000 | [diff] [blame] | 461 | ssize_t |
| 462 | count, |
| 463 | y; |
| 464 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 465 | unsigned char |
| 466 | *pixels; |
| 467 | |
| 468 | /* |
| 469 | Open output image file. |
| 470 | */ |
| 471 | assert(image_info != (const ImageInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 472 | assert(image_info->signature == MagickCoreSignature); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 473 | assert(image != (Image *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 474 | assert(image->signature == MagickCoreSignature); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 475 | if (image->debug != MagickFalse) |
| 476 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 477 | assert(exception != (ExceptionInfo *) NULL); |
cristy | e1c94d9 | 2015-06-28 12:16:33 +0000 | [diff] [blame] | 478 | assert(exception->signature == MagickCoreSignature); |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 479 | status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 480 | if (status == MagickFalse) |
| 481 | return(status); |
| 482 | switch (*image->magick) |
| 483 | { |
| 484 | case 'A': |
| 485 | case 'a': |
| 486 | { |
| 487 | quantum_type=AlphaQuantum; |
| 488 | break; |
| 489 | } |
| 490 | case 'B': |
| 491 | case 'b': |
| 492 | { |
| 493 | quantum_type=BlueQuantum; |
| 494 | break; |
| 495 | } |
| 496 | case 'C': |
| 497 | case 'c': |
| 498 | { |
| 499 | quantum_type=CyanQuantum; |
| 500 | if (image->colorspace == CMYKColorspace) |
| 501 | break; |
| 502 | ThrowWriterException(ImageError,"ColorSeparatedImageRequired"); |
| 503 | } |
| 504 | case 'g': |
| 505 | case 'G': |
| 506 | { |
| 507 | quantum_type=GreenQuantum; |
| 508 | break; |
| 509 | } |
| 510 | case 'I': |
| 511 | case 'i': |
| 512 | { |
| 513 | quantum_type=IndexQuantum; |
| 514 | break; |
| 515 | } |
| 516 | case 'K': |
| 517 | case 'k': |
| 518 | { |
| 519 | quantum_type=BlackQuantum; |
| 520 | if (image->colorspace == CMYKColorspace) |
| 521 | break; |
| 522 | ThrowWriterException(ImageError,"ColorSeparatedImageRequired"); |
| 523 | } |
| 524 | case 'M': |
| 525 | case 'm': |
| 526 | { |
| 527 | quantum_type=MagentaQuantum; |
| 528 | if (image->colorspace == CMYKColorspace) |
| 529 | break; |
| 530 | ThrowWriterException(ImageError,"ColorSeparatedImageRequired"); |
| 531 | } |
| 532 | case 'o': |
| 533 | case 'O': |
| 534 | { |
| 535 | quantum_type=OpacityQuantum; |
| 536 | break; |
| 537 | } |
| 538 | case 'R': |
| 539 | case 'r': |
| 540 | { |
| 541 | quantum_type=RedQuantum; |
| 542 | break; |
| 543 | } |
| 544 | case 'Y': |
| 545 | case 'y': |
| 546 | { |
| 547 | quantum_type=YellowQuantum; |
| 548 | if (image->colorspace == CMYKColorspace) |
| 549 | break; |
| 550 | ThrowWriterException(ImageError,"ColorSeparatedImageRequired"); |
| 551 | } |
| 552 | default: |
| 553 | { |
| 554 | quantum_type=GrayQuantum; |
| 555 | break; |
| 556 | } |
| 557 | } |
| 558 | scene=0; |
| 559 | do |
| 560 | { |
| 561 | /* |
| 562 | Convert image to RAW raster pixels. |
| 563 | */ |
cristy | 5f766ef | 2014-12-14 21:12:47 +0000 | [diff] [blame] | 564 | quantum_info=AcquireQuantumInfo(image_info,image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 565 | if (quantum_info == (QuantumInfo *) NULL) |
| 566 | ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed"); |
cristy | b3f97ae | 2015-05-18 12:29:32 +0000 | [diff] [blame] | 567 | pixels=(unsigned char *) GetQuantumPixels(quantum_info); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 568 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 569 | { |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 570 | p=GetVirtualPixels(image,0,y,image->columns,1,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 571 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 572 | break; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 573 | length=ExportQuantumPixels(image,(CacheView *) NULL,quantum_info, |
cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 574 | quantum_type,pixels,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 575 | count=WriteBlob(image,length,pixels); |
| 576 | if (count != (ssize_t) length) |
| 577 | break; |
| 578 | if (image->previous == (Image *) NULL) |
| 579 | { |
cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 580 | status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y, |
cristy | 566c5a8 | 2010-06-06 15:37:51 +0000 | [diff] [blame] | 581 | image->rows); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 582 | if (status == MagickFalse) |
| 583 | break; |
| 584 | } |
| 585 | } |
| 586 | quantum_info=DestroyQuantumInfo(quantum_info); |
| 587 | if (GetNextImageInList(image) == (Image *) NULL) |
| 588 | break; |
| 589 | image=SyncNextImageInList(image); |
| 590 | status=SetImageProgress(image,SaveImagesTag,scene++, |
| 591 | GetImageListLength(image)); |
| 592 | if (status == MagickFalse) |
| 593 | break; |
| 594 | } while (image_info->adjoin != MagickFalse); |
| 595 | (void) CloseBlob(image); |
| 596 | return(MagickTrue); |
| 597 | } |