gpt4 book ai didi

php - Laravel DomPdf添加自定义字体

转载 作者:行者123 更新时间:2023-12-02 05:57:43 34 4
gpt4 key购买 nike

我正在尝试使用Laravel在Dompdf中使用OLD英文字体。
我已经在laravel View 中插入了字体。但是似乎在生成pdf时不起作用。我尝试编辑dompdf >vendor >.../dompdf_font_family_cache.dist.php文件。但是没有运气,

任何人都可以提出解决方案吗?

提前致谢。

最佳答案

  • 在Laravel项目的存储文件夹中创建一个字体目录。 (存储/字体)
  • 将.otf或.ttf文件放在storage/fonts目录中。
  • 在您的view/html中,使用Laravel提供的storage_path方法添加@ font-face规则。
    @font-face {
    font-family: 'Your custom font name';
    src: url({{ storage_path('fonts\your-custom-font.ttf') }}) format("truetype");
    font-weight: 400; // use the matching font-weight here ( 100, 200, 300, 400, etc).
    font-style: normal; // use the matching font-style here
    }
  • 将字体系列规则添加到CSS中,如下所示
    body {
    font-family: "Your custom font name";
    }

  • 希望这可以帮助。

    关于php - Laravel DomPdf添加自定义字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43636379/

    34 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com