我有一个问题
我目前正在尝试使用 ChartJSNodeCanvas 运行 javascript 项目
const width = 400; //px
const height = 400; //px
const canvasRenderService = new ChartJSNodeCanvas({width:width, height:height});
const configuration = {
type: 'bar',
data: {
labels: ['Team Points'],
datasets: [
{
label: `Team Red: ${points.red.points}`,
borderColor: "#000000",
backgroundColor:"#f55442",
data: [points.red.points],
},
{
label: `Team Blue: ${points.blue.points}`,
borderColor: "#000000",
backgroundColor: "#3450e0",
data: [points.blue.points],
},
],
},}
此代码在 Windows 上运行良好,但在我的云环境中会导致字符丢失
它给了我以下错误:字体配置错误:无法加载默认配置文件
我该如何解决这个问题?
我在 CentOS 实例中遇到错误,安装这个对我有用。
yum install fontconfig