Python matplotlib繪制xkcd動漫風格的圖表

XKCD

xkcd是蘭道爾·門羅(Randall Munroe)的網名,又是他所創作的漫畫的名稱。作者蘭道爾·門羅(Randall Munroe)給作品的定義是一部“關於浪漫、諷刺、數學和語言的網絡漫畫”(A webcomic of romance,sarcasm, math, and language),被網友譽為深度宅向網絡漫畫。XKCD官方網站https://xkcd.com/。

matplotlib對XKCD風格的支持

matplotlib.pyplot.xkcd函數可繪制XKCD風格的圖表。

原理非常簡單,調用函數時保存原有rcParams設置,再更新rcParams使預置的XKCD風格的生效,退出時還原rcParams設置。
xkcd相關定義如下:

def xkcd(scale=1, length=100, randomness=2):
    return _xkcd(scale, length, randomness)

class _xkcd:
    # This cannot be implemented in terms of rc_context() because this needs to
    # work as a non-contextmanager too.

    def __init__(self, scale, length, randomness):
        self._orig = rcParams.copy()

        if rcParams['text.usetex']:
            raise RuntimeError(
                "xkcd mode is not compatible with text.usetex = True")

        from matplotlib import patheffects
        rcParams.update({
            'font.family': ['xkcd', 'xkcd Script', 'Humor Sans', 'Comic Neue',
                            'Comic Sans MS'],
            'font.size': 14.0,
            'path.sketch': (scale, length, randomness),
            'path.effects': [
                patheffects.withStroke(linewidth=4, foreground="w")],
            'axes.linewidth': 1.5,
            'lines.linewidth': 2.0,
            'figure.facecolor': 'white',
            'grid.linewidth': 0.0,
            'axes.grid': False,
            'axes.unicode_minus': False,
            'axes.edgecolor': 'black',
            'xtick.major.size': 8,
            'xtick.major.width': 3,
            'ytick.major.size': 8,
            'ytick.major.width': 3,
        })

    def __enter__(self):
        return self

    def __exit__(self, *args):
        dict.update(rcParams, self._orig)

創建XKCD風格的圖表

官方建議使用上下文管理器調用xkcd函數。

import matplotlib.pyplot as plt

with plt.xkcd():
    plt.bar([1,2,3],[1,2,3])
    plt.title('test')
plt.show()

使用中文字體創建XKCD風格的圖表

官方文檔建議下載Humor Sans字體,根據源碼可知,'font.family': ['xkcd', 'xkcd Script', 'Humor Sans', 'Comic Neue', 'Comic Sans MS'],隻要計算機上安裝這幾個字體,英文都可以顯示為XKCD風格,現在Windows操作系統中基本都預裝有Comic Sans MS字體,因此,不用下載字體即可顯示英文。

xkcd默認配置的幾個字體都不支持中文,如果像在XKCD風格圖表中使用類似漫畫風格的中文就需要下載中文字體,一般大傢都推薦試用方正卡通簡體字體。下載安裝該字體後,隻用重載字體緩存,修改rcParams['font.family']使中文字體生效即可。

1.安裝字體

下載方正卡通簡體字體,並進行安裝。

2.更新中文字體

獲取方正卡通簡體字體的系統名稱

方正卡通簡體字體在系統中的名稱為FZKaTong-M19S。

設置方正卡通簡體字體為中文默認字體

import matplotlib.pyplot as plt

plt.xkcd()
plt.rcParams.update({'font.family': "FZKaTong-M19S"})
plt.bar([1,2,3],[1,2,3])
plt.title("測試")
plt.show()

運行後,標題中文不能正常顯示,調試信息顯示找不到'FZKaTong-M19S',所以使用默認的DejaVu Sans的字體。

findfont: Font family ['FZKaTong-M19S'] not found. Falling back to DejaVu Sans.

通過以下代碼驗證,可知'FZKaTong-M19S'即方正卡通簡體字體沒有出現在ttflist當中,所以找不到該字體。而ttflist是讀取字體緩存而構建的,因此,重建字體緩存可能解決這個問題。

from matplotlib.font_manager import fontManager
print([i.name for i in fontManager.ttflist if 'FZKaTong-M19S' in i.name])

解決問題

默認findfont函數是從字體緩存中查找的,新安裝的字體緩存中沒有,因此,需要重新創建緩存,並加載。

# 重建字體緩存
from matplotlib.font_manager import _rebuild

_rebuild()
import matplotlib.pyplot as plt

plt.xkcd()
plt.rcParams.update({'font.family': "FZKaTong-M19S"})
# plt.rcParams['font.family'] ='FZKaTong-M19S'
# plt.rc('font', **{'family' : 'FZKaTong-M19S'})
plt.bar([1,2,3],[1,2,3])
plt.title("測試")
plt.show()

到此這篇關於Python matplotlib繪制xkcd動漫風格的圖表的文章就介紹到這瞭,更多相關Python matplotlib動漫圖表內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: