有没有办法判断字体是否支持Imagick中的给定字符?

2022-08-30 22:29:28

我正在使用Imagick来生成简单的徽标,这些徽标只是背景上的文本。

我通常会遍历所有可用的字体,以便为用户提供每种字体的不同呈现选择(每种字体一个图像)。

问题是,某些字体不支持ASCII字符(我认为它们仅针对给定语言而设计)。我猜一些支持ASCII字符的字体也会在非ASCII字符上失败。

无论如何,我最终会得到这样的图像:

Imagick non-supported font charactersImagick non-supported font charactersImagick non-supported font characters

在 Imagick 中是否有一种编程方式来判断给定字体是否支持给定字符串中的所有字符?

这将有助于我过滤掉那些不支持用户键入的文本的字体,并避免显示任何垃圾图像,例如上面的那些。


答案 1

我不知道使用imagemagik的方法,但你可以从这里使用php-font-parser库:

https://github.com/Pomax/PHP-Font-Parser

具体来说,您可以分析所需字符串中每个字母的字体并检查返回值:

    $fonts = array("myfont.ttf");

    /**
     * For this test, we'll print the header information for the
     * loaded font, and try to find the letter "g".
     */
    $letter = "g";
    $json = false;
    while($json === false && count($fonts)>0) {
            $font = new OTTTFont(array_pop($fonts));
            echo "font header data:\n" . $font->toString() . "\n";
            $data = $font->get_glyph($letter);
            if($data!==false) {
                    $json = $data->toJSON(); }}

    if($json===false) { die("the letter '$letter' could not be found!"); }
    echo "glyph information for '$letter':\n" . $json;

上面的代码来自字体解析器项目 fonttest.php类:

https://github.com/Pomax/PHP-Font-Parser/blob/master/fonttest.php


答案 2

推荐