Home
last modified time | relevance | path

Searched refs:font_weight (Results 1 – 3 of 3) sorted by relevance

/external/ImageMagick/MagickCore/
Dtype.c358 font_weight, in GetTypeInfoByFamily() local
368 font_weight=(size_t) (weight == 0 ? 400 : weight); in GetTypeInfoByFamily()
406 if (p->weight != font_weight) in GetTypeInfoByFamily()
453 score+=(16*(800-((ssize_t) MagickMax(MagickMin(font_weight,900),p->weight)- in GetTypeInfoByFamily()
454 (ssize_t) MagickMin(MagickMin(font_weight,900),p->weight))))/800; in GetTypeInfoByFamily()
/external/ImageMagick/MagickWand/
Ddrawing-wand.c5287 const size_t font_weight) in DrawSetFontWeight() argument
5294 (CurrentContext->weight != font_weight)) in DrawSetFontWeight()
5296 CurrentContext->weight=font_weight; in DrawSetFontWeight()
5297 (void) MVGPrintf(wand,"font-weight %.20g\n",(double) font_weight); in DrawSetFontWeight()
/external/python/cpython3/Lib/idlelib/
Dconfigdialog.py666 font_weight = tkFont.BOLD if self.font_bold.get() else tkFont.NORMAL
667 new_font = (font_name, self.font_size.get(), font_weight)