- fix some mismatched format strings/types
+ - enable the debug log for t/t90std.t
+
Imager-Font-FT2 0.89
====================
use Imager::Font;
use Test::More tests => std_font_test_count();
+Imager->open_log(log => "testout/t90std.log");
+
my $font = Imager::Font->new(file => "fontfiles/dodge.ttf",
type => "ft2");
my $name_font =
glyph_names => [ "A", "uni2010", "A" ],
});
}
+
+Imager->close_log;
+Imager::Font::T1 1.020
+======================
+
+ - enable the debug log for t/t90std.t
+
Imager::Font::T1 1.020
======================
use Scalar::Util ();
BEGIN {
- $VERSION = "1.020";
+ $VERSION = "1.021";
require XSLoader;
XSLoader::load('Imager::Font::T1', $VERSION);
use Imager::Font;
use Test::More tests => std_font_test_count();
+Imager->open_log(log => "testout/t90std.log");
+
my $font = Imager::Font->new(file => "fontfiles/dcr10.pfb",
type => "t1");
std_font_tests({ font => $font,
has_chars => [ 1, '', 1 ]});
}
+
+Imager->close_log;
$Imager::formats{tt}
or plan skip_all => "No tt available";
+Imager->open_log(log => "testout/t37std.log");
+
plan tests => std_font_test_count();
my $font = Imager::Font->new(file => "fontfiles/dodge.ttf",
glyph_names => [ qw(A uni2010 A) ],
});
}
+
+Imager->close_log;