Pop\Font\TrueType::parseName PHP Метод

parseName() защищенный Метод

Method to parse the TTF info of the TrueType font file from the name table.
protected parseName ( ) : void
Результат void
    protected function parseName()
    {
        if (isset($this->tableInfo['name'])) {
            $this->tables['name'] = new TrueType\Table\Name($this);
            $this->info = $this->tables['name'];
            if (stripos($this->tables['name']->fontFamily, 'bold') !== false || stripos($this->tables['name']->fullName, 'bold') !== false || stripos($this->tables['name']->postscriptName, 'bold') !== false) {
                $this->stemV = 120;
            } else {
                $this->stemV = 70;
            }
        }
    }