ChartJSNodeCanvas Fontconfig 错误:无法加载默认配置文件

问题描述 投票:0回答:1

我有一个问题

我目前正在尝试使用 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 上运行良好,但在我的云环境中会导致字符丢失

它给了我以下错误:字体配置错误:无法加载默认配置文件

我该如何解决这个问题?

javascript node.js chart.js fontconfig
1个回答
0
投票

我在 CentOS 实例中遇到错误,安装这个对我有用。

yum install fontconfig
© www.soinside.com 2019 - 2024. All rights reserved.