zoukankan      html  css  js  c++  java
  • matplotlib显示中文字体

    原始地址:http://zanyongli.i.sohu.com/blog/view/195716528.htm

    matplotlib 1.0.0版

    对于3.0的可能不太适用,要注意语法结构!

    C:/Python26/Lib/site-packages/matplotlib/mpl-data/matplotlibrc文件(Windows)
    /usr/share/matplotlib/mpl-data/matplotlibrc (Linux):
    font.family         : sans-serif         #打开该选项
    font.sans-serif     : Microsoft YaHei, Bitstream Vera Sans, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, 
    sans-serif          #添加“Microsoft YaHei”,该行指示缺省字体
    注:在font.sans-serif中添加的字体名称必须正确,可以在
    $HOME/.matplotlib/fontList.cache
    C:/Users/用户名/.matplotlib/fontList.cache
    文件中 ,通过查找文件名找到对应的名称,如上面的"Microsoft YaHei"的字体文件名称为“msyh.ttf",搜索一下就找到了。一些可用的字体名称见示例代码.
    如果还不行,试着将字体文件copy到
    /usr/share/matplotlib/mpl-data/fonts/ttf(Windows)
    C:/Python26/Lib/site-packages/matplotlib/mpl-data/fonts/ttf(Linux)
    目录下,再试。示例代码如下:
    # -*- coding: utf-8 -*-
    import numpy as np
    import matplotlib.pyplot as plt
    plt.figure(figsize=(8,4))
    a = plt.text(0.05, 0.05, u"直线和二次曲线的交点")
    #Microsoft YaHei,FangSong,YouYuan,SimHei,STKaiti,STSong,SimSun-ExtB,Webdings
    plt.text(0.05, 0.95, u "STSong直线", fontproperties='STSong' )
    plt.text(0.05, 0.85, u"STKaiti直线", fontproperties='STKaiti')
    plt.text(0.05, 0.75, u"FangSong直线", fontproperties='FangSong')
    plt.text(0.05, 0.65, u"YouYuan直线", fontproperties='YouYuan')
    plt.text(0.05, 0.55, u"SimHei直线", fontproperties='SimHei')
    plt.text(0.05, 0.45, u"Microsoft YaHei微软雅黑", fontproperties='Microsoft YaHei')
    plt.text(0.05, 0.35, u"STCaiyun华文彩云", fontproperties='STCaiyun')
    plt.show()

    注意: 字符串,都用u"..."的形式.(文件编码utf-8 加上" # coding = utf-8  "一行.)


  • 相关阅读:
    JS-OO-数据属性,访问器属性
    下载php扩展笔记
    php字符串笔记
    include、require、include_once和require_once理解
    http协议笔记
    Git中三种文件状态及其转换
    git add 命令
    / 直接用就可以了 想用,需要用\来转义
    $_POST 变量以及$GLOBALS['HTTP_RAW_POST_DATA']
    Python multiprocessing
  • 原文地址:https://www.cnblogs.com/wishchin/p/9200416.html
Copyright © 2011-2022 走看看