PingFang Medium.ttf字体包太大了,但是除了英文和数字基本其他都用不上,需要压缩下字体包
- 背景:
PingFang Medium.ttf
字体包太大了,但是除了英文和数字基本其他都用不上,需要压缩下字体包 - 使用
font-spider
: 将需要的文字压缩成一个包 - 奇怪的点: 在react项目里建一个
html文件
来搞不得行,另起了一个文件夹就行了 - 参考: 项目首页 - font-spider:Smart webfont compression and format conversion tool - GitCode
- 使用方式:
新建个文件夹下放
inedx.html
和PingFang Medium.ttf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28// index.html内容
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
@font-face {
font-weight: normal;
font-family: "PingFang";
font-style: normal;
src: url("./PingFang Medium.ttf");
}
.original {
font-family: "PingFang";
}
</style>
</head>
<body>
<div class="original">
abcdefghijklmnopqrstuvwxyz
0123456789
ABCDEFGHIJKLMNOPQRSTUVWXYZ</div>
</body>
</html>安装插件
npm i font-spider -g
查看版本 确定安装成功
font-spider -V
执行命令
font-spider index.html
或者font-spider ./*.html
会在原处生成新的ttf文件
替换掉ttf文件
,原ttf文件
会自动备份在一个新的文件夹.font-spider
下面