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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
package Imager::Font::Type1;
use strict;
use Imager::Color;
use vars qw(@ISA $VERSION);
@ISA = qw(Imager::Font);
$VERSION = "1.011";
*_first = \&Imager::Font::_first;
my $t1aa;
# $T1AA is in there because for some reason (probably cache related) antialiasing
# is a system wide setting in t1 lib.
sub t1_set_aa_level {
if (!defined $t1aa or $_[0] != $t1aa) {
Imager::i_t1_set_aa($_[0]);
$t1aa=$_[0];
}
}
sub new {
my $class = shift;
my %hsh=(color=>Imager::Color->new(255,0,0,0),
size=>15,
@_);
unless ($hsh{file}) {
$Imager::ERRSTR = "No font file specified";
return;
}
unless (-e $hsh{file}) {
$Imager::ERRSTR = "Font file $hsh{file} not found";
return;
}
unless ($Imager::formats{t1}) {
$Imager::ERRSTR = "Type 1 fonts not supported in this build";
return;
}
unless ($hsh{file} =~ m!^/! || $hsh{file} =~ m!^\./!) {
$hsh{file} = './' . $hsh{file};
}
if($hsh{afm}) {
unless (-e $hsh{afm}) {
$Imager::ERRSTR = "Afm file $hsh{afm} not found";
return;
}
unless ($hsh{afm} =~ m!^/! || $hsh{afm} =~ m!^\./!) {
$hsh{file} = './' . $hsh{file};
}
} else {
$hsh{afm} = 0;
}
my $id = Imager::i_t1_new($hsh{file},$hsh{afm});
unless ($id >= 0) { # the low-level code may miss some error handling
$Imager::ERRSTR = "Could not load font ($id)";
return;
}
return bless {
id => $id,
aa => $hsh{aa} || 0,
file => $hsh{file},
type => 't1',
size => $hsh{size},
color => $hsh{color},
}, $class;
}
sub _draw {
my $self = shift;
my %input = @_;
t1_set_aa_level($input{aa});
my $flags = '';
$flags .= 'u' if $input{underline};
$flags .= 's' if $input{strikethrough};
$flags .= 'o' if $input{overline};
if (exists $input{channel}) {
Imager::i_t1_cp($input{image}{IMG}, $input{'x'}, $input{'y'},
$input{channel}, $self->{id}, $input{size},
$input{string}, length($input{string}), $input{align},
$input{utf8}, $flags);
} else {
Imager::i_t1_text($input{image}{IMG}, $input{'x'}, $input{'y'},
$input{color}, $self->{id}, $input{size},
$input{string}, length($input{string}),
$input{align}, $input{utf8}, $flags);
}
return $self;
}
sub _bounding_box {
my $self = shift;
my %input = @_;
my $flags = '';
$flags .= 'u' if $input{underline};
$flags .= 's' if $input{strikethrough};
$flags .= 'o' if $input{overline};
return Imager::i_t1_bbox($self->{id}, $input{size}, $input{string},
length($input{string}), $input{utf8}, $flags);
}
# check if the font has the characters in the given string
sub has_chars {
my ($self, %hsh) = @_;
unless (defined $hsh{string} && length $hsh{string}) {
$Imager::ERRSTR = "No string supplied to \$font->has_chars()";
return;
}
return Imager::i_t1_has_chars($self->{id}, $hsh{string},
_first($hsh{'utf8'}, $self->{utf8}, 0));
}
sub utf8 {
1;
}
sub face_name {
my ($self) = @_;
Imager::i_t1_face_name($self->{id});
}
sub glyph_names {
my ($self, %input) = @_;
my $string = $input{string};
defined $string
or return Imager->_set_error("no string parameter passed to glyph_names");
my $utf8 = _first($input{utf8} || 0);
Imager::i_t1_glyph_name($self->{id}, $string, $utf8);
}
1;
__END__
=head1 NAME
Imager::Font::Type1 - low-level functions for Type1 fonts
=head1 DESCRIPTION
Imager::Font creates a Imager::Font::Type1 object when asked to create
a font object based on a C<.pfb> file.
See Imager::Font to see how to use this type.
This class provides low-level functions that require the caller to
perform data validation
By default Imager no longer creates the F<t1lib.log> log file. You
can re-enable that by calling Imager::init() with the C<t1log> option:
Imager::init(t1log=>1);
This must be called before creating any fonts.
Currently specific to Imager::Font::Type1, you can use the following
flags when drawing text or calculating a bounding box:
=for stopwords overline strikethrough
=over
=item *
C<underline> - Draw the text with an underline.
=item *
C<overline> - Draw the text with an overline.
=item *
C<strikethrough> - Draw the text with a strikethrough.
=back
Obviously, if you're calculating the bounding box the size of the line
is included in the box, and the line isn't drawn :)
=head1 AUTHOR
Addi, Tony
=cut
|