• Home
  • Raw
  • Download

Lines Matching refs:annotate_image

476     *annotate_image;  in XAnnotateImage()  local
547 annotate_image=AcquireImage((ImageInfo *) NULL,exception); in XAnnotateImage()
548 if (annotate_image == (Image *) NULL) in XAnnotateImage()
550 annotate_image->columns=annotate_info->width; in XAnnotateImage()
551 annotate_image->rows=annotate_info->height; in XAnnotateImage()
561 (ssize_t) y,&annotate_image->background_color,exception); in XAnnotateImage()
563 annotate_image->alpha_trait=BlendPixelTrait; in XAnnotateImage()
564 annotate_view=AcquireAuthenticCacheView(annotate_image,exception); in XAnnotateImage()
565 for (y=0; y < (int) annotate_image->rows; y++) in XAnnotateImage()
574 annotate_image->columns,1,exception); in XAnnotateImage()
577 for (x=0; x < (int) annotate_image->columns; x++) in XAnnotateImage()
579 SetPixelAlpha(annotate_image,OpaqueAlpha,q); in XAnnotateImage()
585 SetPixelRed(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
587 SetPixelGreen(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
589 SetPixelBlue(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
593 SetPixelAlpha(annotate_image,TransparentAlpha,q); in XAnnotateImage()
600 SetPixelRed(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
602 SetPixelGreen(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
604 SetPixelBlue(annotate_image,ScaleShortToQuantum( in XAnnotateImage()
607 SetPixelAlpha(annotate_image,TransparentAlpha,q); in XAnnotateImage()
609 q+=GetPixelChannels(annotate_image); in XAnnotateImage()
620 if ((width != (unsigned int) annotate_image->columns) || in XAnnotateImage()
621 (height != (unsigned int) annotate_image->rows)) in XAnnotateImage()
631 (void) TransformImage(&annotate_image,(char *) NULL,image_geometry, in XAnnotateImage()
648 rotate_image=RotateImage(annotate_image,annotate_info->degrees,exception); in XAnnotateImage()
651 annotate_image=DestroyImage(annotate_image); in XAnnotateImage()
652 annotate_image=rotate_image; in XAnnotateImage()
671 x-=(int) annotate_image->columns/2; in XAnnotateImage()
672 y+=(int) annotate_image->columns/2; in XAnnotateImage()
680 x=x-(int) annotate_image->columns; in XAnnotateImage()
688 x=x-(int) annotate_image->columns/2; in XAnnotateImage()
689 y=y-(int) (annotate_image->rows-(annotate_image->columns/2)); in XAnnotateImage()
699 (void) CompositeImage(image,annotate_image, in XAnnotateImage()
700 annotate_image->alpha_trait != UndefinedPixelTrait ? OverCompositeOp : in XAnnotateImage()
703 annotate_image=DestroyImage(annotate_image); in XAnnotateImage()