Lines Matching refs:border_image
4344 *border_image,
4380 border_image=BorderImage(clone_image,&border_info,OverCompositeOp,exception);
4382 if (border_image == (Image *) NULL)
4384 if (border_image->alpha_trait == UndefinedPixelTrait)
4385 (void) SetImageAlphaChannel(border_image,OpaqueAlphaChannel,exception);
4390 background_color=border_image->background_color;
4392 image_view=AcquireAuthenticCacheView(border_image,exception);
4393 for (y=0; y < (ssize_t) border_image->rows; y++)
4403 q=QueueCacheViewAuthenticPixels(image_view,0,y,border_image->columns,1,
4410 for (x=0; x < (ssize_t) border_image->columns; x++)
4412 if (border_image->alpha_trait != UndefinedPixelTrait)
4413 background_color.alpha=GetPixelAlpha(border_image,q)*alpha/100.0;
4414 SetPixelViaPixelInfo(border_image,&background_color,q);
4415 q+=GetPixelChannels(border_image);
4423 border_image=DestroyImage(border_image);
4426 channel_mask=SetImageChannelMask(border_image,AlphaChannel);
4427 shadow_image=BlurImage(border_image,0.0,sigma,exception);
4428 border_image=DestroyImage(border_image);