博客
关于我
hightchart导出中文乱码
阅读量:141 次
发布时间:2019-02-26

本文共 399 字,大约阅读时间需要 1 分钟。

最近将分析系统从测试机部署到线上后,发现之前导出的Word文件中生成的SVG图片显示异常,中文字符被替换为方框。经过调查,问题的根源在于系统缺少必要的中文字体支持。

通过查阅资料,发现可以通过安装中文字体包来解决此问题。具体方法是使用以下命令安装字体包:

yum install fonts-chinese

安装完成后,使用以下命令查看字体列表:

fc-list

然而,发现仅安装字体包并不是万能的解决方案。最终选择将所需的中文字体文件从测试机压缩下载到线上系统中进行手动安装。具体步骤如下:

  • 将压缩字体文件解压到 /usr/share/fonts/ 目录下
  • 执行以下命令更新字体缓存:
  • fc-cache -fv

    通过以上方法,问题得以解决。值得注意的是,这一问题的困难在于需要手动操作字体文件的安装步骤。虽然初次处理时可能会觉得不便,但是安装正确的中文字体支持是确保SVG图片正常显示的前提条件。

    转载地址:http://yzaf.baihongyu.com/

    你可能感兴趣的文章
    Orcale表被锁
    查看>>
    svn访问报错500
    查看>>
    org.apache.ibatis.exceptions.PersistenceException:
    查看>>
    org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned
    查看>>
    org.apache.ibatis.type.TypeException: Could not resolve type alias 'xxxx'异常
    查看>>
    org.apache.poi.hssf.util.Region
    查看>>
    org.apache.xmlbeans.XmlOptions.setEntityExpansionLimit(I)Lorg/apache/xmlbeans/XmlOptions;
    查看>>
    org.apache.zookeeper.KeeperException$ConnectionLossException: KeeperErrorCode = ConnectionLoss for /
    查看>>
    org.hibernate.HibernateException: Unable to get the default Bean Validation factory
    查看>>
    org.hibernate.ObjectNotFoundException: No row with the given identifier exists:
    查看>>
    SQL-CLR 类型映射 (LINQ to SQL)
    查看>>
    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
    查看>>
    org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
    查看>>
    org.springframework.web.multipart.MaxUploadSizeExceededException: Maximum upload size exceeded
    查看>>
    org.tinygroup.serviceprocessor-服务处理器
    查看>>
    org/eclipse/jetty/server/Connector : Unsupported major.minor version 52.0
    查看>>
    org/hibernate/validator/internal/engine
    查看>>
    SQL-36 创建一个actor_name表,将actor表中的所有first_name以及last_name导入改表。
    查看>>
    ORM sqlachemy学习
    查看>>
    Ormlite数据库
    查看>>