Home
last modified time | relevance | path

Searched refs:border_info (Results 1 – 6 of 6) sorted by relevance

/external/ImageMagick/MagickCore/
Dmontage.c725 border_info; in MontageImageList() local
730 border_info.width=border_width; in MontageImageList()
731 border_info.height=border_width; in MontageImageList()
734 border_info.width=(width-image->columns+1)/2; in MontageImageList()
735 border_info.height=(height-image->rows+1)/2; in MontageImageList()
737 border_image=BorderImage(image,&border_info,image->compose,exception); in MontageImageList()
Ddecorate.c104 const RectangleInfo *border_info,const CompositeOperator compose, in BorderImage() argument
118 assert(border_info != (RectangleInfo *) NULL); in BorderImage()
119 frame_info.width=image->columns+(border_info->width << 1); in BorderImage()
120 frame_info.height=image->rows+(border_info->height << 1); in BorderImage()
121 frame_info.x=(ssize_t) border_info->width; in BorderImage()
122 frame_info.y=(ssize_t) border_info->height; in BorderImage()
Dshear.c1597 border_info, in ShearImage() local
1640 border_info.width=(size_t) bounds.x; in ShearImage()
1641 border_info.height=(size_t) bounds.y; in ShearImage()
1642 shear_image=BorderImage(integral_image,&border_info,image->compose,exception); in ShearImage()
1732 border_info, in ShearRotateImage() local
1790 border_info.width=(size_t) bounds.x; in ShearRotateImage()
1791 border_info.height=(size_t) bounds.y; in ShearRotateImage()
1792 rotate_image=BorderImage(integral_image,&border_info,image->compose, in ShearRotateImage()
Dfx.c4355 border_info; in ShadowImage() local
4373 border_info.width=(size_t) floor(2.0*sigma+0.5); in ShadowImage()
4374 border_info.height=(size_t) floor(2.0*sigma+0.5); in ShadowImage()
4375 border_info.x=0; in ShadowImage()
4376 border_info.y=0; in ShadowImage()
4380 border_image=BorderImage(clone_image,&border_info,OverCompositeOp,exception); in ShadowImage()
4436 shadow_image->page.width+=x_offset-(ssize_t) border_info.width; in ShadowImage()
4437 shadow_image->page.height+=y_offset-(ssize_t) border_info.height; in ShadowImage()
4438 shadow_image->page.x+=x_offset-(ssize_t) border_info.width; in ShadowImage()
4439 shadow_image->page.y+=y_offset-(ssize_t) border_info.height; in ShadowImage()
/external/ImageMagick/coders/
Dpcd.c996 border_info; in WritePCDTile() local
1001 border_info.width=(geometry.width-tile_image->columns+1) >> 1; in WritePCDTile()
1002 border_info.height=(geometry.height-tile_image->rows+1) >> 1; in WritePCDTile()
1003 bordered_image=BorderImage(tile_image,&border_info,image->compose, in WritePCDTile()
/external/ImageMagick/MagickWand/
Dmagick-image.c1022 border_info; in MagickBorderImage() local
1030 border_info.width=width; in MagickBorderImage()
1031 border_info.height=height; in MagickBorderImage()
1032 border_info.x=0; in MagickBorderImage()
1033 border_info.y=0; in MagickBorderImage()
1035 border_image=BorderImage(wand->images,&border_info,compose,wand->exception); in MagickBorderImage()