Font::TTF::Kern::CompactClassArray - Compact Class Array kern subtable for AAT


Font-TTF documentation Contained in the Font-TTF distribution.

Index


Code Index:

NAME

Top

Font::TTF::Kern::CompactClassArray - Compact Class Array kern subtable for AAT

METHODS

Top

$t->read

Reads the table into memory

$t->out($fh)

Writes the table to a file

$t->print($fh)

Prints a human-readable representation of the table

BUGS

Top

None known

AUTHOR

Top

Jonathan Kew Jonathan_Kew@sil.org. See Font::TTF::Font for copyright and licensing.


Font-TTF documentation Contained in the Font-TTF distribution.
package Font::TTF::Kern::CompactClassArray;

use strict;
use vars qw(@ISA);
use Font::TTF::Utils;
use Font::TTF::AATutils;

@ISA = qw(Font::TTF::Kern::Subtable);

sub new
{
    my ($class) = @_;
    my ($self) = {};

    $class = ref($class) || $class;
    bless $self, $class;
}

sub read
{
    my ($self, $fh) = @_;
    
    die "incomplete";
            
    $self;
}

sub out_sub
{
    my ($self, $fh) = @_;
    
    die "incomplete";
            
    $self;
}

sub print
{
    my ($self, $fh) = @_;
    
    my $post = $self->post();
    
    $fh = 'STDOUT' unless defined $fh;

    die "incomplete";
}


sub type
{
    return 'kernCompactClassArray';
}


1;