Lines Matching refs:annotate_image
481 *annotate_image; in XAnnotateImage() local
552 annotate_image=AcquireImage((ImageInfo *) NULL,exception); in XAnnotateImage()
553 if (annotate_image == (Image *) NULL) in XAnnotateImage()
555 annotate_image->columns=annotate_info->width; in XAnnotateImage()
556 annotate_image->rows=annotate_info->height; in XAnnotateImage()
566 (ssize_t) y,&annotate_image->background_color,exception); in XAnnotateImage()
568 annotate_image->alpha_trait=BlendPixelTrait; in XAnnotateImage()
569 annotate_view=AcquireAuthenticCacheView(annotate_image,exception); in XAnnotateImage()
570 for (y=0; y < (int) annotate_image->rows; y++) in XAnnotateImage()
579 annotate_image->columns,1,exception); in XAnnotateImage()
582 for (x=0; x < (int) annotate_image->columns; x++) in XAnnotateImage()
584 SetPixelAlpha(annotate_image,OpaqueAlpha,q); in XAnnotateImage()
590 SetPixelRed(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
592 SetPixelGreen(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
594 SetPixelBlue(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
598 SetPixelAlpha(annotate_image,TransparentAlpha,q); in XAnnotateImage()
605 SetPixelRed(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
607 SetPixelGreen(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
609 SetPixelBlue(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
612 SetPixelAlpha(annotate_image,TransparentAlpha,q); in XAnnotateImage()
614 q+=GetPixelChannels(annotate_image); in XAnnotateImage()
625 if ((width != (unsigned int) annotate_image->columns) || in XAnnotateImage()
626 (height != (unsigned int) annotate_image->rows)) in XAnnotateImage()
636 (void) TransformImage(&annotate_image,(char *) NULL,image_geometry, in XAnnotateImage()
653 rotate_image=RotateImage(annotate_image,annotate_info->degrees,exception); in XAnnotateImage()
656 annotate_image=DestroyImage(annotate_image); in XAnnotateImage()
657 annotate_image=rotate_image; in XAnnotateImage()
676 x-=(int) annotate_image->columns/2; in XAnnotateImage()
677 y+=(int) annotate_image->columns/2; in XAnnotateImage()
685 x=x-(int) annotate_image->columns; in XAnnotateImage()
693 x=x-(int) annotate_image->columns/2; in XAnnotateImage()
694 y=y-(int) (annotate_image->rows-(annotate_image->columns/2)); in XAnnotateImage()
704 (void) CompositeImage(image,annotate_image, in XAnnotateImage()
705 annotate_image->alpha_trait != UndefinedPixelTrait ? OverCompositeOp : in XAnnotateImage()
708 annotate_image=DestroyImage(annotate_image); in XAnnotateImage()