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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
|
package Imager::Font::FreeType2;
use strict;
use Imager::Color;
use vars qw(@ISA $VERSION);
@ISA = qw(Imager::Font);
$VERSION = "1.014";
*_first = \&Imager::Font::_first;
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{ft2}) {
$Imager::ERRSTR = "Freetype2 not supported in this build";
return;
}
my $id = i_ft2_new($hsh{file}, $hsh{'index'} || 0);
unless ($id) { # the low-level code may miss some error handling
$Imager::ERRSTR = Imager::_error_as_msg();
return;
}
return bless {
id => $id,
aa => $hsh{aa} || 0,
file => $hsh{file},
type => 't1',
size => $hsh{size},
color => $hsh{color},
utf8 => $hsh{utf8},
vlayout => $hsh{vlayout},
}, $class;
}
sub _draw {
my $self = shift;
my %input = @_;
if (exists $input{channel}) {
i_ft2_cp($self->{id}, $input{image}{IMG}, $input{'x'}, $input{'y'},
$input{channel}, $input{size}, $input{sizew} || 0,
$input{string}, , $input{align}, $input{aa}, $input{vlayout},
$input{utf8});
} else {
i_ft2_text($self->{id}, $input{image}{IMG},
$input{'x'}, $input{'y'},
$input{color}, $input{size}, $input{sizew} || 0,
$input{string}, $input{align}, $input{aa}, $input{vlayout},
$input{utf8});
}
}
sub _bounding_box {
my $self = shift;
my %input = @_;
return i_ft2_bbox($self->{id}, $input{size}, $input{sizew}, $input{string},
$input{utf8});
}
sub dpi {
my $self = shift;
my @old = i_ft2_getdpi($self->{id});
if (@_) {
my %hsh = @_;
my $result;
unless ($hsh{xdpi} && $hsh{ydpi}) {
if ($hsh{dpi}) {
$hsh{xdpi} = $hsh{ydpi} = $hsh{dpi};
}
else {
$Imager::ERRSTR = "dpi method requires xdpi and ydpi or just dpi";
return;
}
i_ft2_setdpi($self->{id}, $hsh{xdpi}, $hsh{ydpi}) or return;
}
}
return @old;
}
sub hinting {
my ($self, %opts) = @_;
i_ft2_sethinting($self->{id}, $opts{hinting} || 0);
}
sub _transform {
my $self = shift;
my %hsh = @_;
my $matrix = $hsh{matrix} or return undef;
return i_ft2_settransform($self->{id}, $matrix)
}
sub utf8 {
return 1;
}
# 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 i_ft2_has_chars($self->{id}, $hsh{string},
_first($hsh{'utf8'}, $self->{utf8}, 0));
}
sub face_name {
my ($self) = @_;
i_ft2_face_name($self->{id});
}
sub can_glyph_names {
i_ft2_can_do_glyph_names();
}
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);
my $reliable_only = _first($input{reliable_only}, 1);
my @names = i_ft2_glyph_name($self->{id}, $string, $utf8, $reliable_only);
@names or return Imager->_set_error(Imager->_error_as_msg);
return @names if wantarray;
return pop @names;
}
sub is_mm {
my ($self) = @_;
i_ft2_is_multiple_master($self->{id});
}
sub mm_axes {
my ($self) = @_;
my ($num_axis, $num_design, @axes) =
i_ft2_get_multiple_masters($self->{id})
or return Imager->_set_error(Imager->_error_as_msg);
return @axes;
}
sub set_mm_coords {
my ($self, %opts) = @_;
$opts{coords}
or return Imager->_set_error("Missing coords parameter");
ref($opts{coords}) && $opts{coords} =~ /ARRAY\(0x[\da-f]+\)$/
or return Imager->_set_error("coords parameter must be an ARRAY ref");
i_ft2_set_mm_coords($self->{id}, @{$opts{coords}})
or return Imager->_set_error(Imager->_error_as_msg);
return 1;
}
1;
__END__
=head1 NAME
Imager::Font::FreeType2 - low-level functions for FreeType2 text output
=head1 DESCRIPTION
Imager::Font creates a Imager::Font::FreeType2 object when asked to.
See Imager::Font to see how to use this type.
This class provides low-level functions that require the caller to
perform data validation.
This driver supports:
=over
=item transform()
=item dpi()
=item draw()
The following parameters:
=over
=item *
C<utf8>
=item *
C<vlayout>
=item *
C<sizew>
=back
=back
=head2 Special behaviors
If you call transform() to set a transformation matrix, hinting will
be switched off. This prevents sudden jumps in the size of the text
caused by the hinting when the transformation is the identity matrix.
If for some reason you want hinting enabled, use
$font->hinting(hinting=>1) to re-enable hinting. This will need to be
called after I<each> call to transform().
=head1 AUTHOR
Addi, Tony
=cut
|