File: font-type1.t

package info (click to toggle)
libpdf-api2-perl 2.047-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,228 kB
  • sloc: perl: 42,227; makefile: 11
file content (27 lines) | stat: -rw-r--r-- 750 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use Test::More tests => 2;
my $test_count = 2;

use warnings;
use strict;

use PDF::API2;

my $pfb_file = '/usr/share/fonts/type1/gsfonts/a010013l.pfb';
my $pfm_file = '/usr/share/fonts/type1/gsfonts/a010013l.pfm';

SKIP: {
    skip "Skipping Type1 tests... URW Gothic L Book font not found", $test_count
        unless (-f $pfb_file and -r $pfb_file and -f $pfm_file and -r $pfm_file);

    my $pdf = PDF::API2->new();
    my $font = $pdf->font($pfb_file, -pfmfile => $pfm_file);

    # Do something with the font to see if it appears to have opened
    # properly.
    ok($font->glyphNum() > 0,
       q{Able to read a count of glyphs (>0) from a Type1 font});

    like($font->{'Name'}->val(), qr/^Ur/,
         q{Font has the expected name});

}