zoukankan      html  css  js  c++  java
  • tkinter 在 x window 下的字体设置格式

    X Font Descriptors #

    X Font Descriptors are strings having the following format (the asterisks represent fields that are usually not relevant. For details, see the Tk documentation, or an X manual):

    -*-family-weight-slant-*--*-size-*-*-*-*-charset
    

    The font family is typically something like TimesHelveticaCourier orSymbol.

    The weight is either Bold or Normal. Slant is either R for “roman” (normal), Ifor italic, or O for oblique (in practice, this is just another word for italic).

    Size is the height of the font in decipoints (that is, points multiplied by 10). There are usually 72 points per inch, but some low-resolution displays may use larger “logical” points to make sure that small fonts are still legible. Thecharacter set, finally, is usually ISO8859-1 (ISO Latin 1), but may have other values for some fonts.

    The following descriptor requests a 12-point boldface Times font, using the ISO Latin 1 character set:  #这个就是编码格式

    -*-Times-Bold-R-*--*-120-*-*-*-*-ISO8859-1
    

    If you don’t care about the character set, or use a font like Symbol which has a special character set, you can use a single asterisk as the last component:

    -*-Symbol-*-*-*--*-80-*
    

    A typical X server supports at least TimesHelveticaCourier, and a few more fonts, in sizes like 8, 10, 12, 14, 18, and 24 points, and in normal, bold, and italic (Times) or oblique (HelveticaCourier) variants. Most servers also support freely scaleable fonts. You can use programs like xlsfonts andxfontsel to check which fonts you have access to on a given server.

    This kind of font descriptors can also be used on Windows and Macintosh. Note that if you use Tk 4.2, you should keep in mind that the font family must be one supported by Windows (see above).

    一般用法这样 -*-文泉驿等宽微米黑-*-*-*--*-420-* 

  • 相关阅读:
    0-完全开源的 Vue.js 入门级教程:HelloVue,发车啦!
    [Java 开源项目]一款无需写任何代码,即可一键生成前后端代码的工具
    用 Java 做个“你画手机猜”的小游戏
    PowerJob 从 0 到 1.9k star 的经历
    最后一篇:结束不想说再见,那就扬帆再次起航!
    shell 常用快捷键
    微服务网关评测对比
    Docker加入自定义iptables规则链
    CentOS.7防火墙firewalld属性
    bash和shell的差别
  • 原文地址:https://www.cnblogs.com/yemeng/p/5679239.html
Copyright © 2011-2022 走看看