centos man page for font::ttf::dumper

Query: font::ttf::dumper

OS: centos

Section: 3

Links: centos man pages   all man pages

Forums: unix linux community   forum categories

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

Font::TTF::Dumper(3)					User Contributed Perl Documentation				      Font::TTF::Dumper(3)

NAME
Font::TTF::Dumper - Debug dump of a font datastructure, avoiding recursion on ' PARENT'
SYNOPSIS
Font::TTF::Dumper; # Print a table from the font structure: print ttfdump($font->{$tag}); # Print font table with name print ttfdump($font->{'head'}, 'head'); # Print one glyph's data: print ttfdump($font->{'loca'}->read->{'glyphs'}[$gid], "glyph_$gid");
DESCRIPTION
Font::TTF data structures are trees created from hashes and arrays. When trying to figure out how the structures work, sometimes it is helpful to use Data::Dumper on them. However, many of the object structures have ' PARENT' links that refer back to the object's parent, which means that Data::Dumper ends up dumping the whole font no matter what. The purpose of this module is to do just one thing: invoke Data::Dumper with a filter that skips over the ' PARENT' element of any hash. To reduce output further, this module also skips over ' CACHE' elements and any hash element whose value is a Font::TTF::Glyph or Font::TTF::Font object. (Really should make this configurable.) See also Font::TTF::Font perl v5.16.3 2011-10-13 Font::TTF::Dumper(3)
Related Man Pages
font::ttf::anchor(3) - centos
font::ttf::loca(3) - centos
font::ttf::grfeat(3) - centos
font::ttf::head(3pm) - debian
font::ttf::ttc(3pm) - debian
Similar Topics in the Unix Linux Community
DB2 convert digits to binary format
CentOS7 restoring file capabilities
Unsure why access time on a directory change isn't changing
[TIP] Processing YAML files with yq
Please Welcome Dave Munro to the Moderator Team!