Home | History | Annotate | Download | only in MagickWand

Lines Matching full:pointsize

1682 %  DrawGetFontSize() returns the font pointsize used when annotating with text.
1699 return(CurrentContext->pointsize);
2591 CurrentContext->pointsize);
5171 % DrawSetFontSize() sets the font pointsize to use when annotating with text.
5175 % void DrawSetFontSize(DrawingWand *wand,const double pointsize)
5181 % o pointsize: text pointsize
5184 WandExport void DrawSetFontSize(DrawingWand *wand,const double pointsize)
5191 (fabs(CurrentContext->pointsize-pointsize) >= MagickEpsilon))
5193 CurrentContext->pointsize=pointsize;
5194 (void) MVGPrintf(wand,"font-size %.20g\n",pointsize);
6425 CurrentContext->pointsize=StringToDouble(value,(char **) NULL);