]> granicus.if.org Git - imagemagick/blob - MagickCore/channel.c
(no commit message)
[imagemagick] / MagickCore / channel.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %               CCCC  H   H   AAA   N   N  N   N  EEEEE   L                   %
7 %              C      H   H  A   A  NN  N  NN  N  E       L                   %
8 %              C      HHHHH  AAAAA  N N N  N N N  RRR     L                   %
9 %              C      H   H  A   A  N  NN  N  NN  E       L                   %
10 %               CCCC  H   H  A   A  N   N  N   N  EEEEE   LLLLL               %
11 %                                                                             %
12 %                                                                             %
13 %                      MagickCore Image Channel Methods                       %
14 %                                                                             %
15 %                              Software Design                                %
16 %                                John Cristy                                  %
17 %                               December 2003                                 %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization      %
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 \f
40 /*
41   Include declarations.
42 */
43 #include "MagickCore/studio.h"
44 #include "MagickCore/colorspace-private.h"
45 #include "MagickCore/image.h"
46 #include "MagickCore/list.h"
47 #include "MagickCore/log.h"
48 #include "MagickCore/monitor.h"
49 #include "MagickCore/monitor-private.h"
50 #include "MagickCore/option.h"
51 #include "MagickCore/pixel-accessor.h"
52 #include "MagickCore/resource_.h"
53 #include "MagickCore/string-private.h"
54 #include "MagickCore/thread-private.h"
55 #include "MagickCore/token.h"
56 #include "MagickCore/utility.h"
57 #include "MagickCore/version.h"
58 \f
59 /*
60 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
61 %                                                                             %
62 %                                                                             %
63 %                                                                             %
64 %     C h a n n e l F x I m a g e                                             %
65 %                                                                             %
66 %                                                                             %
67 %                                                                             %
68 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
69 %
70 %  ChannelFxImage() applies a channel expression to the specified image.  The
71 %  expression consists of one or more channels, either mnemonic or numeric (e.g.
72 %  red, 1), separated by actions as follows:
73 %
74 %    <=>     exchange two channels (e.g. red<=>blue)
75 %    =>      copy one channel to another channel (e.g. red=>green)
76 %    =       assign a constant value to a channel (e.g. red=50%)
77 %    ,       write new image channels in the specified order (e.g. red, green)
78 %    |       add a new output image for the next set of channel operations
79 %    ;       move to the next input image for the source of channel data
80 %
81 %  For example, to create 3 grayscale images from the red, green, and blue
82 %  channels of an image, use:
83 %
84 %    -channel-fx "red; green; blue"
85 %
86 %  A channel without an operation symbol implies separate (i.e, semicolon).
87 %
88 %  The format of the ChannelFxImage method is:
89 %
90 %      Image *ChannelFxImage(const Image *image,const char *expression,
91 %        ExceptionInfo *exception)
92 %
93 %  A description of each parameter follows:
94 %
95 %    o image: the image.
96 %
97 %    o expression: A channel expression.
98 %
99 %    o exception: return any errors or warnings in this structure.
100 %
101 */
102
103 typedef enum
104 {
105   ExtractChannelOp,
106   AssignChannelOp,
107   ExchangeChannelOp,
108   TransferChannelOp
109 } ChannelFx;
110
111 static inline size_t MagickMin(const size_t x,const size_t y)
112 {
113   if (x < y)
114     return(x);
115   return(y);
116 }
117
118 static MagickBooleanType ChannelImage(Image *destination_image,
119   const PixelChannel destination_channel,const ChannelFx channel_op,
120   const Image *source_image,const PixelChannel source_channel,
121   const Quantum pixel,ExceptionInfo *exception)
122 {
123   CacheView
124     *source_view,
125     *destination_view;
126
127   MagickBooleanType
128     status;
129
130   size_t
131     height,
132     width;
133
134   ssize_t
135     y;
136
137   status=MagickTrue;
138   source_view=AcquireVirtualCacheView(source_image,exception);
139   destination_view=AcquireAuthenticCacheView(destination_image,exception);
140   height=MagickMin(source_image->rows,destination_image->rows);
141   width=MagickMin(source_image->columns,destination_image->columns);
142 #if defined(MAGICKCORE_OPENMP_SUPPORT)
143   #pragma omp parallel for schedule(static) shared(status) \
144     dynamic_number_threads(width,height,1)
145 #endif
146   for (y=0; y < (ssize_t) height; y++)
147   {
148     PixelTrait
149       destination_traits,
150       source_traits;
151
152     register const Quantum
153       *restrict p;
154
155     register Quantum
156       *restrict q;
157
158     register ssize_t
159       x;
160
161     if (status == MagickFalse)
162       continue;
163     p=GetCacheViewVirtualPixels(source_view,0,y,source_image->columns,1,
164       exception);
165     q=GetCacheViewAuthenticPixels(destination_view,0,y,
166       destination_image->columns,1,exception);
167     if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
168       {
169         status=MagickFalse;
170         continue;
171       }
172     destination_traits=GetPixelChannelMapTraits(destination_image,
173       destination_channel);
174     source_traits=GetPixelChannelMapTraits(source_image,source_channel);
175     if ((destination_traits == UndefinedPixelTrait) ||
176         (source_traits == UndefinedPixelTrait))
177       continue;
178     for (x=0; x < (ssize_t) width; x++)
179     {
180       if (channel_op == AssignChannelOp)
181         SetPixelChannel(destination_image,destination_channel,pixel,q);
182       else
183         SetPixelChannel(destination_image,destination_channel,
184           GetPixelChannel(source_image,source_channel,p),q);
185       p+=GetPixelChannels(source_image);
186       q+=GetPixelChannels(destination_image);
187     }
188     if (SyncCacheViewAuthenticPixels(destination_view,exception) == MagickFalse)
189       status=MagickFalse;
190   }
191   destination_view=DestroyCacheView(destination_view);
192   source_view=DestroyCacheView(source_view);
193   return(status);
194 }
195
196 MagickExport Image *ChannelFxImage(const Image *image,const char *expression,
197   ExceptionInfo *exception)
198 {
199 #define ChannelFxImageTag  "ChannelFx/Image"
200
201   ChannelFx
202     channel_op;
203
204   ChannelType
205     channel_mask;
206
207   char
208     token[MaxTextExtent];
209
210   const char
211     *p;
212
213   const Image
214     *source_image;
215
216   double
217     pixel;
218
219   Image
220     *destination_image;
221
222   MagickBooleanType
223     status;
224
225   PixelChannel
226     source_channel,
227     destination_channel;
228
229   ssize_t
230     channels;
231
232   assert(image != (Image *) NULL);
233   assert(image->signature == MagickSignature);
234   if (image->debug != MagickFalse)
235     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
236   assert(exception != (ExceptionInfo *) NULL);
237   assert(exception->signature == MagickSignature);
238   source_image=image;
239   destination_image=CloneImage(source_image,0,0,MagickTrue,exception);
240   if (destination_image == (Image *) NULL)
241     return((Image *) NULL);
242   if (IsGrayColorspace(image->colorspace) != MagickFalse)
243     (void) TransformImageColorspace((Image *) image,sRGBColorspace,exception);
244   if (expression == (const char *) NULL)
245     return(destination_image);
246   destination_channel=RedPixelChannel;
247   channel_mask=UndefinedChannel;
248   pixel=0.0;
249   p=(char *) expression;
250   GetMagickToken(p,&p,token);
251   channel_op=ExtractChannelOp;
252   for (channels=0; *token != '\0'; )
253   {
254     ssize_t
255       i;
256
257     /*
258       Interpret channel expression.
259     */
260     if (*token == ',')
261       {
262         destination_channel=(PixelChannel) ((ssize_t) destination_channel+1);
263         GetMagickToken(p,&p,token);
264       }
265     if (*token == '|')
266       {
267         if (GetNextImageInList(source_image) != (Image *) NULL)
268           source_image=GetNextImageInList(source_image);
269         else
270           source_image=GetFirstImageInList(source_image);
271         GetMagickToken(p,&p,token);
272       }
273     if (*token == ';')
274       {
275         Image
276           *canvas;
277
278         SetPixelChannelMapMask(destination_image,channel_mask);
279         if ((channel_op == ExtractChannelOp) && (destination_channel == 1))
280           (void) SetImageColorspace(destination_image,GRAYColorspace,exception);
281         status=SetImageStorageClass(destination_image,DirectClass,exception);
282         if (status == MagickFalse)
283           {
284             destination_image=DestroyImageList(destination_image);
285             return(destination_image);
286           }
287         canvas=CloneImage(source_image,0,0,MagickTrue,exception);
288         if (canvas == (Image *) NULL)
289           {
290             destination_image=DestroyImageList(destination_image);
291             return(destination_image);
292           }
293         if (IsGrayColorspace(canvas->colorspace) != MagickFalse)
294           (void) TransformImageColorspace(canvas,sRGBColorspace,exception);
295         AppendImageToList(&destination_image,canvas);
296         destination_image=GetLastImageInList(destination_image);
297         GetMagickToken(p,&p,token);
298         channels=0;
299         destination_channel=RedPixelChannel;
300         channel_mask=UndefinedChannel;
301       }
302     i=ParsePixelChannelOption(token);
303     if (i < 0)
304       {
305         (void) ThrowMagickException(exception,GetMagickModule(),OptionError,
306           "UnrecognizedChannelType","'%s'",token);
307         destination_image=DestroyImageList(destination_image);
308         return(destination_image);
309       }
310     source_channel=(PixelChannel) i;
311     channel_op=ExtractChannelOp;
312     GetMagickToken(p,&p,token);
313     if (*token == '<')
314       {
315         channel_op=ExchangeChannelOp;
316         GetMagickToken(p,&p,token);
317       }
318     if (*token == '=')
319       {
320         if (channel_op != ExchangeChannelOp)
321           channel_op=AssignChannelOp;
322         GetMagickToken(p,&p,token);
323       }
324     if (*token == '>')
325       {
326         if (channel_op != ExchangeChannelOp)
327           channel_op=TransferChannelOp;
328         GetMagickToken(p,&p,token);
329       }
330     switch (channel_op)
331     {
332       case AssignChannelOp:
333       {
334         pixel=StringToDoubleInterval(token,(double) QuantumRange+1.0);
335         GetMagickToken(p,&p,token);
336         break;
337       }
338       case ExchangeChannelOp:
339       case TransferChannelOp:
340       {
341         i=ParsePixelChannelOption(token);
342         if (i < 0)
343           {
344             (void) ThrowMagickException(exception,GetMagickModule(),OptionError,
345               "UnrecognizedChannelType","'%s'",token);
346             destination_image=DestroyImageList(destination_image);
347             return(destination_image);
348           }
349         destination_channel=(PixelChannel) i;
350         channel_mask=(ChannelType) (channel_mask | ParseChannelOption(token));
351         if (LocaleCompare(token,"gray") == 0)
352           (void) SetImageColorspace(destination_image,GRAYColorspace,exception);
353         if ((LocaleCompare(token,"black") == 0) ||
354             (LocaleCompare(token,"c") == 0) ||
355             (LocaleCompare(token,"cyan") == 0) ||
356             (LocaleCompare(token,"k") == 0) ||
357             (LocaleCompare(token,"m") == 0) ||
358             (LocaleCompare(token,"magenta") == 0) ||
359             (LocaleCompare(token,"y") == 0) ||
360             (LocaleCompare(token,"yellow") == 0))
361           (void) SetImageColorspace(destination_image,CMYKColorspace,exception);
362         if ((LocaleCompare(token,"Cb") == 0) ||
363             (LocaleCompare(token,"Cr") == 0))
364           (void) SetImageColorspace(destination_image,YCbCrColorspace,
365             exception);
366         if (LocaleCompare(token,"alpha") == 0)
367           (void) SetImageAlpha(destination_image,OpaqueAlpha,exception);
368         if (i >= (ssize_t) GetPixelChannels(destination_image))
369           (void) SetPixelMetaChannels(destination_image,(size_t) (i-
370             GetPixelChannels(destination_image)+1),exception);
371         GetMagickToken(p,&p,token);
372         break;
373       }
374       default:
375         break;
376     }
377     status=ChannelImage(destination_image,destination_channel,channel_op,
378       source_image,source_channel,ClampToQuantum(pixel),exception);
379     if (status == MagickFalse)
380       {
381         destination_image=DestroyImageList(destination_image);
382         break;
383       }
384     channels++;
385     if (channel_op == ExchangeChannelOp)
386       {
387         status=ChannelImage(destination_image,source_channel,channel_op,
388           source_image,destination_channel,ClampToQuantum(pixel),exception);
389         if (status == MagickFalse)
390           {
391             destination_image=DestroyImageList(destination_image);
392             break;
393           }
394         channels++;
395       }
396     switch (channel_op)
397     {
398       case ExtractChannelOp:
399       {
400         channel_mask=(ChannelType) (channel_mask | (1 << destination_channel));
401         destination_channel=(PixelChannel) (destination_channel+1);
402         break;
403       }
404       default:
405         break;
406     }
407     status=SetImageProgress(source_image,ChannelFxImageTag,p-expression,
408       strlen(expression));
409     if (status == MagickFalse)
410       break;
411   }
412   SetPixelChannelMapMask(destination_image,channel_mask);
413   if ((channel_op == ExtractChannelOp) && (destination_channel == 1))
414     (void) SetImageColorspace(destination_image,GRAYColorspace,exception);
415   status=SetImageStorageClass(destination_image,DirectClass,exception);
416   if (status == MagickFalse)
417     {
418       destination_image=GetLastImageInList(destination_image);
419       return((Image *) NULL);
420     }
421   return(GetFirstImageInList(destination_image));
422 }
423 \f
424 /*
425 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
426 %                                                                             %
427 %                                                                             %
428 %                                                                             %
429 %     C o m b i n e I m a g e s                                               %
430 %                                                                             %
431 %                                                                             %
432 %                                                                             %
433 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
434 %
435 %  CombineImages() combines one or more images into a single image.  The
436 %  grayscale value of the pixels of each image in the sequence is assigned in
437 %  order to the specified channels of the combined image.   The typical
438 %  ordering would be image 1 => Red, 2 => Green, 3 => Blue, etc.
439 %
440 %  The format of the CombineImages method is:
441 %
442 %      Image *CombineImages(const Image *image,ExceptionInfo *exception)
443 %
444 %  A description of each parameter follows:
445 %
446 %    o image: the image.
447 %
448 %    o exception: return any errors or warnings in this structure.
449 %
450 */
451 MagickExport Image *CombineImages(const Image *image,ExceptionInfo *exception)
452 {
453 #define CombineImageTag  "Combine/Image"
454
455   CacheView
456     *combine_view;
457
458   Image
459     *combine_image;
460
461   MagickBooleanType
462     status;
463
464   MagickOffsetType
465     progress;
466
467   ssize_t
468     y;
469
470   /*
471     Ensure the image are the same size.
472   */
473   assert(image != (const Image *) NULL);
474   assert(image->signature == MagickSignature);
475   if (image->debug != MagickFalse)
476     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
477   assert(exception != (ExceptionInfo *) NULL);
478   assert(exception->signature == MagickSignature);
479   combine_image=CloneImage(image,0,0,MagickTrue,exception);
480   if (combine_image == (Image *) NULL)
481     return((Image *) NULL);
482   if (SetImageStorageClass(combine_image,DirectClass,exception) == MagickFalse)
483     {
484       combine_image=DestroyImage(combine_image);
485       return((Image *) NULL);
486     }
487   if (IsGrayColorspace(image->colorspace) != MagickFalse)
488     (void) SetImageColorspace(combine_image,sRGBColorspace,exception);
489   if ((GetPixelAlphaTraits(image) & UpdatePixelTrait) != 0)
490     combine_image->matte=MagickTrue;
491   /*
492     Combine images.
493   */
494   status=MagickTrue;
495   progress=0;
496   combine_view=AcquireAuthenticCacheView(combine_image,exception);
497   for (y=0; y < (ssize_t) combine_image->rows; y++)
498   {
499     CacheView
500       *image_view;
501
502     const Image
503       *next;
504
505     Quantum
506       *pixels;
507
508     register const Quantum
509       *restrict p;
510
511     register Quantum
512       *restrict q;
513
514     register ssize_t
515       i;
516
517     if (status == MagickFalse)
518       continue;
519     pixels=GetCacheViewAuthenticPixels(combine_view,0,y,combine_image->columns,
520       1,exception);
521     if (pixels == (Quantum *) NULL)
522       {
523         status=MagickFalse;
524         continue;
525       }
526     next=image;
527     for (i=0; i < (ssize_t) GetPixelChannels(combine_image); i++)
528     {
529       PixelChannel
530         channel;
531
532       PixelTrait
533         traits;
534
535       register ssize_t
536         x;
537
538       if (next == (Image *) NULL)
539         continue;
540       channel=GetPixelChannelMapChannel(combine_image,i);
541       traits=GetPixelChannelMapTraits(combine_image,channel);
542       if (traits == UndefinedPixelTrait)
543         continue;
544       image_view=AcquireVirtualCacheView(next,exception);
545       p=GetCacheViewVirtualPixels(image_view,0,y,next->columns,1,exception);
546       if (p == (const Quantum *) NULL)
547         continue;
548       q=pixels;
549       for (x=0; x < (ssize_t) combine_image->columns; x++)
550       {
551         if (x < (ssize_t) image->columns)
552           {
553             q[i]=GetPixelGray(image,p);
554             p+=GetPixelChannels(image);
555           }
556         q+=GetPixelChannels(combine_image);
557       }
558       image_view=DestroyCacheView(image_view);
559       next=GetNextImageInList(next);
560       if (SyncCacheViewAuthenticPixels(combine_view,exception) == MagickFalse)
561         status=MagickFalse;
562       if (image->progress_monitor != (MagickProgressMonitor) NULL)
563         {
564           MagickBooleanType
565             proceed;
566
567           proceed=SetImageProgress(image,CombineImageTag,progress++,
568             combine_image->rows);
569           if (proceed == MagickFalse)
570             status=MagickFalse;
571         }
572     }
573   }
574   combine_view=DestroyCacheView(combine_view);
575   if (status == MagickFalse)
576     combine_image=DestroyImage(combine_image);
577   return(combine_image);
578 }
579 \f
580 /*
581 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
582 %                                                                             %
583 %                                                                             %
584 %                                                                             %
585 %     S e p a r a t e I m a g e                                               %
586 %                                                                             %
587 %                                                                             %
588 %                                                                             %
589 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
590 %
591 %  SeparateImage() separates a channel from the image and returns it as a
592 %  grayscale image.
593 %
594 %  The format of the SeparateImage method is:
595 %
596 %      Image *SeparateImage(const Image *image,const ChannelType channel,
597 %        ExceptionInfo *exception)
598 %
599 %  A description of each parameter follows:
600 %
601 %    o image: the image.
602 %
603 %    o channel: the image channel.
604 %
605 %    o exception: return any errors or warnings in this structure.
606 %
607 */
608 MagickExport Image *SeparateImage(const Image *image,
609   const ChannelType channel_type,ExceptionInfo *exception)
610 {
611 #define GetChannelBit(mask,bit)  (((size_t) (mask) >> (size_t) (bit)) & 0x01)
612 #define SeparateImageTag  "Separate/Image"
613
614   CacheView
615     *image_view,
616     *separate_view;
617
618   Image
619     *separate_image;
620
621   MagickBooleanType
622     status;
623
624   MagickOffsetType
625     progress;
626
627   ssize_t
628     y;
629
630   /*
631     Initialize spread image attributes.
632   */
633   assert(image != (Image *) NULL);
634   assert(image->signature == MagickSignature);
635   if (image->debug != MagickFalse)
636     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
637   assert(exception != (ExceptionInfo *) NULL);
638   assert(exception->signature == MagickSignature);
639   separate_image=CloneImage(image,image->columns,image->rows,MagickTrue,
640     exception);
641   if (separate_image == (Image *) NULL)
642     return((Image *) NULL);
643   if (SetImageStorageClass(separate_image,DirectClass,exception) == MagickFalse)
644     {
645       separate_image=DestroyImage(separate_image);
646       return((Image *) NULL);
647     }
648   SetImageColorspace(separate_image,GRAYColorspace,exception);
649   separate_image->matte=MagickFalse;
650   /*
651     Separate image.
652   */
653   status=MagickTrue;
654   progress=0;
655   image_view=AcquireVirtualCacheView(image,exception);
656   separate_view=AcquireAuthenticCacheView(separate_image,exception);
657 #if defined(MAGICKCORE_OPENMP_SUPPORT)
658   #pragma omp parallel for schedule(static) shared(progress,status) \
659     dynamic_number_threads(image->columns,image->rows,1)
660 #endif
661   for (y=0; y < (ssize_t) image->rows; y++)
662   {
663     register const Quantum
664       *restrict p;
665
666     register Quantum
667       *restrict q;
668
669     register ssize_t
670       x;
671
672     if (status == MagickFalse)
673       continue;
674     p=GetCacheViewVirtualPixels(image_view,0,y,image->columns,1,exception);
675     q=QueueCacheViewAuthenticPixels(separate_view,0,y,separate_image->columns,1,
676       exception);
677     if ((p == (const Quantum *) NULL) || (q == (Quantum *) NULL))
678       {
679         status=MagickFalse;
680         continue;
681       }
682     for (x=0; x < (ssize_t) image->columns; x++)
683     {
684       register ssize_t
685         i;
686
687       if (GetPixelMask(image,p) != 0)
688         {
689           p+=GetPixelChannels(image);
690           q+=GetPixelChannels(separate_image);
691           continue;
692         }
693       SetPixelChannel(separate_image,GrayPixelChannel,0,q);
694       for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
695       {
696         PixelChannel
697           channel;
698
699         PixelTrait
700           traits;
701
702         channel=GetPixelChannelMapChannel(image,i);
703         traits=GetPixelChannelMapTraits(image,channel);
704         if ((traits == UndefinedPixelTrait) ||
705             (GetChannelBit(channel_type,channel) == 0))
706           continue;
707         SetPixelChannel(separate_image,GrayPixelChannel,p[i],q);
708       }
709       p+=GetPixelChannels(image);
710       q+=GetPixelChannels(separate_image);
711     }
712     if (SyncCacheViewAuthenticPixels(separate_view,exception) == MagickFalse)
713       status=MagickFalse;
714     if (image->progress_monitor != (MagickProgressMonitor) NULL)
715       {
716         MagickBooleanType
717           proceed;
718
719 #if defined(MAGICKCORE_OPENMP_SUPPORT)
720         #pragma omp critical (MagickCore_SeparateImage)
721 #endif
722         proceed=SetImageProgress(image,SeparateImageTag,progress++,image->rows);
723         if (proceed == MagickFalse)
724           status=MagickFalse;
725       }
726   }
727   separate_view=DestroyCacheView(separate_view);
728   image_view=DestroyCacheView(image_view);
729   return(separate_image);
730 }
731 \f
732 /*
733 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
734 %                                                                             %
735 %                                                                             %
736 %                                                                             %
737 %     S e p a r a t e I m a g e s                                             %
738 %                                                                             %
739 %                                                                             %
740 %                                                                             %
741 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
742 %
743 %  SeparateImages() returns a separate grayscale image for each channel
744 %  specified.
745 %
746 %  The format of the SeparateImages method is:
747 %
748 %      Image *SeparateImages(const Image *image,ExceptionInfo *exception)
749 %
750 %  A description of each parameter follows:
751 %
752 %    o image: the image.
753 %
754 %    o exception: return any errors or warnings in this structure.
755 %
756 */
757 MagickExport Image *SeparateImages(const Image *image,ExceptionInfo *exception)
758 {
759   Image
760     *images,
761     *separate_image;
762
763   register ssize_t
764     i;
765
766   assert(image != (Image *) NULL);
767   assert(image->signature == MagickSignature);
768   if (image->debug != MagickFalse)
769     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
770   images=NewImageList();
771   for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
772   {
773     PixelChannel
774       channel;
775
776     PixelTrait
777       traits;
778
779     channel=GetPixelChannelMapChannel(image,i);
780     traits=GetPixelChannelMapTraits(image,channel);
781     if ((traits == UndefinedPixelTrait) ||
782         ((traits & UpdatePixelTrait) == 0))
783       continue;
784     separate_image=SeparateImage(image,(ChannelType) (1 << channel),exception);
785     if (separate_image != (Image *) NULL)
786       AppendImageToList(&images,separate_image);
787   }
788   if (images == (Image *) NULL)
789     images=SeparateImage(image,UndefinedChannel,exception);
790   return(images);
791 }