when calling bounding_box() on a FT2 font with no utf8 parameter)
- fix calculation of descender for FT2, it was calculating the
minimum decent rather than the maximum for the characters in
the string
+ - didn't set default for bounding_box() utf8 parameter (caused a
+ warning when calling bounding_box() on a FT2 font with no utf8
+ parameter)
=================================================================
}
$input{size} ||= $self->{size};
$input{sizew} = _first($input{sizew}, $self->{sizew}, 0);
+ $input{utf8} = _first($input{utf8}, $self->{utf8}, 0);
my @box = $self->_bounding_box(%input);