惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
人人都是产品经理
人人都是产品经理
V
Visual Studio Blog
Last Week in AI
Last Week in AI
V
V2EX
博客园_首页
IT之家
IT之家
Jina AI
Jina AI
博客园 - 叶小钗
The Cloudflare Blog
T
Tailwind CSS Blog
腾讯CDC
B
Blog
D
Docker
L
LangChain Blog
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI

StudyingLover's Blog

Diffusion Policy笔记 rwkv笔记 act笔记 nanovllm-block_manager opencode多智能体 nanobot-pre-train nanobot-rl nanobot-sft nanobot-checkpoint_manager nanobot-gpt nanobot-mid-train Vision Mamba (Vim)笔记 BPE演示 最后一遍学习Transformer YOLOv5 目标检测笔记 下载根服务器解析记录 Dynaseal A Backend-Controlled LLM API Key Distribution Scheme with Constrained Invocation Parameters 判断链表有环 王道25数据结构勘误 关于perplexity的open-sourcing-r1-1776 AI为什么不像人类一样进行多轮对话 新博客改造日记和功能测试 linuxqq只显示登陆背景图 数字设计和计算机体系结构(机械工业出版社)勘误(自制) Dynaseal:面向未来端侧llm agent的llm api key分发机制 A Definitive Guide to Markdown Style This post is using MDX, Where you can embed JSX and Astro components RT-Patch学习 pydantic实现的LLM ReAct fastapi 和 uvicorn 设置监听 ipv6
matplotlib中文字体渲染
About the Author StudyingLover · 2023-12-05 · via StudyingLover's Blog

matplotlib中文字体渲染

matplotlib 在画图例的时候不可避免的需要使用中文字体,但是有的时候电脑自带的字体不能渲染中文,这就需要我们自己解决字体问题。

首先用一个代码看一下系统里的字体哪些可以正常渲染中文字体

import matplotlib.font_manager as font_manager
import matplotlib.pyplot as plt
import time

def find_chinese_fonts(test_string):
    """
    This function tests each available font to see if it can render the given Chinese string
    without causing any rendering issues or noticeable delays.
    """
    fonts = font_manager.findSystemFonts(fontpaths=None, fontext='ttf')
    working_fonts = []

    for font in fonts:
        try:
            prop = font_manager.FontProperties(fname=font)
            plt.figure()
            start_time = time.time()
            plt.text(0.5, 0.5, test_string, fontproperties=prop, ha='center', va='center')
            plt.close()
            end_time = time.time()
            render_time = end_time - start_time

            # Check if the rendering time is less than a certain threshold (e.g., 0.5 seconds)
            if render_time < 5:
                working_fonts.append(font)

        except Exception as e:
            # If there's an error rendering with this font, skip it
            continue

    return working_fonts

# Test string: "不卡顿"
test_string = "不卡顿"
fonts = find_chinese_fonts(test_string)
fonts

假设输出了 '/usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf'

使用这个字体的代码就是

from matplotlib.font_manager import FontProperties

# 创建一个FontProperties对象,指定字体文件路径
font = FontProperties(fname='/usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf')

# 绘制散点图
plt.scatter([1,2,3], [4,5,6], color="red")

# 添加图例,使用指定的字体
plt.legend(["例子"], prop=font)

# 显示图像
plt.show()

假如代码没找到可用字体呢?

手动下载字体。以下是一些中文字体的官方下载页面或者信誉良好的资源:

  1. 思源宋体(Source Han Serif):
    • 官方GitHub页面: Adobe Fonts
    • 选择您需要的语言子集,例如简体中文(SC),并下载相应的 OTF 文件。
  2. 思源黑体(Source Han Sans):
    • 官方GitHub页面: Adobe Fonts
    • 同样地,选择您需要的语言子集,并下载 OTF 文件。
  3. 文泉驿正黑(WenQuanYi Zen Hei):
    • 官方网站: WenQuanYi
    • 可以直接下载 TTF 文件。

下载完成后然后font = FontProperties(fname='/usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf') 引入即可。