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 => 12;
15 BEGIN { use_ok('Imager') };
17 -d "testout" or mkdir "testout";
19 Imager->open_log(log => "testout/t36oofont.log");
21 my $fontname_tt=$ENV{'TTFONTTEST'}||'./fontfiles/dodge.ttf';
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 $Imager::formats{"tt"} && -f $fontname_tt
31 or skip("FT1.x missing or disabled", 10);
33 my $img=Imager->new(xsize=>300, ysize=>100) or die "$Imager::ERRSTR\n";
35 my $font=Imager::Font->new(file=>$fontname_tt,size=>25)
36 or die $img->{ERRSTR};
38 ok(1, "create TT font object");
40 ok($img->string(font=>$font, text=>"XMCLH", 'x'=>100, 'y'=>100),
43 $img->line(x1=>0, x2=>300, y1=>50, y2=>50, color=>$green);
46 my @bbox=$font->bounding_box(string=>$text, 'x'=>0, 'y'=>50);
48 is(@bbox, 8, "bbox list size");
50 $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),
54 "draw hand-encoded UTF8 text");
59 or skip("perl too old for native utf8", 1);
60 eval q{$text = "A\x{2010}A"};
61 ok($img->string(font=>$font, text=>$text, 'x'=>200, 'y'=>50),
62 "draw native UTF8 text");
65 ok($img->write(file=>"testout/t36oofont2.ppm", type=>'pnm'),
66 "write t36oofont2.ppm")
67 or print "# ", $img->errstr,"\n";
69 ok($font->utf8, "make sure utf8 method returns true");
71 my $has_chars = $font->has_chars(string=>"\x01A");
72 is($has_chars, "\x00\x01", "has_chars scalar");
73 my @has_chars = $font->has_chars(string=>"\x01A");
74 ok(!$has_chars[0], "has_chars list 0");
75 ok($has_chars[1], "has_chars list 1");