4 #use lib qw(blib/lib blib/arch);
6 # Before `make install' is performed this script should be runnable with
7 # `make test'. After `make install' it should work as `perl test.pl'
9 ######################### We start with some black magic to print on failure.
11 # Change 1..1 below to 1..last_test_to_print .
12 # (It may become useful if the test is moved to ./t subdirectory.)
13 use Test::More tests => 20;
15 BEGIN { use_ok('Imager') };
17 init_log("testout/t36oofont.log", 1);
19 my $fontname_tt=$ENV{'TTFONTTEST'}||'./fontfiles/dodge.ttf';
20 my $fontname_pfb=$ENV{'T1FONTTESTPFB'}||'./fontfiles/dcr10.pfb';
23 my $green=Imager::Color->new(92,205,92,128);
24 die $Imager::ERRSTR unless $green;
25 my $red=Imager::Color->new(205, 92, 92, 255);
26 die $Imager::ERRSTR unless $red;
30 i_has_format("t1") && -f $fontname_pfb
31 or skip("T1lib missing or disabled", 8);
33 my $img=Imager->new(xsize=>300, ysize=>100) or die "$Imager::ERRSTR\n";
35 my $font=Imager::Font->new(file=>$fontname_pfb,size=>25)
36 or die $img->{ERRSTR};
38 ok(1, "created font");
40 ok($img->string(font=>$font, text=>"XMCLH", 'x'=>100, 'y'=>100),
42 $img->line(x1=>0, x2=>300, y1=>50, y2=>50, color=>$green);
45 my @bbox=$font->bounding_box(string=>$text, 'x'=>0, 'y'=>50);
47 is(@bbox, 8, "bounding box list length");
49 $img->box(box=>\@bbox, color=>$green);
52 $text = pack("C*", 0x41, 0xE2, 0x80, 0x90, 0x41);
53 ok($img->string(font=>$font, text=>$text, 'x'=>100, 'y'=>50, utf8=>1,
55 "draw 'utf8' hand-encoded text");
57 ok($img->string(font=>$font, text=>$text, 'x'=>140, 'y'=>50, utf8=>1,
58 underline=>1, channel=>2),
59 "channel 'utf8' hand-encoded text");
64 or skip("perl too old for native utf8", 2);
65 eval q{$text = "A\x{2010}A"};
66 ok($img->string(font=>$font, text=>$text, 'x'=>180, 'y'=>50,
68 "draw native UTF8 text");
69 ok($img->string(font=>$font, text=>$text, 'x'=>220, 'y'=>50, channel=>1),
70 "channel native UTF8 text");
73 ok($img->write(file=>"testout/t36oofont1.ppm", type=>'pnm'),
74 "write t36oofont1.ppm")
75 or print "# ",$img->errstr,"\n";
81 i_has_format("tt") && -f $fontname_tt
82 or skip("FT1.x missing or disabled", 10);
84 my $img=Imager->new(xsize=>300, ysize=>100) or die "$Imager::ERRSTR\n";
86 my $font=Imager::Font->new(file=>$fontname_tt,size=>25)
87 or die $img->{ERRSTR};
89 ok(1, "create TT font object");
91 ok($img->string(font=>$font, text=>"XMCLH", 'x'=>100, 'y'=>100),
94 $img->line(x1=>0, x2=>300, y1=>50, y2=>50, color=>$green);
97 my @bbox=$font->bounding_box(string=>$text, 'x'=>0, 'y'=>50);
99 is(@bbox, 8, "bbox list size");
101 $img->box(box=>\@bbox, color=>$green);
103 $text = pack("C*", 0x41, 0xE2, 0x80, 0x90, 0x41);
104 ok($img->string(font=>$font, text=>$text, 'x'=>100, 'y'=>50, utf8=>1),
105 "draw hand-encoded UTF8 text");
110 or skip("perl too old for native utf8", 1);
111 eval q{$text = "A\x{2010}A"};
112 ok($img->string(font=>$font, text=>$text, 'x'=>200, 'y'=>50),
113 "draw native UTF8 text");
116 ok($img->write(file=>"testout/t36oofont2.ppm", type=>'pnm'),
117 "write t36oofont2.ppm")
118 or print "# ", $img->errstr,"\n";
120 ok($font->utf8, "make sure utf8 method returns true");
122 my $has_chars = $font->has_chars(string=>"\x01A");
123 is($has_chars, "\x00\x01", "has_chars scalar");
124 my @has_chars = $font->has_chars(string=>"\x01A");
125 ok(!$has_chars[0], "has_chars list 0");
126 ok($has_chars[1], "has_chars list 1");