cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
| 2 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 3 | % % |
| 4 | % % |
| 5 | % % |
| 6 | % SSSSS TTTTT RRRR EEEEE AAA M M % |
| 7 | % SS T R R E A A MM MM % |
| 8 | % SSS T RRRR EEE AAAAA M M M % |
| 9 | % SS T R R E A A M M % |
| 10 | % SSSSS T R R EEEEE A A M M % |
| 11 | % % |
| 12 | % % |
| 13 | % MagickCore Pixel Stream Methods % |
| 14 | % % |
| 15 | % Software Design % |
| 16 | % John Cristy % |
| 17 | % March 2000 % |
| 18 | % % |
| 19 | % % |
cristy | 7e41fe8 | 2010-12-04 23:12:08 +0000 | [diff] [blame] | 20 | % Copyright 1999-2011 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 | /* |
| 41 | Include declarations. |
| 42 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 43 | #include "MagickCore/studio.h" |
| 44 | #include "MagickCore/blob.h" |
| 45 | #include "MagickCore/blob-private.h" |
| 46 | #include "MagickCore/cache.h" |
| 47 | #include "MagickCore/cache-private.h" |
| 48 | #include "MagickCore/color-private.h" |
| 49 | #include "MagickCore/composite-private.h" |
| 50 | #include "MagickCore/constitute.h" |
| 51 | #include "MagickCore/exception.h" |
| 52 | #include "MagickCore/exception-private.h" |
| 53 | #include "MagickCore/geometry.h" |
| 54 | #include "MagickCore/memory_.h" |
| 55 | #include "MagickCore/pixel.h" |
| 56 | #include "MagickCore/pixel-accessor.h" |
| 57 | #include "MagickCore/quantum.h" |
| 58 | #include "MagickCore/quantum-private.h" |
| 59 | #include "MagickCore/semaphore.h" |
| 60 | #include "MagickCore/stream.h" |
| 61 | #include "MagickCore/stream-private.h" |
| 62 | #include "MagickCore/string_.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 63 | |
| 64 | /* |
| 65 | Typedef declaractions. |
| 66 | */ |
| 67 | struct _StreamInfo |
| 68 | { |
| 69 | const ImageInfo |
| 70 | *image_info; |
| 71 | |
| 72 | const Image |
| 73 | *image; |
| 74 | |
| 75 | Image |
| 76 | *stream; |
| 77 | |
| 78 | QuantumInfo |
| 79 | *quantum_info; |
| 80 | |
| 81 | char |
| 82 | *map; |
| 83 | |
| 84 | StorageType |
| 85 | storage_type; |
| 86 | |
| 87 | unsigned char |
| 88 | *pixels; |
| 89 | |
| 90 | RectangleInfo |
| 91 | extract_info; |
| 92 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 93 | ssize_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 94 | y; |
| 95 | |
| 96 | ExceptionInfo |
| 97 | *exception; |
| 98 | |
| 99 | const void |
| 100 | *client_data; |
| 101 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 102 | size_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 103 | signature; |
| 104 | }; |
| 105 | |
| 106 | /* |
| 107 | Declare pixel cache interfaces. |
| 108 | */ |
| 109 | #if defined(__cplusplus) || defined(c_plusplus) |
| 110 | extern "C" { |
| 111 | #endif |
| 112 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 113 | static const Quantum |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 114 | *GetVirtualPixelStream(const Image *,const VirtualPixelMethod,const ssize_t, |
| 115 | const ssize_t,const size_t,const size_t,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 116 | |
| 117 | static MagickBooleanType |
| 118 | StreamImagePixels(const StreamInfo *,const Image *,ExceptionInfo *), |
| 119 | SyncAuthenticPixelsStream(Image *,ExceptionInfo *); |
| 120 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 121 | static Quantum |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 122 | *QueueAuthenticPixelsStream(Image *,const ssize_t,const ssize_t,const size_t, |
| 123 | const size_t,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 124 | |
| 125 | #if defined(__cplusplus) || defined(c_plusplus) |
| 126 | } |
| 127 | #endif |
| 128 | |
| 129 | /* |
| 130 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 131 | % % |
| 132 | % % |
| 133 | % % |
| 134 | + A c q u i r e S t r e a m I n f o % |
| 135 | % % |
| 136 | % % |
| 137 | % % |
| 138 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 139 | % |
| 140 | % AcquireStreamInfo() allocates the StreamInfo structure. |
| 141 | % |
| 142 | % The format of the AcquireStreamInfo method is: |
| 143 | % |
cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 144 | % StreamInfo *AcquireStreamInfo(const ImageInfo *image_info, |
| 145 | % ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 146 | % |
| 147 | % A description of each parameter follows: |
| 148 | % |
| 149 | % o image_info: the image info. |
| 150 | % |
cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 151 | % o exception: return any errors or warnings in this structure. |
| 152 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 153 | */ |
cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 154 | MagickExport StreamInfo *AcquireStreamInfo(const ImageInfo *image_info, |
| 155 | ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 156 | { |
| 157 | StreamInfo |
| 158 | *stream_info; |
| 159 | |
cristy | 73bd4a5 | 2010-10-05 11:24:23 +0000 | [diff] [blame] | 160 | stream_info=(StreamInfo *) AcquireMagickMemory(sizeof(*stream_info)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 161 | if (stream_info == (StreamInfo *) NULL) |
| 162 | ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed"); |
| 163 | (void) ResetMagickMemory(stream_info,0,sizeof(*stream_info)); |
| 164 | stream_info->pixels=(unsigned char *) AcquireMagickMemory( |
| 165 | sizeof(*stream_info->pixels)); |
| 166 | if (stream_info->pixels == (unsigned char *) NULL) |
| 167 | ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed"); |
| 168 | stream_info->map=ConstantString("RGB"); |
| 169 | stream_info->storage_type=CharPixel; |
cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 170 | stream_info->stream=AcquireImage(image_info,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 171 | stream_info->signature=MagickSignature; |
| 172 | return(stream_info); |
| 173 | } |
| 174 | |
| 175 | /* |
| 176 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 177 | % % |
| 178 | % % |
| 179 | % % |
| 180 | + D e s t r o y P i x e l S t r e a m % |
| 181 | % % |
| 182 | % % |
| 183 | % % |
| 184 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 185 | % |
| 186 | % DestroyPixelStream() deallocates memory associated with the pixel stream. |
| 187 | % |
| 188 | % The format of the DestroyPixelStream() method is: |
| 189 | % |
| 190 | % void DestroyPixelStream(Image *image) |
| 191 | % |
| 192 | % A description of each parameter follows: |
| 193 | % |
| 194 | % o image: the image. |
| 195 | % |
| 196 | */ |
| 197 | |
| 198 | static inline void RelinquishStreamPixels(CacheInfo *cache_info) |
| 199 | { |
| 200 | assert(cache_info != (CacheInfo *) NULL); |
| 201 | if (cache_info->mapped == MagickFalse) |
| 202 | (void) RelinquishMagickMemory(cache_info->pixels); |
| 203 | else |
| 204 | (void) UnmapBlob(cache_info->pixels,(size_t) cache_info->length); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 205 | cache_info->pixels=(Quantum *) NULL; |
| 206 | cache_info->metacontent=(void *) NULL; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 207 | cache_info->length=0; |
| 208 | cache_info->mapped=MagickFalse; |
| 209 | } |
| 210 | |
| 211 | static void DestroyPixelStream(Image *image) |
| 212 | { |
| 213 | CacheInfo |
| 214 | *cache_info; |
| 215 | |
| 216 | MagickBooleanType |
| 217 | destroy; |
| 218 | |
| 219 | assert(image != (Image *) NULL); |
| 220 | assert(image->signature == MagickSignature); |
| 221 | if (image->debug != MagickFalse) |
| 222 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 223 | cache_info=(CacheInfo *) image->cache; |
| 224 | assert(cache_info->signature == MagickSignature); |
| 225 | destroy=MagickFalse; |
cristy | f84a193 | 2010-01-03 18:00:18 +0000 | [diff] [blame] | 226 | LockSemaphoreInfo(cache_info->semaphore); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 227 | cache_info->reference_count--; |
| 228 | if (cache_info->reference_count == 0) |
| 229 | destroy=MagickTrue; |
cristy | f84a193 | 2010-01-03 18:00:18 +0000 | [diff] [blame] | 230 | UnlockSemaphoreInfo(cache_info->semaphore); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 231 | if (destroy == MagickFalse) |
| 232 | return; |
| 233 | RelinquishStreamPixels(cache_info); |
| 234 | if (cache_info->nexus_info != (NexusInfo **) NULL) |
| 235 | cache_info->nexus_info=DestroyPixelCacheNexus(cache_info->nexus_info, |
| 236 | cache_info->number_threads); |
| 237 | if (cache_info->disk_semaphore != (SemaphoreInfo *) NULL) |
| 238 | DestroySemaphoreInfo(&cache_info->disk_semaphore); |
| 239 | if (cache_info->semaphore != (SemaphoreInfo *) NULL) |
| 240 | DestroySemaphoreInfo(&cache_info->semaphore); |
| 241 | cache_info=(CacheInfo *) RelinquishMagickMemory(cache_info); |
| 242 | } |
| 243 | |
| 244 | /* |
| 245 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 246 | % % |
| 247 | % % |
| 248 | % % |
| 249 | + D e s t r o y S t r e a m I n f o % |
| 250 | % % |
| 251 | % % |
| 252 | % % |
| 253 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 254 | % |
| 255 | % DestroyStreamInfo() destroys memory associated with the StreamInfo |
| 256 | % structure. |
| 257 | % |
| 258 | % The format of the DestroyStreamInfo method is: |
| 259 | % |
| 260 | % StreamInfo *DestroyStreamInfo(StreamInfo *stream_info) |
| 261 | % |
| 262 | % A description of each parameter follows: |
| 263 | % |
| 264 | % o stream_info: the stream info. |
| 265 | % |
| 266 | */ |
| 267 | MagickExport StreamInfo *DestroyStreamInfo(StreamInfo *stream_info) |
| 268 | { |
| 269 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"..."); |
| 270 | assert(stream_info != (StreamInfo *) NULL); |
| 271 | assert(stream_info->signature == MagickSignature); |
| 272 | if (stream_info->map != (char *) NULL) |
| 273 | stream_info->map=DestroyString(stream_info->map); |
| 274 | if (stream_info->pixels != (unsigned char *) NULL) |
| 275 | stream_info->pixels=(unsigned char *) RelinquishMagickMemory( |
| 276 | stream_info->pixels); |
| 277 | if (stream_info->stream != (Image *) NULL) |
| 278 | { |
| 279 | (void) CloseBlob(stream_info->stream); |
| 280 | stream_info->stream=DestroyImage(stream_info->stream); |
| 281 | } |
| 282 | if (stream_info->quantum_info != (QuantumInfo *) NULL) |
| 283 | stream_info->quantum_info=DestroyQuantumInfo(stream_info->quantum_info); |
| 284 | stream_info->signature=(~MagickSignature); |
| 285 | stream_info=(StreamInfo *) RelinquishMagickMemory(stream_info); |
| 286 | return(stream_info); |
| 287 | } |
| 288 | |
| 289 | /* |
| 290 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 291 | % % |
| 292 | % % |
| 293 | % % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 294 | + G e t A u t h e n t i c M e t a c o n t e n t F r o m S t r e a m % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 295 | % % |
| 296 | % % |
| 297 | % % |
| 298 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 299 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 300 | % GetAuthenticMetacontentFromStream() returns the metacontent corresponding |
| 301 | % with the last call to QueueAuthenticPixelsStream() or |
| 302 | % GetAuthenticPixelsStream(). |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 303 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 304 | % The format of the GetAuthenticMetacontentFromStream() method is: |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 305 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 306 | % void *GetAuthenticMetacontentFromStream(const Image *image) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 307 | % |
| 308 | % A description of each parameter follows: |
| 309 | % |
| 310 | % o image: the image. |
| 311 | % |
| 312 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 313 | static void *GetAuthenticMetacontentFromStream(const Image *image) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 314 | { |
| 315 | CacheInfo |
| 316 | *cache_info; |
| 317 | |
| 318 | assert(image != (Image *) NULL); |
| 319 | assert(image->signature == MagickSignature); |
| 320 | if (image->debug != MagickFalse) |
| 321 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 322 | cache_info=(CacheInfo *) image->cache; |
| 323 | assert(cache_info->signature == MagickSignature); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 324 | return(cache_info->metacontent); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | /* |
| 328 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 329 | % % |
| 330 | % % |
| 331 | % % |
| 332 | + G e t A u t h e n t i c P i x e l S t r e a m % |
| 333 | % % |
| 334 | % % |
| 335 | % % |
| 336 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 337 | % |
| 338 | % GetAuthenticPixelsStream() gets pixels from the in-memory or disk pixel |
| 339 | % cache as defined by the geometry parameters. A pointer to the pixels is |
| 340 | % returned if the pixels are transferred, otherwise a NULL is returned. For |
| 341 | % streams this method is a no-op. |
| 342 | % |
| 343 | % The format of the GetAuthenticPixelsStream() method is: |
| 344 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 345 | % Quantum *GetAuthenticPixelsStream(Image *image,const ssize_t x, |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 346 | % const ssize_t y,const size_t columns,const size_t rows, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 347 | % ExceptionInfo *exception) |
| 348 | % |
| 349 | % A description of each parameter follows: |
| 350 | % |
| 351 | % o image: the image. |
| 352 | % |
| 353 | % o x,y,columns,rows: These values define the perimeter of a region of |
| 354 | % pixels. |
| 355 | % |
| 356 | % o exception: return any errors or warnings in this structure. |
| 357 | % |
| 358 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 359 | static Quantum *GetAuthenticPixelsStream(Image *image,const ssize_t x, |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 360 | const ssize_t y,const size_t columns,const size_t rows, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 361 | ExceptionInfo *exception) |
| 362 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 363 | Quantum |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 364 | *pixels; |
| 365 | |
| 366 | assert(image != (Image *) NULL); |
| 367 | assert(image->signature == MagickSignature); |
| 368 | if (image->debug != MagickFalse) |
| 369 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 370 | pixels=QueueAuthenticPixelsStream(image,x,y,columns,rows,exception); |
| 371 | return(pixels); |
| 372 | } |
| 373 | |
| 374 | /* |
| 375 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 376 | % % |
| 377 | % % |
| 378 | % % |
| 379 | + G e t A u t h e n t i c P i x e l F r o m S t e a m % |
| 380 | % % |
| 381 | % % |
| 382 | % % |
| 383 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 384 | % |
| 385 | % GetAuthenticPixelsFromStream() returns the pixels associated with the last |
| 386 | % call to QueueAuthenticPixelsStream() or GetAuthenticPixelsStream(). |
| 387 | % |
| 388 | % The format of the GetAuthenticPixelsFromStream() method is: |
| 389 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 390 | % Quantum *GetAuthenticPixelsFromStream(const Image image) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 391 | % |
| 392 | % A description of each parameter follows: |
| 393 | % |
| 394 | % o image: the image. |
| 395 | % |
| 396 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 397 | static Quantum *GetAuthenticPixelsFromStream(const Image *image) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 398 | { |
| 399 | CacheInfo |
| 400 | *cache_info; |
| 401 | |
| 402 | assert(image != (Image *) NULL); |
| 403 | assert(image->signature == MagickSignature); |
| 404 | if (image->debug != MagickFalse) |
| 405 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 406 | cache_info=(CacheInfo *) image->cache; |
| 407 | assert(cache_info->signature == MagickSignature); |
| 408 | return(cache_info->pixels); |
| 409 | } |
| 410 | |
| 411 | /* |
| 412 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 413 | % % |
| 414 | % % |
| 415 | % % |
| 416 | + G e t O n e A u t h e n t i c P i x e l F r o m S t r e a m % |
| 417 | % % |
| 418 | % % |
| 419 | % % |
| 420 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 421 | % |
| 422 | % GetOneAuthenticPixelFromStream() returns a single pixel at the specified |
| 423 | % (x,y) location. The image background color is returned if an error occurs. |
| 424 | % |
| 425 | % The format of the GetOneAuthenticPixelFromStream() method is: |
| 426 | % |
| 427 | % MagickBooleanType GetOneAuthenticPixelFromStream(const Image image, |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame^] | 428 | % const ssize_t x,const ssize_t y,Quantum *pixel, |
cristy | cfae90a | 2010-10-04 14:43:33 +0000 | [diff] [blame] | 429 | % 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: the image. |
| 434 | % |
| 435 | % o pixel: return a pixel at the specified (x,y) location. |
| 436 | % |
| 437 | % o x,y: These values define the location of the pixel to return. |
| 438 | % |
| 439 | % o exception: return any errors or warnings in this structure. |
| 440 | % |
| 441 | */ |
| 442 | static MagickBooleanType GetOneAuthenticPixelFromStream(Image *image, |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame^] | 443 | const ssize_t x,const ssize_t y,Quantum *pixel,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 444 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 445 | register Quantum |
| 446 | *q; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 447 | |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame^] | 448 | register ssize_t |
| 449 | i; |
| 450 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 451 | assert(image != (Image *) NULL); |
| 452 | assert(image->signature == MagickSignature); |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame^] | 453 | (void) memset(pixel,0,MaxPixelChannels*sizeof(*pixel)); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 454 | q=GetAuthenticPixelsStream(image,x,y,1,1,exception); |
| 455 | if (q != (Quantum *) NULL) |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame^] | 456 | { |
| 457 | pixel[RedPixelChannel]=image->background_color.red; |
| 458 | pixel[GreenPixelChannel]=image->background_color.green; |
| 459 | pixel[BluePixelChannel]=image->background_color.blue; |
| 460 | pixel[AlphaPixelChannel]=image->background_color.alpha; |
| 461 | return(MagickFalse); |
| 462 | } |
| 463 | for (i=0; i < (ssize_t) GetPixelChannels(image); i++) |
| 464 | { |
| 465 | PixelChannel |
| 466 | channel; |
| 467 | |
| 468 | channel=GetPixelChannelMapChannel(image,(PixelChannel) i); |
| 469 | pixel[channel]=q[i]; |
| 470 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 471 | return(MagickTrue); |
| 472 | } |
| 473 | |
| 474 | /* |
| 475 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 476 | % % |
| 477 | % % |
| 478 | % % |
| 479 | + G e t O n e V i r t u a l P i x e l F r o m S t r e a m % |
| 480 | % % |
| 481 | % % |
| 482 | % % |
| 483 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 484 | % |
| 485 | % GetOneVirtualPixelFromStream() returns a single pixel at the specified |
| 486 | % (x.y) location. The image background color is returned if an error occurs. |
| 487 | % |
| 488 | % The format of the GetOneVirtualPixelFromStream() method is: |
| 489 | % |
| 490 | % MagickBooleanType GetOneVirtualPixelFromStream(const Image image, |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 491 | % const VirtualPixelMethod virtual_pixel_method,const ssize_t x, |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame^] | 492 | % const ssize_t y,Quantum *pixel,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 493 | % |
| 494 | % A description of each parameter follows: |
| 495 | % |
| 496 | % o image: the image. |
| 497 | % |
| 498 | % o virtual_pixel_method: the virtual pixel method. |
| 499 | % |
| 500 | % o x,y: These values define the location of the pixel to return. |
| 501 | % |
| 502 | % o pixel: return a pixel at the specified (x,y) location. |
| 503 | % |
| 504 | % o exception: return any errors or warnings in this structure. |
| 505 | % |
| 506 | */ |
| 507 | static MagickBooleanType GetOneVirtualPixelFromStream(const Image *image, |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 508 | const VirtualPixelMethod virtual_pixel_method,const ssize_t x,const ssize_t y, |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame^] | 509 | Quantum *pixel,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 510 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 511 | const Quantum |
cristy | 01cdc90 | 2011-08-31 01:05:44 +0000 | [diff] [blame] | 512 | *p; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 513 | |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame^] | 514 | register ssize_t |
| 515 | i; |
| 516 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 517 | assert(image != (Image *) NULL); |
| 518 | assert(image->signature == MagickSignature); |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame^] | 519 | (void) memset(pixel,0,MaxPixelChannels*sizeof(*pixel)); |
cristy | 01cdc90 | 2011-08-31 01:05:44 +0000 | [diff] [blame] | 520 | p=GetVirtualPixelStream(image,virtual_pixel_method,x,y,1,1,exception); |
| 521 | if (p == (const Quantum *) NULL) |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame^] | 522 | { |
| 523 | pixel[RedPixelChannel]=image->background_color.red; |
| 524 | pixel[GreenPixelChannel]=image->background_color.green; |
| 525 | pixel[BluePixelChannel]=image->background_color.blue; |
| 526 | pixel[AlphaPixelChannel]=image->background_color.alpha; |
| 527 | return(MagickFalse); |
| 528 | } |
| 529 | for (i=0; i < (ssize_t) GetPixelChannels(image); i++) |
| 530 | { |
| 531 | PixelChannel |
| 532 | channel; |
| 533 | |
| 534 | channel=GetPixelChannelMapChannel(image,(PixelChannel) i); |
| 535 | pixel[channel]=p[i]; |
| 536 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 537 | return(MagickTrue); |
| 538 | } |
| 539 | |
| 540 | /* |
| 541 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 542 | % % |
| 543 | % % |
| 544 | % % |
| 545 | + G e t S t r e a m I n f o C l i e n t D a t a % |
| 546 | % % |
| 547 | % % |
| 548 | % % |
| 549 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 550 | % |
| 551 | % GetStreamInfoClientData() gets the stream info client data. |
| 552 | % |
cristy | 7832dc2 | 2011-09-05 01:21:53 +0000 | [diff] [blame] | 553 | % The format of the GetStreamInfoClientData method is: |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 554 | % |
| 555 | % const void *GetStreamInfoClientData(StreamInfo *stream_info) |
| 556 | % |
| 557 | % A description of each parameter follows: |
| 558 | % |
| 559 | % o stream_info: the stream info. |
| 560 | % |
| 561 | */ |
cristy | 7832dc2 | 2011-09-05 01:21:53 +0000 | [diff] [blame] | 562 | MagickPrivate const void *GetStreamInfoClientData(StreamInfo *stream_info) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 563 | { |
| 564 | assert(stream_info != (StreamInfo *) NULL); |
| 565 | assert(stream_info->signature == MagickSignature); |
| 566 | return(stream_info->client_data); |
| 567 | } |
| 568 | |
| 569 | /* |
| 570 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 571 | % % |
| 572 | % % |
| 573 | % % |
| 574 | + G e t V i r t u a l P i x e l s F r o m S t r e a m % |
| 575 | % % |
| 576 | % % |
| 577 | % % |
| 578 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 579 | % |
| 580 | % GetVirtualPixelsStream() returns the pixels associated with the last |
| 581 | % call to QueueAuthenticPixelsStream() or GetVirtualPixelStream(). |
| 582 | % |
| 583 | % The format of the GetVirtualPixelsStream() method is: |
| 584 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 585 | % const Quantum *GetVirtualPixelsStream(const Image *image) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 586 | % |
| 587 | % A description of each parameter follows: |
| 588 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 589 | % o pixels: return the pixels associated corresponding with the last call to |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 590 | % QueueAuthenticPixelsStream() or GetVirtualPixelStream(). |
| 591 | % |
| 592 | % o image: the image. |
| 593 | % |
| 594 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 595 | static const Quantum *GetVirtualPixelsStream(const Image *image) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 596 | { |
| 597 | CacheInfo |
| 598 | *cache_info; |
| 599 | |
| 600 | assert(image != (Image *) NULL); |
| 601 | assert(image->signature == MagickSignature); |
| 602 | if (image->debug != MagickFalse) |
| 603 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 604 | cache_info=(CacheInfo *) image->cache; |
| 605 | assert(cache_info->signature == MagickSignature); |
| 606 | return(cache_info->pixels); |
| 607 | } |
| 608 | |
| 609 | /* |
| 610 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 611 | % % |
| 612 | % % |
| 613 | % % |
| 614 | + G e t V i r t u a l I n d e x e s F r o m S t r e a m % |
| 615 | % % |
| 616 | % % |
| 617 | % % |
| 618 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 619 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 620 | % GetVirtualMetacontentFromStream() returns the associated pixel |
| 621 | % channels corresponding with the last call to QueueAuthenticPixelsStream() or |
| 622 | % GetVirtualPixelStream(). |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 623 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 624 | % The format of the GetVirtualMetacontentFromStream() method is: |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 625 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 626 | % const void *GetVirtualMetacontentFromStream(const Image *image) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 627 | % |
| 628 | % A description of each parameter follows: |
| 629 | % |
| 630 | % o image: the image. |
| 631 | % |
| 632 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 633 | static const void *GetVirtualMetacontentFromStream( |
| 634 | const Image *image) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 635 | { |
| 636 | CacheInfo |
| 637 | *cache_info; |
| 638 | |
| 639 | assert(image != (Image *) NULL); |
| 640 | assert(image->signature == MagickSignature); |
| 641 | if (image->debug != MagickFalse) |
| 642 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 643 | cache_info=(CacheInfo *) image->cache; |
| 644 | assert(cache_info->signature == MagickSignature); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 645 | return(cache_info->metacontent); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | /* |
| 649 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 650 | % % |
| 651 | % % |
| 652 | % % |
| 653 | + G e t V i r t u a l P i x e l S t r e a m % |
| 654 | % % |
| 655 | % % |
| 656 | % % |
| 657 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 658 | % |
| 659 | % GetVirtualPixelStream() gets pixels from the in-memory or disk pixel cache as |
| 660 | % defined by the geometry parameters. A pointer to the pixels is returned if |
| 661 | % the pixels are transferred, otherwise a NULL is returned. For streams this |
| 662 | % method is a no-op. |
| 663 | % |
| 664 | % The format of the GetVirtualPixelStream() method is: |
| 665 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 666 | % const Quantum *GetVirtualPixelStream(const Image *image, |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 667 | % const VirtualPixelMethod virtual_pixel_method,const ssize_t x, |
| 668 | % const ssize_t y,const size_t columns,const size_t rows, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 669 | % ExceptionInfo *exception) |
| 670 | % |
| 671 | % A description of each parameter follows: |
| 672 | % |
| 673 | % o image: the image. |
| 674 | % |
| 675 | % o virtual_pixel_method: the virtual pixel method. |
| 676 | % |
| 677 | % o x,y,columns,rows: These values define the perimeter of a region of |
| 678 | % pixels. |
| 679 | % |
| 680 | % o exception: return any errors or warnings in this structure. |
| 681 | % |
| 682 | */ |
| 683 | |
| 684 | static inline MagickBooleanType AcquireStreamPixels(CacheInfo *cache_info, |
| 685 | ExceptionInfo *exception) |
| 686 | { |
| 687 | if (cache_info->length != (MagickSizeType) ((size_t) cache_info->length)) |
| 688 | return(MagickFalse); |
| 689 | cache_info->mapped=MagickFalse; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 690 | cache_info->pixels=(Quantum *) AcquireMagickMemory((size_t) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 691 | cache_info->length); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 692 | if (cache_info->pixels == (Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 693 | { |
| 694 | cache_info->mapped=MagickTrue; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 695 | cache_info->pixels=(Quantum *) MapBlob(-1,IOMode,0,(size_t) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 696 | cache_info->length); |
| 697 | } |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 698 | if (cache_info->pixels == (Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 699 | { |
| 700 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 701 | ResourceLimitError,"MemoryAllocationFailed","`%s'", |
| 702 | cache_info->filename); |
| 703 | return(MagickFalse); |
| 704 | } |
| 705 | return(MagickTrue); |
| 706 | } |
| 707 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 708 | static const Quantum *GetVirtualPixelStream(const Image *image, |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 709 | const VirtualPixelMethod magick_unused(virtual_pixel_method),const ssize_t x, |
| 710 | const ssize_t y,const size_t columns,const size_t rows, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 711 | ExceptionInfo *exception) |
| 712 | { |
| 713 | CacheInfo |
| 714 | *cache_info; |
| 715 | |
| 716 | MagickBooleanType |
| 717 | status; |
| 718 | |
| 719 | MagickSizeType |
| 720 | number_pixels; |
| 721 | |
| 722 | size_t |
| 723 | length; |
| 724 | |
| 725 | /* |
| 726 | Validate pixel cache geometry. |
| 727 | */ |
| 728 | assert(image != (const Image *) NULL); |
| 729 | assert(image->signature == MagickSignature); |
| 730 | if (image->debug != MagickFalse) |
| 731 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
cristy | 5dd7188 | 2010-08-01 20:53:13 +0000 | [diff] [blame] | 732 | if ((x < 0) || (y < 0) || |
| 733 | ((x+(ssize_t) columns) > (ssize_t) image->columns) || |
| 734 | ((y+(ssize_t) rows) > (ssize_t) image->rows) || |
| 735 | (columns == 0) || (rows == 0)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 736 | { |
| 737 | (void) ThrowMagickException(exception,GetMagickModule(),StreamError, |
| 738 | "ImageDoesNotContainTheStreamGeometry","`%s'",image->filename); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 739 | return((Quantum *) NULL); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 740 | } |
| 741 | cache_info=(CacheInfo *) image->cache; |
| 742 | assert(cache_info->signature == MagickSignature); |
| 743 | /* |
| 744 | Pixels are stored in a temporary buffer until they are synced to the cache. |
| 745 | */ |
| 746 | number_pixels=(MagickSizeType) columns*rows; |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 747 | length=(size_t) number_pixels*cache_info->number_channels*sizeof(Quantum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 748 | if (cache_info->metacontent_extent != 0) |
| 749 | length+=number_pixels*cache_info->metacontent_extent; |
| 750 | if (cache_info->pixels == (Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 751 | { |
| 752 | cache_info->length=length; |
| 753 | status=AcquireStreamPixels(cache_info,exception); |
| 754 | if (status == MagickFalse) |
cristy | 33503f5 | 2010-10-04 17:32:27 +0000 | [diff] [blame] | 755 | { |
| 756 | cache_info->length=0; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 757 | return((Quantum *) NULL); |
cristy | 33503f5 | 2010-10-04 17:32:27 +0000 | [diff] [blame] | 758 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 759 | } |
| 760 | else |
| 761 | if (cache_info->length != length) |
| 762 | { |
| 763 | RelinquishStreamPixels(cache_info); |
| 764 | cache_info->length=length; |
| 765 | status=AcquireStreamPixels(cache_info,exception); |
| 766 | if (status == MagickFalse) |
cristy | 33503f5 | 2010-10-04 17:32:27 +0000 | [diff] [blame] | 767 | { |
| 768 | cache_info->length=0; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 769 | return((Quantum *) NULL); |
cristy | 33503f5 | 2010-10-04 17:32:27 +0000 | [diff] [blame] | 770 | } |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 771 | } |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 772 | cache_info->metacontent=(void *) NULL; |
| 773 | if (cache_info->metacontent_extent != 0) |
| 774 | cache_info->metacontent=(void *) (cache_info->pixels+number_pixels* |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 775 | cache_info->number_channels); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 776 | return(cache_info->pixels); |
| 777 | } |
| 778 | |
| 779 | /* |
| 780 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 781 | % % |
| 782 | % % |
| 783 | % % |
| 784 | + O p e n S t r e a m % |
| 785 | % % |
| 786 | % % |
| 787 | % % |
| 788 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 789 | % |
| 790 | % OpenStream() opens a stream for writing by the StreamImage() method. |
| 791 | % |
| 792 | % The format of the OpenStream method is: |
| 793 | % |
| 794 | % MagickBooleanType OpenStream(const ImageInfo *image_info, |
| 795 | % StreamInfo *stream_info,const char *filename,ExceptionInfo *exception) |
| 796 | % |
| 797 | % A description of each parameter follows: |
| 798 | % |
| 799 | % o image_info: the image info. |
| 800 | % |
| 801 | % o stream_info: the stream info. |
| 802 | % |
| 803 | % o filename: the stream filename. |
| 804 | % |
| 805 | % o exception: return any errors or warnings in this structure. |
| 806 | % |
| 807 | */ |
| 808 | MagickExport MagickBooleanType OpenStream(const ImageInfo *image_info, |
| 809 | StreamInfo *stream_info,const char *filename,ExceptionInfo *exception) |
| 810 | { |
| 811 | MagickBooleanType |
| 812 | status; |
| 813 | |
| 814 | (void) CopyMagickString(stream_info->stream->filename,filename,MaxTextExtent); |
| 815 | status=OpenBlob(image_info,stream_info->stream,WriteBinaryBlobMode,exception); |
| 816 | return(status); |
| 817 | } |
| 818 | |
| 819 | /* |
| 820 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 821 | % % |
| 822 | % % |
| 823 | % % |
| 824 | + Q u e u e A u t h e n t i c P i x e l s S t r e a m % |
| 825 | % % |
| 826 | % % |
| 827 | % % |
| 828 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 829 | % |
| 830 | % QueueAuthenticPixelsStream() allocates an area to store image pixels as |
| 831 | % defined by the region rectangle and returns a pointer to the area. This |
| 832 | % area is subsequently transferred from the pixel cache with method |
| 833 | % SyncAuthenticPixelsStream(). A pointer to the pixels is returned if the |
| 834 | % pixels are transferred, otherwise a NULL is returned. |
| 835 | % |
| 836 | % The format of the QueueAuthenticPixelsStream() method is: |
| 837 | % |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 838 | % Quantum *QueueAuthenticPixelsStream(Image *image,const ssize_t x, |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 839 | % const ssize_t y,const size_t columns,const size_t rows, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 840 | % ExceptionInfo *exception) |
| 841 | % |
| 842 | % A description of each parameter follows: |
| 843 | % |
| 844 | % o image: the image. |
| 845 | % |
| 846 | % o x,y,columns,rows: These values define the perimeter of a region of |
| 847 | % pixels. |
| 848 | % |
| 849 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 850 | static Quantum *QueueAuthenticPixelsStream(Image *image,const ssize_t x, |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 851 | const ssize_t y,const size_t columns,const size_t rows, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 852 | ExceptionInfo *exception) |
| 853 | { |
| 854 | CacheInfo |
| 855 | *cache_info; |
| 856 | |
| 857 | MagickSizeType |
| 858 | number_pixels; |
| 859 | |
| 860 | size_t |
| 861 | length; |
| 862 | |
| 863 | StreamHandler |
| 864 | stream_handler; |
| 865 | |
| 866 | /* |
| 867 | Validate pixel cache geometry. |
| 868 | */ |
| 869 | assert(image != (Image *) NULL); |
cristy | cfae90a | 2010-10-04 14:43:33 +0000 | [diff] [blame] | 870 | if ((x < 0) || (y < 0) || |
| 871 | ((x+(ssize_t) columns) > (ssize_t) image->columns) || |
| 872 | ((y+(ssize_t) rows) > (ssize_t) image->rows) || |
| 873 | (columns == 0) || (rows == 0)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 874 | { |
| 875 | (void) ThrowMagickException(exception,GetMagickModule(),StreamError, |
| 876 | "ImageDoesNotContainTheStreamGeometry","`%s'",image->filename); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 877 | return((Quantum *) NULL); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 878 | } |
| 879 | stream_handler=GetBlobStreamHandler(image); |
| 880 | if (stream_handler == (StreamHandler) NULL) |
| 881 | { |
| 882 | (void) ThrowMagickException(exception,GetMagickModule(),StreamError, |
| 883 | "NoStreamHandlerIsDefined","`%s'",image->filename); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 884 | return((Quantum *) NULL); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 885 | } |
| 886 | cache_info=(CacheInfo *) image->cache; |
| 887 | assert(cache_info->signature == MagickSignature); |
| 888 | if ((image->storage_class != GetPixelCacheStorageClass(image->cache)) || |
| 889 | (image->colorspace != GetPixelCacheColorspace(image->cache))) |
| 890 | { |
| 891 | if (GetPixelCacheStorageClass(image->cache) == UndefinedClass) |
| 892 | (void) stream_handler(image,(const void *) NULL,(size_t) |
| 893 | cache_info->columns); |
| 894 | cache_info->storage_class=image->storage_class; |
| 895 | cache_info->colorspace=image->colorspace; |
| 896 | cache_info->columns=image->columns; |
| 897 | cache_info->rows=image->rows; |
| 898 | image->cache=cache_info; |
| 899 | } |
| 900 | /* |
| 901 | Pixels are stored in a temporary buffer until they are synced to the cache. |
| 902 | */ |
| 903 | cache_info->columns=columns; |
| 904 | cache_info->rows=rows; |
| 905 | number_pixels=(MagickSizeType) columns*rows; |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 906 | length=(size_t) number_pixels*cache_info->number_channels*sizeof(Quantum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 907 | if (cache_info->metacontent_extent != 0) |
| 908 | length+=number_pixels*cache_info->metacontent_extent; |
| 909 | if (cache_info->pixels == (Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 910 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 911 | cache_info->pixels=(Quantum *) AcquireMagickMemory(length); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 912 | cache_info->length=(MagickSizeType) length; |
| 913 | } |
| 914 | else |
| 915 | if (cache_info->length < (MagickSizeType) length) |
| 916 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 917 | cache_info->pixels=(Quantum *) ResizeMagickMemory( |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 918 | cache_info->pixels,length); |
| 919 | cache_info->length=(MagickSizeType) length; |
| 920 | } |
| 921 | if (cache_info->pixels == (void *) NULL) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 922 | return((Quantum *) NULL); |
| 923 | cache_info->metacontent=(void *) NULL; |
| 924 | if (cache_info->metacontent_extent != 0) |
| 925 | cache_info->metacontent=(void *) (cache_info->pixels+number_pixels* |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 926 | cache_info->number_channels); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 927 | return(cache_info->pixels); |
| 928 | } |
| 929 | |
| 930 | /* |
| 931 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 932 | % % |
| 933 | % % |
| 934 | % % |
| 935 | % R e a d S t r e a m % |
| 936 | % % |
| 937 | % % |
| 938 | % % |
| 939 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 940 | % |
| 941 | % ReadStream() makes the image pixels available to a user supplied callback |
| 942 | % method immediately upon reading a scanline with the ReadImage() method. |
| 943 | % |
| 944 | % The format of the ReadStream() method is: |
| 945 | % |
| 946 | % Image *ReadStream(const ImageInfo *image_info,StreamHandler stream, |
| 947 | % ExceptionInfo *exception) |
| 948 | % |
| 949 | % A description of each parameter follows: |
| 950 | % |
| 951 | % o image_info: the image info. |
| 952 | % |
| 953 | % o stream: a callback method. |
| 954 | % |
| 955 | % o exception: return any errors or warnings in this structure. |
| 956 | % |
| 957 | */ |
| 958 | MagickExport Image *ReadStream(const ImageInfo *image_info,StreamHandler stream, |
| 959 | ExceptionInfo *exception) |
| 960 | { |
| 961 | CacheMethods |
| 962 | cache_methods; |
| 963 | |
| 964 | Image |
| 965 | *image; |
| 966 | |
| 967 | ImageInfo |
| 968 | *read_info; |
| 969 | |
| 970 | /* |
| 971 | Stream image pixels. |
| 972 | */ |
| 973 | assert(image_info != (ImageInfo *) NULL); |
| 974 | assert(image_info->signature == MagickSignature); |
| 975 | if (image_info->debug != MagickFalse) |
| 976 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 977 | image_info->filename); |
| 978 | assert(exception != (ExceptionInfo *) NULL); |
| 979 | assert(exception->signature == MagickSignature); |
| 980 | read_info=CloneImageInfo(image_info); |
| 981 | read_info->cache=AcquirePixelCache(0); |
| 982 | GetPixelCacheMethods(&cache_methods); |
| 983 | cache_methods.get_virtual_pixel_handler=GetVirtualPixelStream; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 984 | cache_methods.get_virtual_metacontent_from_handler= |
| 985 | GetVirtualMetacontentFromStream; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 986 | cache_methods.get_virtual_pixels_handler=GetVirtualPixelsStream; |
| 987 | cache_methods.get_authentic_pixels_handler=GetAuthenticPixelsStream; |
| 988 | cache_methods.queue_authentic_pixels_handler=QueueAuthenticPixelsStream; |
| 989 | cache_methods.sync_authentic_pixels_handler=SyncAuthenticPixelsStream; |
| 990 | cache_methods.get_authentic_pixels_from_handler=GetAuthenticPixelsFromStream; |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 991 | cache_methods.get_authentic_metacontent_from_handler= |
| 992 | GetAuthenticMetacontentFromStream; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 993 | cache_methods.get_one_virtual_pixel_from_handler=GetOneVirtualPixelFromStream; |
| 994 | cache_methods.get_one_authentic_pixel_from_handler= |
| 995 | GetOneAuthenticPixelFromStream; |
| 996 | cache_methods.destroy_pixel_handler=DestroyPixelStream; |
| 997 | SetPixelCacheMethods(read_info->cache,&cache_methods); |
| 998 | read_info->stream=stream; |
| 999 | image=ReadImage(read_info,exception); |
| 1000 | read_info=DestroyImageInfo(read_info); |
| 1001 | return(image); |
| 1002 | } |
| 1003 | |
| 1004 | /* |
| 1005 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1006 | % % |
| 1007 | % % |
| 1008 | % % |
| 1009 | + S e t S t r e a m I n f o C l i e n t D a t a % |
| 1010 | % % |
| 1011 | % % |
| 1012 | % % |
| 1013 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1014 | % |
| 1015 | % SetStreamInfoClientData() sets the stream info client data. |
| 1016 | % |
| 1017 | % The format of the SetStreamInfoClientData method is: |
| 1018 | % |
| 1019 | % void SetStreamInfoClientData(StreamInfo *stream_info, |
| 1020 | % const void *client_data) |
| 1021 | % |
| 1022 | % A description of each parameter follows: |
| 1023 | % |
| 1024 | % o stream_info: the stream info. |
| 1025 | % |
| 1026 | % o client_data: the client data. |
| 1027 | % |
| 1028 | */ |
cristy | 7832dc2 | 2011-09-05 01:21:53 +0000 | [diff] [blame] | 1029 | MagickPrivate void SetStreamInfoClientData(StreamInfo *stream_info, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1030 | const void *client_data) |
| 1031 | { |
| 1032 | assert(stream_info != (StreamInfo *) NULL); |
| 1033 | assert(stream_info->signature == MagickSignature); |
| 1034 | stream_info->client_data=client_data; |
| 1035 | } |
| 1036 | |
| 1037 | /* |
| 1038 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1039 | % % |
| 1040 | % % |
| 1041 | % % |
| 1042 | + S e t S t r e a m I n f o M a p % |
| 1043 | % % |
| 1044 | % % |
| 1045 | % % |
| 1046 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1047 | % |
| 1048 | % SetStreamInfoMap() sets the stream info map member. |
| 1049 | % |
| 1050 | % The format of the SetStreamInfoMap method is: |
| 1051 | % |
| 1052 | % void SetStreamInfoMap(StreamInfo *stream_info,const char *map) |
| 1053 | % |
| 1054 | % A description of each parameter follows: |
| 1055 | % |
| 1056 | % o stream_info: the stream info. |
| 1057 | % |
| 1058 | % o map: the map. |
| 1059 | % |
| 1060 | */ |
| 1061 | MagickExport void SetStreamInfoMap(StreamInfo *stream_info,const char *map) |
| 1062 | { |
| 1063 | assert(stream_info != (StreamInfo *) NULL); |
| 1064 | assert(stream_info->signature == MagickSignature); |
| 1065 | (void) CloneString(&stream_info->map,map); |
| 1066 | } |
| 1067 | |
| 1068 | /* |
| 1069 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1070 | % % |
| 1071 | % % |
| 1072 | % % |
| 1073 | + S e t S t r e a m I n f o S t o r a g e T y p e % |
| 1074 | % % |
| 1075 | % % |
| 1076 | % % |
| 1077 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1078 | % |
| 1079 | % SetStreamInfoStorageType() sets the stream info storage type member. |
| 1080 | % |
| 1081 | % The format of the SetStreamInfoStorageType method is: |
| 1082 | % |
| 1083 | % void SetStreamInfoStorageType(StreamInfo *stream_info, |
| 1084 | % const StoreageType *storage_type) |
| 1085 | % |
| 1086 | % A description of each parameter follows: |
| 1087 | % |
| 1088 | % o stream_info: the stream info. |
| 1089 | % |
| 1090 | % o storage_type: the storage type. |
| 1091 | % |
| 1092 | */ |
| 1093 | MagickExport void SetStreamInfoStorageType(StreamInfo *stream_info, |
| 1094 | const StorageType storage_type) |
| 1095 | { |
| 1096 | assert(stream_info != (StreamInfo *) NULL); |
| 1097 | assert(stream_info->signature == MagickSignature); |
| 1098 | stream_info->storage_type=storage_type; |
| 1099 | } |
| 1100 | |
| 1101 | /* |
| 1102 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1103 | % % |
| 1104 | % % |
| 1105 | % % |
| 1106 | + S t r e a m I m a g e % |
| 1107 | % % |
| 1108 | % % |
| 1109 | % % |
| 1110 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1111 | % |
| 1112 | % StreamImage() streams pixels from an image and writes them in a user |
| 1113 | % defined format and storage type (e.g. RGBA as 8-bit unsigned char). |
| 1114 | % |
cristy | d212bd0 | 2011-02-13 17:08:57 +0000 | [diff] [blame] | 1115 | % The format of the StreamImage() method is: |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1116 | % |
| 1117 | % Image *StreamImage(const ImageInfo *image_info, |
| 1118 | % StreamInfo *stream_info,ExceptionInfo *exception) |
| 1119 | % |
| 1120 | % A description of each parameter follows: |
| 1121 | % |
| 1122 | % o image_info: the image info. |
| 1123 | % |
| 1124 | % o stream_info: the stream info. |
| 1125 | % |
| 1126 | % o exception: return any errors or warnings in this structure. |
| 1127 | % |
| 1128 | */ |
| 1129 | |
| 1130 | #if defined(__cplusplus) || defined(c_plusplus) |
| 1131 | extern "C" { |
| 1132 | #endif |
| 1133 | |
| 1134 | static size_t WriteStreamImage(const Image *image,const void *pixels, |
| 1135 | const size_t columns) |
| 1136 | { |
cristy | e3664f4 | 2010-05-14 00:59:57 +0000 | [diff] [blame] | 1137 | CacheInfo |
| 1138 | *cache_info; |
| 1139 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1140 | RectangleInfo |
| 1141 | extract_info; |
| 1142 | |
| 1143 | size_t |
| 1144 | length, |
| 1145 | packet_size; |
| 1146 | |
| 1147 | ssize_t |
| 1148 | count; |
| 1149 | |
| 1150 | StreamInfo |
| 1151 | *stream_info; |
| 1152 | |
cristy | 654fdaf | 2011-02-24 15:24:33 +0000 | [diff] [blame] | 1153 | (void) pixels; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1154 | stream_info=(StreamInfo *) image->client_data; |
| 1155 | switch (stream_info->storage_type) |
| 1156 | { |
| 1157 | default: packet_size=sizeof(char); break; |
| 1158 | case CharPixel: packet_size=sizeof(char); break; |
| 1159 | case DoublePixel: packet_size=sizeof(double); break; |
| 1160 | case FloatPixel: packet_size=sizeof(float); break; |
| 1161 | case IntegerPixel: packet_size=sizeof(int); break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1162 | case LongPixel: packet_size=sizeof(ssize_t); break; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1163 | case QuantumPixel: packet_size=sizeof(Quantum); break; |
| 1164 | case ShortPixel: packet_size=sizeof(unsigned short); break; |
| 1165 | } |
cristy | e3664f4 | 2010-05-14 00:59:57 +0000 | [diff] [blame] | 1166 | cache_info=(CacheInfo *) image->cache; |
| 1167 | assert(cache_info->signature == MagickSignature); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1168 | packet_size*=strlen(stream_info->map); |
cristy | e3664f4 | 2010-05-14 00:59:57 +0000 | [diff] [blame] | 1169 | length=packet_size*cache_info->columns*cache_info->rows; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1170 | if (image != stream_info->image) |
| 1171 | { |
| 1172 | ImageInfo |
| 1173 | *write_info; |
| 1174 | |
| 1175 | /* |
| 1176 | Prepare stream for writing. |
| 1177 | */ |
| 1178 | stream_info->pixels=(unsigned char *) ResizeQuantumMemory( |
| 1179 | stream_info->pixels,length,sizeof(*stream_info->pixels)); |
cristy | 5dd7188 | 2010-08-01 20:53:13 +0000 | [diff] [blame] | 1180 | if (stream_info->pixels == (unsigned char *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1181 | return(0); |
| 1182 | stream_info->image=image; |
| 1183 | write_info=CloneImageInfo(stream_info->image_info); |
cristy | d965a42 | 2010-03-03 17:47:35 +0000 | [diff] [blame] | 1184 | (void) SetImageInfo(write_info,1,stream_info->exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1185 | if (write_info->extract != (char *) NULL) |
| 1186 | (void) ParseAbsoluteGeometry(write_info->extract, |
| 1187 | &stream_info->extract_info); |
| 1188 | stream_info->y=0; |
| 1189 | write_info=DestroyImageInfo(write_info); |
| 1190 | } |
| 1191 | extract_info=stream_info->extract_info; |
cristy | d212bd0 | 2011-02-13 17:08:57 +0000 | [diff] [blame] | 1192 | if ((extract_info.width == 0) || (extract_info.height == 0)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1193 | { |
| 1194 | /* |
| 1195 | Write all pixels to stream. |
| 1196 | */ |
| 1197 | (void) StreamImagePixels(stream_info,image,stream_info->exception); |
| 1198 | count=WriteBlob(stream_info->stream,length,stream_info->pixels); |
| 1199 | stream_info->y++; |
| 1200 | return(count == 0 ? 0 : columns); |
| 1201 | } |
| 1202 | if ((stream_info->y < extract_info.y) || |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1203 | (stream_info->y >= (ssize_t) (extract_info.y+extract_info.height))) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1204 | { |
| 1205 | stream_info->y++; |
| 1206 | return(columns); |
| 1207 | } |
| 1208 | /* |
| 1209 | Write a portion of the pixel row to the stream. |
| 1210 | */ |
| 1211 | (void) StreamImagePixels(stream_info,image,stream_info->exception); |
| 1212 | length=packet_size*extract_info.width; |
cristy | 5dd7188 | 2010-08-01 20:53:13 +0000 | [diff] [blame] | 1213 | count=WriteBlob(stream_info->stream,length,stream_info->pixels+packet_size* |
| 1214 | extract_info.x); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1215 | stream_info->y++; |
| 1216 | return(count == 0 ? 0 : columns); |
| 1217 | } |
| 1218 | |
| 1219 | #if defined(__cplusplus) || defined(c_plusplus) |
| 1220 | } |
| 1221 | #endif |
| 1222 | |
| 1223 | MagickExport Image *StreamImage(const ImageInfo *image_info, |
| 1224 | StreamInfo *stream_info,ExceptionInfo *exception) |
| 1225 | { |
| 1226 | Image |
| 1227 | *image; |
| 1228 | |
| 1229 | ImageInfo |
| 1230 | *read_info; |
| 1231 | |
| 1232 | assert(image_info != (const ImageInfo *) NULL); |
| 1233 | assert(image_info->signature == MagickSignature); |
| 1234 | if (image_info->debug != MagickFalse) |
| 1235 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 1236 | image_info->filename); |
| 1237 | assert(stream_info != (StreamInfo *) NULL); |
| 1238 | assert(stream_info->signature == MagickSignature); |
| 1239 | assert(exception != (ExceptionInfo *) NULL); |
| 1240 | read_info=CloneImageInfo(image_info); |
| 1241 | stream_info->image_info=image_info; |
| 1242 | stream_info->exception=exception; |
| 1243 | read_info->client_data=(void *) stream_info; |
| 1244 | image=ReadStream(read_info,&WriteStreamImage,exception); |
| 1245 | read_info=DestroyImageInfo(read_info); |
| 1246 | stream_info->quantum_info=AcquireQuantumInfo(image_info,image); |
| 1247 | if (stream_info->quantum_info == (QuantumInfo *) NULL) |
| 1248 | image=DestroyImage(image); |
| 1249 | return(image); |
| 1250 | } |
| 1251 | |
| 1252 | /* |
| 1253 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1254 | % % |
| 1255 | % % |
| 1256 | % % |
| 1257 | + S t r e a m I m a g e P i x e l s % |
| 1258 | % % |
| 1259 | % % |
| 1260 | % % |
| 1261 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1262 | % |
| 1263 | % StreamImagePixels() extracts pixel data from an image and returns it in the |
| 1264 | % stream_info->pixels structure in the format as defined by |
| 1265 | % stream_info->quantum_info->map and stream_info->quantum_info->storage_type. |
| 1266 | % |
| 1267 | % The format of the StreamImagePixels method is: |
| 1268 | % |
| 1269 | % MagickBooleanType StreamImagePixels(const StreamInfo *stream_info, |
| 1270 | % const Image *image,ExceptionInfo *exception) |
| 1271 | % |
| 1272 | % A description of each parameter follows: |
| 1273 | % |
| 1274 | % o stream_info: the stream info. |
| 1275 | % |
| 1276 | % o image: the image. |
| 1277 | % |
| 1278 | % o exception: return any errors or warnings in this structure. |
| 1279 | % |
| 1280 | */ |
| 1281 | static MagickBooleanType StreamImagePixels(const StreamInfo *stream_info, |
| 1282 | const Image *image,ExceptionInfo *exception) |
| 1283 | { |
| 1284 | QuantumInfo |
| 1285 | *quantum_info; |
| 1286 | |
| 1287 | QuantumType |
| 1288 | *quantum_map; |
| 1289 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1290 | register const Quantum |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1291 | *p; |
| 1292 | |
cristy | d212bd0 | 2011-02-13 17:08:57 +0000 | [diff] [blame] | 1293 | register ssize_t |
| 1294 | i, |
| 1295 | x; |
| 1296 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1297 | size_t |
| 1298 | length; |
| 1299 | |
| 1300 | assert(stream_info != (StreamInfo *) NULL); |
| 1301 | assert(stream_info->signature == MagickSignature); |
| 1302 | assert(image != (Image *) NULL); |
| 1303 | assert(image->signature == MagickSignature); |
| 1304 | if (image->debug != MagickFalse) |
| 1305 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 1306 | length=strlen(stream_info->map); |
| 1307 | quantum_map=(QuantumType *) AcquireQuantumMemory(length,sizeof(*quantum_map)); |
| 1308 | if (quantum_map == (QuantumType *) NULL) |
| 1309 | { |
| 1310 | (void) ThrowMagickException(exception,GetMagickModule(), |
| 1311 | ResourceLimitError,"MemoryAllocationFailed","`%s'",image->filename); |
| 1312 | return(MagickFalse); |
| 1313 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1314 | for (i=0; i < (ssize_t) length; i++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1315 | { |
| 1316 | switch (stream_info->map[i]) |
| 1317 | { |
| 1318 | case 'A': |
| 1319 | case 'a': |
| 1320 | { |
| 1321 | quantum_map[i]=AlphaQuantum; |
| 1322 | break; |
| 1323 | } |
| 1324 | case 'B': |
| 1325 | case 'b': |
| 1326 | { |
| 1327 | quantum_map[i]=BlueQuantum; |
| 1328 | break; |
| 1329 | } |
| 1330 | case 'C': |
| 1331 | case 'c': |
| 1332 | { |
| 1333 | quantum_map[i]=CyanQuantum; |
| 1334 | if (image->colorspace == CMYKColorspace) |
| 1335 | break; |
| 1336 | quantum_map=(QuantumType *) RelinquishMagickMemory(quantum_map); |
| 1337 | (void) ThrowMagickException(exception,GetMagickModule(),ImageError, |
| 1338 | "ColorSeparatedImageRequired","`%s'",stream_info->map); |
| 1339 | return(MagickFalse); |
| 1340 | } |
| 1341 | case 'g': |
| 1342 | case 'G': |
| 1343 | { |
| 1344 | quantum_map[i]=GreenQuantum; |
| 1345 | break; |
| 1346 | } |
| 1347 | case 'I': |
| 1348 | case 'i': |
| 1349 | { |
| 1350 | quantum_map[i]=IndexQuantum; |
| 1351 | break; |
| 1352 | } |
| 1353 | case 'K': |
| 1354 | case 'k': |
| 1355 | { |
| 1356 | quantum_map[i]=BlackQuantum; |
| 1357 | if (image->colorspace == CMYKColorspace) |
| 1358 | break; |
| 1359 | quantum_map=(QuantumType *) RelinquishMagickMemory(quantum_map); |
| 1360 | (void) ThrowMagickException(exception,GetMagickModule(),ImageError, |
| 1361 | "ColorSeparatedImageRequired","`%s'",stream_info->map); |
| 1362 | return(MagickFalse); |
| 1363 | } |
| 1364 | case 'M': |
| 1365 | case 'm': |
| 1366 | { |
| 1367 | quantum_map[i]=MagentaQuantum; |
| 1368 | if (image->colorspace == CMYKColorspace) |
| 1369 | break; |
| 1370 | quantum_map=(QuantumType *) RelinquishMagickMemory(quantum_map); |
| 1371 | (void) ThrowMagickException(exception,GetMagickModule(),ImageError, |
| 1372 | "ColorSeparatedImageRequired","`%s'",stream_info->map); |
| 1373 | return(MagickFalse); |
| 1374 | } |
| 1375 | case 'o': |
| 1376 | case 'O': |
| 1377 | { |
| 1378 | quantum_map[i]=OpacityQuantum; |
| 1379 | break; |
| 1380 | } |
| 1381 | case 'P': |
| 1382 | case 'p': |
| 1383 | { |
| 1384 | quantum_map[i]=UndefinedQuantum; |
| 1385 | break; |
| 1386 | } |
| 1387 | case 'R': |
| 1388 | case 'r': |
| 1389 | { |
| 1390 | quantum_map[i]=RedQuantum; |
| 1391 | break; |
| 1392 | } |
| 1393 | case 'Y': |
| 1394 | case 'y': |
| 1395 | { |
| 1396 | quantum_map[i]=YellowQuantum; |
| 1397 | if (image->colorspace == CMYKColorspace) |
| 1398 | break; |
| 1399 | quantum_map=(QuantumType *) RelinquishMagickMemory(quantum_map); |
| 1400 | (void) ThrowMagickException(exception,GetMagickModule(),ImageError, |
| 1401 | "ColorSeparatedImageRequired","`%s'",stream_info->map); |
| 1402 | return(MagickFalse); |
| 1403 | } |
| 1404 | default: |
| 1405 | { |
| 1406 | quantum_map=(QuantumType *) RelinquishMagickMemory(quantum_map); |
| 1407 | (void) ThrowMagickException(exception,GetMagickModule(),OptionError, |
| 1408 | "UnrecognizedPixelMap","`%s'",stream_info->map); |
| 1409 | return(MagickFalse); |
| 1410 | } |
| 1411 | } |
| 1412 | } |
| 1413 | quantum_info=stream_info->quantum_info; |
| 1414 | switch (stream_info->storage_type) |
| 1415 | { |
| 1416 | case CharPixel: |
| 1417 | { |
| 1418 | register unsigned char |
| 1419 | *q; |
| 1420 | |
| 1421 | q=(unsigned char *) stream_info->pixels; |
| 1422 | if (LocaleCompare(stream_info->map,"BGR") == 0) |
| 1423 | { |
| 1424 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1425 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1426 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1427 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1428 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1429 | *q++=ScaleQuantumToChar(GetPixelBlue(image,p)); |
| 1430 | *q++=ScaleQuantumToChar(GetPixelGreen(image,p)); |
| 1431 | *q++=ScaleQuantumToChar(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1432 | p++; |
| 1433 | } |
| 1434 | break; |
| 1435 | } |
| 1436 | if (LocaleCompare(stream_info->map,"BGRA") == 0) |
| 1437 | { |
| 1438 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1439 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1440 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1441 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1442 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1443 | *q++=ScaleQuantumToChar(GetPixelBlue(image,p)); |
| 1444 | *q++=ScaleQuantumToChar(GetPixelGreen(image,p)); |
| 1445 | *q++=ScaleQuantumToChar(GetPixelRed(image,p)); |
| 1446 | *q++=ScaleQuantumToChar(GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1447 | p++; |
| 1448 | } |
| 1449 | break; |
| 1450 | } |
| 1451 | if (LocaleCompare(stream_info->map,"BGRP") == 0) |
| 1452 | { |
| 1453 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1454 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1455 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1456 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1457 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1458 | *q++=ScaleQuantumToChar(GetPixelBlue(image,p)); |
| 1459 | *q++=ScaleQuantumToChar(GetPixelGreen(image,p)); |
| 1460 | *q++=ScaleQuantumToChar(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1461 | *q++=ScaleQuantumToChar((Quantum) 0); |
| 1462 | p++; |
| 1463 | } |
| 1464 | break; |
| 1465 | } |
| 1466 | if (LocaleCompare(stream_info->map,"I") == 0) |
| 1467 | { |
| 1468 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1469 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1470 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1471 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1472 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1473 | *q++=ScaleQuantumToChar(GetPixelIntensity(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1474 | p++; |
| 1475 | } |
| 1476 | break; |
| 1477 | } |
| 1478 | if (LocaleCompare(stream_info->map,"RGB") == 0) |
| 1479 | { |
| 1480 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1481 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1482 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1483 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1484 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1485 | *q++=ScaleQuantumToChar(GetPixelRed(image,p)); |
| 1486 | *q++=ScaleQuantumToChar(GetPixelGreen(image,p)); |
| 1487 | *q++=ScaleQuantumToChar(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1488 | p++; |
| 1489 | } |
| 1490 | break; |
| 1491 | } |
| 1492 | if (LocaleCompare(stream_info->map,"RGBA") == 0) |
| 1493 | { |
| 1494 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1495 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1496 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1497 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1498 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1499 | *q++=ScaleQuantumToChar(GetPixelRed(image,p)); |
| 1500 | *q++=ScaleQuantumToChar(GetPixelGreen(image,p)); |
| 1501 | *q++=ScaleQuantumToChar(GetPixelBlue(image,p)); |
| 1502 | *q++=ScaleQuantumToChar((Quantum) (GetPixelAlpha(image,p))); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1503 | p++; |
| 1504 | } |
| 1505 | break; |
| 1506 | } |
| 1507 | if (LocaleCompare(stream_info->map,"RGBP") == 0) |
| 1508 | { |
| 1509 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1510 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1511 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1512 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1513 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1514 | *q++=ScaleQuantumToChar(GetPixelRed(image,p)); |
| 1515 | *q++=ScaleQuantumToChar(GetPixelGreen(image,p)); |
| 1516 | *q++=ScaleQuantumToChar(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1517 | *q++=ScaleQuantumToChar((Quantum) 0); |
| 1518 | p++; |
| 1519 | } |
| 1520 | break; |
| 1521 | } |
| 1522 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1523 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1524 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1525 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1526 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1527 | for (i=0; i < (ssize_t) length; i++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1528 | { |
| 1529 | *q=0; |
| 1530 | switch (quantum_map[i]) |
| 1531 | { |
| 1532 | case RedQuantum: |
| 1533 | case CyanQuantum: |
| 1534 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1535 | *q=ScaleQuantumToChar(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1536 | break; |
| 1537 | } |
| 1538 | case GreenQuantum: |
| 1539 | case MagentaQuantum: |
| 1540 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1541 | *q=ScaleQuantumToChar(GetPixelGreen(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1542 | break; |
| 1543 | } |
| 1544 | case BlueQuantum: |
| 1545 | case YellowQuantum: |
| 1546 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1547 | *q=ScaleQuantumToChar(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1548 | break; |
| 1549 | } |
| 1550 | case AlphaQuantum: |
| 1551 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1552 | *q=ScaleQuantumToChar((Quantum) (GetPixelAlpha(image,p))); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1553 | break; |
| 1554 | } |
| 1555 | case OpacityQuantum: |
| 1556 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1557 | *q=ScaleQuantumToChar(GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1558 | break; |
| 1559 | } |
| 1560 | case BlackQuantum: |
| 1561 | { |
| 1562 | if (image->colorspace == CMYKColorspace) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1563 | *q=ScaleQuantumToChar(GetPixelBlack(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1564 | break; |
| 1565 | } |
| 1566 | case IndexQuantum: |
| 1567 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1568 | *q=ScaleQuantumToChar(GetPixelIntensity(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1569 | break; |
| 1570 | } |
| 1571 | default: |
| 1572 | break; |
| 1573 | } |
| 1574 | q++; |
| 1575 | } |
| 1576 | p++; |
| 1577 | } |
| 1578 | break; |
| 1579 | } |
| 1580 | case DoublePixel: |
| 1581 | { |
| 1582 | register double |
| 1583 | *q; |
| 1584 | |
| 1585 | q=(double *) stream_info->pixels; |
| 1586 | if (LocaleCompare(stream_info->map,"BGR") == 0) |
| 1587 | { |
| 1588 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1589 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1590 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1591 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1592 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1593 | *q++=(double) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1594 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1595 | *q++=(double) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1596 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1597 | *q++=(double) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1598 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1599 | p++; |
| 1600 | } |
| 1601 | break; |
| 1602 | } |
| 1603 | if (LocaleCompare(stream_info->map,"BGRA") == 0) |
| 1604 | { |
| 1605 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1606 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1607 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1608 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1609 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1610 | *q++=(double) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1611 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1612 | *q++=(double) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1613 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1614 | *q++=(double) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1615 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1616 | *q++=(double) ((QuantumScale*GetPixelAlpha(image,p))* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1617 | quantum_info->scale+quantum_info->minimum); |
| 1618 | p++; |
| 1619 | } |
| 1620 | break; |
| 1621 | } |
| 1622 | if (LocaleCompare(stream_info->map,"BGRP") == 0) |
| 1623 | { |
| 1624 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1625 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1626 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1627 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1628 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1629 | *q++=(double) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1630 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1631 | *q++=(double) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1632 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1633 | *q++=(double) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1634 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1635 | *q++=0.0; |
| 1636 | p++; |
| 1637 | } |
| 1638 | break; |
| 1639 | } |
| 1640 | if (LocaleCompare(stream_info->map,"I") == 0) |
| 1641 | { |
| 1642 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1643 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1644 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1645 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1646 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1647 | *q++=(double) ((QuantumScale*GetPixelIntensity(image,p))* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1648 | quantum_info->scale+quantum_info->minimum); |
| 1649 | p++; |
| 1650 | } |
| 1651 | break; |
| 1652 | } |
| 1653 | if (LocaleCompare(stream_info->map,"RGB") == 0) |
| 1654 | { |
| 1655 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1656 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1657 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1658 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1659 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1660 | *q++=(double) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1661 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1662 | *q++=(double) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1663 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1664 | *q++=(double) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1665 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1666 | p++; |
| 1667 | } |
| 1668 | break; |
| 1669 | } |
| 1670 | if (LocaleCompare(stream_info->map,"RGBA") == 0) |
| 1671 | { |
| 1672 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1673 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1674 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1675 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1676 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1677 | *q++=(double) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1678 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1679 | *q++=(double) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1680 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1681 | *q++=(double) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1682 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1683 | *q++=(double) ((QuantumScale*GetPixelAlpha(image,p))* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1684 | quantum_info->scale+quantum_info->minimum); |
| 1685 | p++; |
| 1686 | } |
| 1687 | break; |
| 1688 | } |
| 1689 | if (LocaleCompare(stream_info->map,"RGBP") == 0) |
| 1690 | { |
| 1691 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1692 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1693 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1694 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1695 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1696 | *q++=(double) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1697 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1698 | *q++=(double) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1699 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1700 | *q++=(double) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1701 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1702 | *q++=0.0; |
| 1703 | p++; |
| 1704 | } |
| 1705 | break; |
| 1706 | } |
| 1707 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1708 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1709 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1710 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1711 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1712 | for (i=0; i < (ssize_t) length; i++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1713 | { |
| 1714 | *q=0; |
| 1715 | switch (quantum_map[i]) |
| 1716 | { |
| 1717 | case RedQuantum: |
| 1718 | case CyanQuantum: |
| 1719 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1720 | *q=(double) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1721 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1722 | break; |
| 1723 | } |
| 1724 | case GreenQuantum: |
| 1725 | case MagentaQuantum: |
| 1726 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1727 | *q=(double) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1728 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1729 | break; |
| 1730 | } |
| 1731 | case BlueQuantum: |
| 1732 | case YellowQuantum: |
| 1733 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1734 | *q=(double) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1735 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1736 | break; |
| 1737 | } |
| 1738 | case AlphaQuantum: |
| 1739 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1740 | *q=(double) ((QuantumScale*GetPixelAlpha(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1741 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1742 | break; |
| 1743 | } |
| 1744 | case OpacityQuantum: |
| 1745 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1746 | *q=(double) ((QuantumScale*GetPixelAlpha(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1747 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1748 | break; |
| 1749 | } |
| 1750 | case BlackQuantum: |
| 1751 | { |
| 1752 | if (image->colorspace == CMYKColorspace) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1753 | *q=(double) ((QuantumScale*GetPixelBlack(image,p))* |
cristy | fba5a8b | 2011-05-03 17:12:12 +0000 | [diff] [blame] | 1754 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1755 | break; |
| 1756 | } |
| 1757 | case IndexQuantum: |
| 1758 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1759 | *q=(double) ((QuantumScale*GetPixelIntensity(image,p))* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1760 | quantum_info->scale+quantum_info->minimum); |
| 1761 | break; |
| 1762 | } |
| 1763 | default: |
| 1764 | *q=0; |
| 1765 | } |
| 1766 | q++; |
| 1767 | } |
| 1768 | p++; |
| 1769 | } |
| 1770 | break; |
| 1771 | } |
| 1772 | case FloatPixel: |
| 1773 | { |
| 1774 | register float |
| 1775 | *q; |
| 1776 | |
| 1777 | q=(float *) stream_info->pixels; |
| 1778 | if (LocaleCompare(stream_info->map,"BGR") == 0) |
| 1779 | { |
| 1780 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1781 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1782 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1783 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1784 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1785 | *q++=(float) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1786 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1787 | *q++=(float) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1788 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1789 | *q++=(float) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1790 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1791 | p++; |
| 1792 | } |
| 1793 | break; |
| 1794 | } |
| 1795 | if (LocaleCompare(stream_info->map,"BGRA") == 0) |
| 1796 | { |
| 1797 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1798 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1799 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1800 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1801 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1802 | *q++=(float) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1803 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1804 | *q++=(float) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1805 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1806 | *q++=(float) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1807 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1808 | *q++=(float) ((QuantumScale*(Quantum) (GetPixelAlpha(image,p)))* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1809 | quantum_info->scale+quantum_info->minimum); |
| 1810 | p++; |
| 1811 | } |
| 1812 | break; |
| 1813 | } |
| 1814 | if (LocaleCompare(stream_info->map,"BGRP") == 0) |
| 1815 | { |
| 1816 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1817 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1818 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1819 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1820 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1821 | *q++=(float) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1822 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1823 | *q++=(float) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1824 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1825 | *q++=(float) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1826 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1827 | *q++=0.0; |
| 1828 | p++; |
| 1829 | } |
| 1830 | break; |
| 1831 | } |
| 1832 | if (LocaleCompare(stream_info->map,"I") == 0) |
| 1833 | { |
| 1834 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1835 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1836 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1837 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1838 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1839 | *q++=(float) ((QuantumScale*GetPixelIntensity(image,p))* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1840 | quantum_info->scale+quantum_info->minimum); |
| 1841 | p++; |
| 1842 | } |
| 1843 | break; |
| 1844 | } |
| 1845 | if (LocaleCompare(stream_info->map,"RGB") == 0) |
| 1846 | { |
| 1847 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1848 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1849 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1850 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1851 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1852 | *q++=(float) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1853 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1854 | *q++=(float) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1855 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1856 | *q++=(float) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1857 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1858 | p++; |
| 1859 | } |
| 1860 | break; |
| 1861 | } |
| 1862 | if (LocaleCompare(stream_info->map,"RGBA") == 0) |
| 1863 | { |
| 1864 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1865 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1866 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1867 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1868 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1869 | *q++=(float) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1870 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1871 | *q++=(float) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1872 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1873 | *q++=(float) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1874 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1875 | *q++=(float) ((QuantumScale*GetPixelAlpha(image,p))* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1876 | quantum_info->scale+quantum_info->minimum); |
| 1877 | p++; |
| 1878 | } |
| 1879 | break; |
| 1880 | } |
| 1881 | if (LocaleCompare(stream_info->map,"RGBP") == 0) |
| 1882 | { |
| 1883 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1884 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1885 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1886 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1887 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1888 | *q++=(float) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1889 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1890 | *q++=(float) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1891 | quantum_info->scale+quantum_info->minimum); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1892 | *q++=(float) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1893 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1894 | *q++=0.0; |
| 1895 | p++; |
| 1896 | } |
| 1897 | break; |
| 1898 | } |
| 1899 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1900 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1901 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1902 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1903 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1904 | for (i=0; i < (ssize_t) length; i++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1905 | { |
| 1906 | *q=0; |
| 1907 | switch (quantum_map[i]) |
| 1908 | { |
| 1909 | case RedQuantum: |
| 1910 | case CyanQuantum: |
| 1911 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1912 | *q=(float) ((QuantumScale*GetPixelRed(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1913 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1914 | break; |
| 1915 | } |
| 1916 | case GreenQuantum: |
| 1917 | case MagentaQuantum: |
| 1918 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1919 | *q=(float) ((QuantumScale*GetPixelGreen(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1920 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1921 | break; |
| 1922 | } |
| 1923 | case BlueQuantum: |
| 1924 | case YellowQuantum: |
| 1925 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1926 | *q=(float) ((QuantumScale*GetPixelBlue(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1927 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1928 | break; |
| 1929 | } |
| 1930 | case AlphaQuantum: |
| 1931 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1932 | *q=(float) ((QuantumScale*GetPixelAlpha(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1933 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1934 | break; |
| 1935 | } |
| 1936 | case OpacityQuantum: |
| 1937 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1938 | *q=(float) ((QuantumScale*GetPixelAlpha(image,p))* |
cristy | 46f0820 | 2010-01-10 04:04:21 +0000 | [diff] [blame] | 1939 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1940 | break; |
| 1941 | } |
| 1942 | case BlackQuantum: |
| 1943 | { |
| 1944 | if (image->colorspace == CMYKColorspace) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1945 | *q=(float) ((QuantumScale*GetPixelBlack(image,p))* |
cristy | fba5a8b | 2011-05-03 17:12:12 +0000 | [diff] [blame] | 1946 | quantum_info->scale+quantum_info->minimum); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1947 | break; |
| 1948 | } |
| 1949 | case IndexQuantum: |
| 1950 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1951 | *q=(float) ((QuantumScale*GetPixelIntensity(image,p))* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1952 | quantum_info->scale+quantum_info->minimum); |
| 1953 | break; |
| 1954 | } |
| 1955 | default: |
| 1956 | *q=0; |
| 1957 | } |
| 1958 | q++; |
| 1959 | } |
| 1960 | p++; |
| 1961 | } |
| 1962 | break; |
| 1963 | } |
| 1964 | case IntegerPixel: |
| 1965 | { |
| 1966 | register unsigned int |
| 1967 | *q; |
| 1968 | |
| 1969 | q=(unsigned int *) stream_info->pixels; |
| 1970 | if (LocaleCompare(stream_info->map,"BGR") == 0) |
| 1971 | { |
| 1972 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1973 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1974 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1975 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1976 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1977 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelBlue(image,p)); |
| 1978 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 1979 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1980 | p++; |
| 1981 | } |
| 1982 | break; |
| 1983 | } |
| 1984 | if (LocaleCompare(stream_info->map,"BGRA") == 0) |
| 1985 | { |
| 1986 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1987 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1988 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1989 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1990 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1991 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelBlue(image,p)); |
| 1992 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 1993 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelRed(image,p)); |
| 1994 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1995 | p++; |
| 1996 | } |
| 1997 | break; |
| 1998 | } |
| 1999 | if (LocaleCompare(stream_info->map,"BGRP") == 0) |
| 2000 | { |
| 2001 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2002 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2003 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2004 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2005 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2006 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelBlue(image,p)); |
| 2007 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 2008 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2009 | *q++=0U; |
| 2010 | p++; |
| 2011 | } |
| 2012 | break; |
| 2013 | } |
| 2014 | if (LocaleCompare(stream_info->map,"I") == 0) |
| 2015 | { |
| 2016 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2017 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2018 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2019 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2020 | { |
| 2021 | *q++=(unsigned int) ScaleQuantumToLong( |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2022 | GetPixelIntensity(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2023 | p++; |
| 2024 | } |
| 2025 | break; |
| 2026 | } |
| 2027 | if (LocaleCompare(stream_info->map,"RGB") == 0) |
| 2028 | { |
| 2029 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2030 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2031 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2032 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2033 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2034 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelRed(image,p)); |
| 2035 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 2036 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2037 | p++; |
| 2038 | } |
| 2039 | break; |
| 2040 | } |
| 2041 | if (LocaleCompare(stream_info->map,"RGBA") == 0) |
| 2042 | { |
| 2043 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2044 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2045 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2046 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2047 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2048 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelRed(image,p)); |
| 2049 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 2050 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2051 | *q++=(unsigned int) ScaleQuantumToLong((Quantum) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2052 | (GetPixelAlpha(image,p))); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2053 | p++; |
| 2054 | } |
| 2055 | break; |
| 2056 | } |
| 2057 | if (LocaleCompare(stream_info->map,"RGBP") == 0) |
| 2058 | { |
| 2059 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2060 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2061 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2062 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2063 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2064 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelRed(image,p)); |
| 2065 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 2066 | *q++=(unsigned int) ScaleQuantumToLong(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2067 | *q++=0U; |
| 2068 | p++; |
| 2069 | } |
| 2070 | break; |
| 2071 | } |
| 2072 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2073 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2074 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2075 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2076 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2077 | for (i=0; i < (ssize_t) length; i++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2078 | { |
| 2079 | *q=0; |
| 2080 | switch (quantum_map[i]) |
| 2081 | { |
| 2082 | case RedQuantum: |
| 2083 | case CyanQuantum: |
| 2084 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2085 | *q=(unsigned int) ScaleQuantumToLong(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2086 | break; |
| 2087 | } |
| 2088 | case GreenQuantum: |
| 2089 | case MagentaQuantum: |
| 2090 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2091 | *q=(unsigned int) ScaleQuantumToLong(GetPixelGreen(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2092 | break; |
| 2093 | } |
| 2094 | case BlueQuantum: |
| 2095 | case YellowQuantum: |
| 2096 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2097 | *q=(unsigned int) ScaleQuantumToLong(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2098 | break; |
| 2099 | } |
| 2100 | case AlphaQuantum: |
| 2101 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2102 | *q=(unsigned int) ScaleQuantumToLong(GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2103 | break; |
| 2104 | } |
| 2105 | case OpacityQuantum: |
| 2106 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2107 | *q=(unsigned int) ScaleQuantumToLong(GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2108 | break; |
| 2109 | } |
| 2110 | case BlackQuantum: |
| 2111 | { |
| 2112 | if (image->colorspace == CMYKColorspace) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2113 | *q=(unsigned int) ScaleQuantumToLong(GetPixelBlack(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2114 | break; |
| 2115 | } |
| 2116 | case IndexQuantum: |
| 2117 | { |
| 2118 | *q=(unsigned int) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2119 | ScaleQuantumToLong(GetPixelIntensity(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2120 | break; |
| 2121 | } |
| 2122 | default: |
| 2123 | *q=0; |
| 2124 | } |
| 2125 | q++; |
| 2126 | } |
| 2127 | p++; |
| 2128 | } |
| 2129 | break; |
| 2130 | } |
| 2131 | case LongPixel: |
| 2132 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2133 | register size_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2134 | *q; |
| 2135 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2136 | q=(size_t *) stream_info->pixels; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2137 | if (LocaleCompare(stream_info->map,"BGR") == 0) |
| 2138 | { |
| 2139 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2140 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2141 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2142 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2143 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2144 | *q++=ScaleQuantumToLong(GetPixelBlue(image,p)); |
| 2145 | *q++=ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 2146 | *q++=ScaleQuantumToLong(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2147 | p++; |
| 2148 | } |
| 2149 | break; |
| 2150 | } |
| 2151 | if (LocaleCompare(stream_info->map,"BGRA") == 0) |
| 2152 | { |
| 2153 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2154 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2155 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2156 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2157 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2158 | *q++=ScaleQuantumToLong(GetPixelBlue(image,p)); |
| 2159 | *q++=ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 2160 | *q++=ScaleQuantumToLong(GetPixelRed(image,p)); |
| 2161 | *q++=ScaleQuantumToLong((Quantum) (GetPixelAlpha(image,p))); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2162 | p++; |
| 2163 | } |
| 2164 | break; |
| 2165 | } |
| 2166 | if (LocaleCompare(stream_info->map,"BGRP") == 0) |
| 2167 | { |
| 2168 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2169 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2170 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2171 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2172 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2173 | *q++=ScaleQuantumToLong(GetPixelBlue(image,p)); |
| 2174 | *q++=ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 2175 | *q++=ScaleQuantumToLong(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2176 | *q++=0; |
| 2177 | p++; |
| 2178 | } |
| 2179 | break; |
| 2180 | } |
| 2181 | if (LocaleCompare(stream_info->map,"I") == 0) |
| 2182 | { |
| 2183 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2184 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2185 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2186 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2187 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2188 | *q++=ScaleQuantumToLong(GetPixelIntensity(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2189 | p++; |
| 2190 | } |
| 2191 | break; |
| 2192 | } |
| 2193 | if (LocaleCompare(stream_info->map,"RGB") == 0) |
| 2194 | { |
| 2195 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2196 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2197 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2198 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2199 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2200 | *q++=ScaleQuantumToLong(GetPixelRed(image,p)); |
| 2201 | *q++=ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 2202 | *q++=ScaleQuantumToLong(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2203 | p++; |
| 2204 | } |
| 2205 | break; |
| 2206 | } |
| 2207 | if (LocaleCompare(stream_info->map,"RGBA") == 0) |
| 2208 | { |
| 2209 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2210 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2211 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2212 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2213 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2214 | *q++=ScaleQuantumToLong(GetPixelRed(image,p)); |
| 2215 | *q++=ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 2216 | *q++=ScaleQuantumToLong(GetPixelBlue(image,p)); |
| 2217 | *q++=ScaleQuantumToLong((Quantum) (GetPixelAlpha(image,p))); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2218 | p++; |
| 2219 | } |
| 2220 | break; |
| 2221 | } |
| 2222 | if (LocaleCompare(stream_info->map,"RGBP") == 0) |
| 2223 | { |
| 2224 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2225 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2226 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2227 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2228 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2229 | *q++=ScaleQuantumToLong(GetPixelRed(image,p)); |
| 2230 | *q++=ScaleQuantumToLong(GetPixelGreen(image,p)); |
| 2231 | *q++=ScaleQuantumToLong(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2232 | *q++=0; |
| 2233 | p++; |
| 2234 | } |
| 2235 | break; |
| 2236 | } |
| 2237 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2238 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2239 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2240 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2241 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2242 | for (i=0; i < (ssize_t) length; i++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2243 | { |
| 2244 | *q=0; |
| 2245 | switch (quantum_map[i]) |
| 2246 | { |
| 2247 | case RedQuantum: |
| 2248 | case CyanQuantum: |
| 2249 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2250 | *q=ScaleQuantumToLong(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2251 | break; |
| 2252 | } |
| 2253 | case GreenQuantum: |
| 2254 | case MagentaQuantum: |
| 2255 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2256 | *q=ScaleQuantumToLong(GetPixelGreen(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2257 | break; |
| 2258 | } |
| 2259 | case BlueQuantum: |
| 2260 | case YellowQuantum: |
| 2261 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2262 | *q=ScaleQuantumToLong(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2263 | break; |
| 2264 | } |
| 2265 | case AlphaQuantum: |
| 2266 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2267 | *q=ScaleQuantumToLong((Quantum) (GetPixelAlpha(image,p))); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2268 | break; |
| 2269 | } |
| 2270 | case OpacityQuantum: |
| 2271 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2272 | *q=ScaleQuantumToLong(GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2273 | break; |
| 2274 | } |
| 2275 | case BlackQuantum: |
| 2276 | { |
| 2277 | if (image->colorspace == CMYKColorspace) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2278 | *q=ScaleQuantumToLong(GetPixelBlack(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2279 | break; |
| 2280 | } |
| 2281 | case IndexQuantum: |
| 2282 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2283 | *q=ScaleQuantumToLong(GetPixelIntensity(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2284 | break; |
| 2285 | } |
| 2286 | default: |
| 2287 | break; |
| 2288 | } |
| 2289 | q++; |
| 2290 | } |
| 2291 | p++; |
| 2292 | } |
| 2293 | break; |
| 2294 | } |
| 2295 | case QuantumPixel: |
| 2296 | { |
| 2297 | register Quantum |
| 2298 | *q; |
| 2299 | |
| 2300 | q=(Quantum *) stream_info->pixels; |
| 2301 | if (LocaleCompare(stream_info->map,"BGR") == 0) |
| 2302 | { |
| 2303 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2304 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2305 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2306 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2307 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2308 | *q++=GetPixelBlue(image,p); |
| 2309 | *q++=GetPixelGreen(image,p); |
| 2310 | *q++=GetPixelRed(image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2311 | p++; |
| 2312 | } |
| 2313 | break; |
| 2314 | } |
| 2315 | if (LocaleCompare(stream_info->map,"BGRA") == 0) |
| 2316 | { |
| 2317 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2318 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2319 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2320 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2321 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2322 | *q++=GetPixelBlue(image,p); |
| 2323 | *q++=GetPixelGreen(image,p); |
| 2324 | *q++=GetPixelRed(image,p); |
| 2325 | *q++=(Quantum) (GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2326 | p++; |
| 2327 | } |
| 2328 | break; |
| 2329 | } |
| 2330 | if (LocaleCompare(stream_info->map,"BGRP") == 0) |
| 2331 | { |
| 2332 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2333 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2334 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2335 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2336 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2337 | *q++=GetPixelBlue(image,p); |
| 2338 | *q++=GetPixelGreen(image,p); |
| 2339 | *q++=GetPixelRed(image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2340 | *q++=0; |
| 2341 | p++; |
| 2342 | } |
| 2343 | break; |
| 2344 | } |
| 2345 | if (LocaleCompare(stream_info->map,"I") == 0) |
| 2346 | { |
| 2347 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2348 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2349 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2350 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2351 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2352 | *q++=GetPixelIntensity(image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2353 | p++; |
| 2354 | } |
| 2355 | break; |
| 2356 | } |
| 2357 | if (LocaleCompare(stream_info->map,"RGB") == 0) |
| 2358 | { |
| 2359 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2360 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2361 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2362 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2363 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2364 | *q++=GetPixelRed(image,p); |
| 2365 | *q++=GetPixelGreen(image,p); |
| 2366 | *q++=GetPixelBlue(image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2367 | p++; |
| 2368 | } |
| 2369 | break; |
| 2370 | } |
| 2371 | if (LocaleCompare(stream_info->map,"RGBA") == 0) |
| 2372 | { |
| 2373 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2374 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2375 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2376 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2377 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2378 | *q++=GetPixelRed(image,p); |
| 2379 | *q++=GetPixelGreen(image,p); |
| 2380 | *q++=GetPixelBlue(image,p); |
| 2381 | *q++=(Quantum) (GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2382 | p++; |
| 2383 | } |
| 2384 | break; |
| 2385 | } |
| 2386 | if (LocaleCompare(stream_info->map,"RGBP") == 0) |
| 2387 | { |
| 2388 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2389 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2390 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2391 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2392 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2393 | *q++=GetPixelRed(image,p); |
| 2394 | *q++=GetPixelGreen(image,p); |
| 2395 | *q++=GetPixelBlue(image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2396 | *q++=0U; |
| 2397 | p++; |
| 2398 | } |
| 2399 | break; |
| 2400 | } |
| 2401 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2402 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2403 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2404 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2405 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2406 | for (i=0; i < (ssize_t) length; i++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2407 | { |
| 2408 | *q=(Quantum) 0; |
| 2409 | switch (quantum_map[i]) |
| 2410 | { |
| 2411 | case RedQuantum: |
| 2412 | case CyanQuantum: |
| 2413 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2414 | *q=GetPixelRed(image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2415 | break; |
| 2416 | } |
| 2417 | case GreenQuantum: |
| 2418 | case MagentaQuantum: |
| 2419 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2420 | *q=GetPixelGreen(image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2421 | break; |
| 2422 | } |
| 2423 | case BlueQuantum: |
| 2424 | case YellowQuantum: |
| 2425 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2426 | *q=GetPixelBlue(image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2427 | break; |
| 2428 | } |
| 2429 | case AlphaQuantum: |
| 2430 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2431 | *q=(Quantum) (GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2432 | break; |
| 2433 | } |
| 2434 | case OpacityQuantum: |
| 2435 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2436 | *q=GetPixelAlpha(image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2437 | break; |
| 2438 | } |
| 2439 | case BlackQuantum: |
| 2440 | { |
| 2441 | if (image->colorspace == CMYKColorspace) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2442 | *q=GetPixelBlack(image,p); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2443 | break; |
| 2444 | } |
| 2445 | case IndexQuantum: |
| 2446 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2447 | *q=(GetPixelIntensity(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2448 | break; |
| 2449 | } |
| 2450 | default: |
| 2451 | *q=0; |
| 2452 | } |
| 2453 | q++; |
| 2454 | } |
| 2455 | p++; |
| 2456 | } |
| 2457 | break; |
| 2458 | } |
| 2459 | case ShortPixel: |
| 2460 | { |
| 2461 | register unsigned short |
| 2462 | *q; |
| 2463 | |
| 2464 | q=(unsigned short *) stream_info->pixels; |
| 2465 | if (LocaleCompare(stream_info->map,"BGR") == 0) |
| 2466 | { |
| 2467 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2468 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2469 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2470 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2471 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2472 | *q++=ScaleQuantumToShort(GetPixelBlue(image,p)); |
| 2473 | *q++=ScaleQuantumToShort(GetPixelGreen(image,p)); |
| 2474 | *q++=ScaleQuantumToShort(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2475 | p++; |
| 2476 | } |
| 2477 | break; |
| 2478 | } |
| 2479 | if (LocaleCompare(stream_info->map,"BGRA") == 0) |
| 2480 | { |
| 2481 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2482 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2483 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2484 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2485 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2486 | *q++=ScaleQuantumToShort(GetPixelBlue(image,p)); |
| 2487 | *q++=ScaleQuantumToShort(GetPixelGreen(image,p)); |
| 2488 | *q++=ScaleQuantumToShort(GetPixelRed(image,p)); |
| 2489 | *q++=ScaleQuantumToShort((Quantum) (GetPixelAlpha(image,p))); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2490 | p++; |
| 2491 | } |
| 2492 | break; |
| 2493 | } |
| 2494 | if (LocaleCompare(stream_info->map,"BGRP") == 0) |
| 2495 | { |
| 2496 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2497 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2498 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2499 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2500 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2501 | *q++=ScaleQuantumToShort(GetPixelBlue(image,p)); |
| 2502 | *q++=ScaleQuantumToShort(GetPixelGreen(image,p)); |
| 2503 | *q++=ScaleQuantumToShort(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2504 | *q++=0; |
| 2505 | p++; |
| 2506 | } |
| 2507 | break; |
| 2508 | } |
| 2509 | if (LocaleCompare(stream_info->map,"I") == 0) |
| 2510 | { |
| 2511 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2512 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2513 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2514 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2515 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2516 | *q++=ScaleQuantumToShort(GetPixelIntensity(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2517 | p++; |
| 2518 | } |
| 2519 | break; |
| 2520 | } |
| 2521 | if (LocaleCompare(stream_info->map,"RGB") == 0) |
| 2522 | { |
| 2523 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2524 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2525 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2526 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2527 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2528 | *q++=ScaleQuantumToShort(GetPixelRed(image,p)); |
| 2529 | *q++=ScaleQuantumToShort(GetPixelGreen(image,p)); |
| 2530 | *q++=ScaleQuantumToShort(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2531 | p++; |
| 2532 | } |
| 2533 | break; |
| 2534 | } |
| 2535 | if (LocaleCompare(stream_info->map,"RGBA") == 0) |
| 2536 | { |
| 2537 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2538 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2539 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2540 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2541 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2542 | *q++=ScaleQuantumToShort(GetPixelRed(image,p)); |
| 2543 | *q++=ScaleQuantumToShort(GetPixelGreen(image,p)); |
| 2544 | *q++=ScaleQuantumToShort(GetPixelBlue(image,p)); |
| 2545 | *q++=ScaleQuantumToShort((Quantum) (GetPixelAlpha(image,p))); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2546 | p++; |
| 2547 | } |
| 2548 | break; |
| 2549 | } |
| 2550 | if (LocaleCompare(stream_info->map,"RGBP") == 0) |
| 2551 | { |
| 2552 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2553 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2554 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2555 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2556 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2557 | *q++=ScaleQuantumToShort(GetPixelRed(image,p)); |
| 2558 | *q++=ScaleQuantumToShort(GetPixelGreen(image,p)); |
| 2559 | *q++=ScaleQuantumToShort(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2560 | *q++=0; |
| 2561 | p++; |
| 2562 | } |
| 2563 | break; |
| 2564 | } |
| 2565 | p=GetAuthenticPixelQueue(image); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2566 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2567 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2568 | for (x=0; x < (ssize_t) GetImageExtent(image); x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2569 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 2570 | for (i=0; i < (ssize_t) length; i++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2571 | { |
| 2572 | *q=0; |
| 2573 | switch (quantum_map[i]) |
| 2574 | { |
| 2575 | case RedQuantum: |
| 2576 | case CyanQuantum: |
| 2577 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2578 | *q=ScaleQuantumToShort(GetPixelRed(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2579 | break; |
| 2580 | } |
| 2581 | case GreenQuantum: |
| 2582 | case MagentaQuantum: |
| 2583 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2584 | *q=ScaleQuantumToShort(GetPixelGreen(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2585 | break; |
| 2586 | } |
| 2587 | case BlueQuantum: |
| 2588 | case YellowQuantum: |
| 2589 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2590 | *q=ScaleQuantumToShort(GetPixelBlue(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2591 | break; |
| 2592 | } |
| 2593 | case AlphaQuantum: |
| 2594 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2595 | *q=ScaleQuantumToShort(GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2596 | break; |
| 2597 | } |
| 2598 | case OpacityQuantum: |
| 2599 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2600 | *q=ScaleQuantumToShort(GetPixelAlpha(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2601 | break; |
| 2602 | } |
| 2603 | case BlackQuantum: |
| 2604 | { |
| 2605 | if (image->colorspace == CMYKColorspace) |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2606 | *q=ScaleQuantumToShort(GetPixelBlack(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2607 | break; |
| 2608 | } |
| 2609 | case IndexQuantum: |
| 2610 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 2611 | *q=ScaleQuantumToShort(GetPixelIntensity(image,p)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2612 | break; |
| 2613 | } |
| 2614 | default: |
| 2615 | break; |
| 2616 | } |
| 2617 | q++; |
| 2618 | } |
| 2619 | p++; |
| 2620 | } |
| 2621 | break; |
| 2622 | } |
| 2623 | default: |
| 2624 | { |
| 2625 | quantum_map=(QuantumType *) RelinquishMagickMemory(quantum_map); |
| 2626 | (void) ThrowMagickException(exception,GetMagickModule(),OptionError, |
| 2627 | "UnrecognizedPixelMap","`%s'",stream_info->map); |
| 2628 | break; |
| 2629 | } |
| 2630 | } |
| 2631 | quantum_map=(QuantumType *) RelinquishMagickMemory(quantum_map); |
| 2632 | return(MagickTrue); |
| 2633 | } |
| 2634 | |
| 2635 | /* |
| 2636 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 2637 | % % |
| 2638 | % % |
| 2639 | % % |
| 2640 | + S y n c A u t h e n t i c P i x e l s S t r e a m % |
| 2641 | % % |
| 2642 | % % |
| 2643 | % % |
| 2644 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 2645 | % |
| 2646 | % SyncAuthenticPixelsStream() calls the user supplied callback method with |
| 2647 | % the latest stream of pixels. |
| 2648 | % |
| 2649 | % The format of the SyncAuthenticPixelsStream method is: |
| 2650 | % |
| 2651 | % MagickBooleanType SyncAuthenticPixelsStream(Image *image, |
| 2652 | % ExceptionInfo *exception) |
| 2653 | % |
| 2654 | % A description of each parameter follows: |
| 2655 | % |
| 2656 | % o image: the image. |
| 2657 | % |
| 2658 | % o exception: return any errors or warnings in this structure. |
| 2659 | % |
| 2660 | */ |
| 2661 | static MagickBooleanType SyncAuthenticPixelsStream(Image *image, |
| 2662 | ExceptionInfo *exception) |
| 2663 | { |
| 2664 | CacheInfo |
| 2665 | *cache_info; |
| 2666 | |
| 2667 | size_t |
| 2668 | length; |
| 2669 | |
| 2670 | StreamHandler |
| 2671 | stream_handler; |
| 2672 | |
| 2673 | assert(image != (Image *) NULL); |
| 2674 | assert(image->signature == MagickSignature); |
| 2675 | if (image->debug != MagickFalse) |
| 2676 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 2677 | cache_info=(CacheInfo *) image->cache; |
| 2678 | assert(cache_info->signature == MagickSignature); |
| 2679 | stream_handler=GetBlobStreamHandler(image); |
| 2680 | if (stream_handler == (StreamHandler) NULL) |
| 2681 | { |
| 2682 | (void) ThrowMagickException(exception,GetMagickModule(),StreamError, |
| 2683 | "NoStreamHandlerIsDefined","`%s'",image->filename); |
| 2684 | return(MagickFalse); |
| 2685 | } |
| 2686 | length=stream_handler(image,cache_info->pixels,(size_t) cache_info->columns); |
| 2687 | return(length == cache_info->columns ? MagickTrue : MagickFalse); |
| 2688 | } |
| 2689 | |
| 2690 | /* |
| 2691 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 2692 | % % |
| 2693 | % % |
| 2694 | % % |
| 2695 | % W r i t e S t r e a m % |
| 2696 | % % |
| 2697 | % % |
| 2698 | % % |
| 2699 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 2700 | % |
| 2701 | % WriteStream() makes the image pixels available to a user supplied callback |
| 2702 | % method immediately upon writing pixel data with the WriteImage() method. |
| 2703 | % |
| 2704 | % The format of the WriteStream() method is: |
| 2705 | % |
| 2706 | % MagickBooleanType WriteStream(const ImageInfo *image_info,Image *, |
| 2707 | % StreamHandler stream) |
| 2708 | % |
| 2709 | % A description of each parameter follows: |
| 2710 | % |
| 2711 | % o image_info: the image info. |
| 2712 | % |
| 2713 | % o stream: A callback method. |
| 2714 | % |
| 2715 | */ |
| 2716 | MagickExport MagickBooleanType WriteStream(const ImageInfo *image_info, |
| 2717 | Image *image,StreamHandler stream) |
| 2718 | { |
| 2719 | ImageInfo |
| 2720 | *write_info; |
| 2721 | |
| 2722 | MagickBooleanType |
| 2723 | status; |
| 2724 | |
| 2725 | assert(image_info != (ImageInfo *) NULL); |
| 2726 | assert(image_info->signature == MagickSignature); |
| 2727 | if (image_info->debug != MagickFalse) |
| 2728 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s", |
| 2729 | image_info->filename); |
| 2730 | assert(image != (Image *) NULL); |
| 2731 | assert(image->signature == MagickSignature); |
| 2732 | write_info=CloneImageInfo(image_info); |
| 2733 | write_info->stream=stream; |
cristy | 6f9e0d3 | 2011-08-28 16:32:09 +0000 | [diff] [blame] | 2734 | status=WriteImage(write_info,image,&image->exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 2735 | write_info=DestroyImageInfo(write_info); |
| 2736 | return(status); |
| 2737 | } |