Home | History | Annotate | Download | only in MagickCore

Lines Matching full:morph_image

3462     *morph_image,
3499 morph_image=CloneImage(image,0,0,MagickTrue,exception);
3500 if (morph_image == (Image *) NULL)
3505 AppendImageToList(&morph_images,morph_image);
3535 morph_image=ResizeImage(next,(size_t) (alpha*next->columns+beta*
3538 if (morph_image == (Image *) NULL)
3543 status=SetImageStorageClass(morph_image,DirectClass,exception);
3546 morph_image=DestroyImage(morph_image);
3549 AppendImageToList(&morph_images,morph_image);
3551 morph_image=ResizeImage(GetNextImageInList(next),morph_images->columns,
3553 if (morph_image == (Image *) NULL)
3558 image_view=AcquireVirtualCacheView(morph_image,exception);
3562 magick_threads(morph_image,morph_image,morph_image->rows,1)
3580 p=GetCacheViewVirtualPixels(image_view,0,y,morph_image->columns,1,
3594 for (i=0; i < (ssize_t) GetPixelChannels(morph_image); i++)
3596 PixelChannel channel=GetPixelChannelChannel(morph_image,i);
3597 PixelTrait traits=GetPixelChannelTraits(morph_image,channel);
3605 SetPixelChannel(morph_image,channel,p[i],q);
3608 SetPixelChannel(morph_image,channel,ClampToQuantum(alpha*
3611 p+=GetPixelChannels(morph_image);
3620 morph_image=DestroyImage(morph_image);
3627 morph_image=CloneImage(GetNextImageInList(next),0,0,MagickTrue,exception);
3628 if (morph_image == (Image *) NULL)
3633 AppendImageToList(&morph_images,morph_image);