Lines Matching refs:draw_info
1769 *draw_info; in RenderHoughLines() local
1789 draw_info=CloneDrawInfo(image_info,(DrawInfo *) NULL); in RenderHoughLines()
1790 draw_info->affine.sx=image->resolution.x == 0.0 ? 1.0 : image->resolution.x/ in RenderHoughLines()
1792 draw_info->affine.sy=image->resolution.y == 0.0 ? 1.0 : image->resolution.y/ in RenderHoughLines()
1794 image->columns=(size_t) (draw_info->affine.sx*image->columns); in RenderHoughLines()
1795 image->rows=(size_t) (draw_info->affine.sy*image->rows); in RenderHoughLines()
1808 draw_info->primitive=FileToString(image->filename,~0UL,exception); in RenderHoughLines()
1811 draw_info->primitive=(char *) AcquireMagickMemory((size_t) in RenderHoughLines()
1813 if (draw_info->primitive != (char *) NULL) in RenderHoughLines()
1815 (void) memcpy(draw_info->primitive,GetBlobStreamData(image), in RenderHoughLines()
1817 draw_info->primitive[GetBlobSize(image)]='\0'; in RenderHoughLines()
1820 (void) DrawImage(image,draw_info,exception); in RenderHoughLines()
1821 draw_info=DestroyDrawInfo(draw_info); in RenderHoughLines()