Subject: | package Imager::Font::Win32; |
Error using Bounding box with Win32 Fonts. I found the problem, please see below:
sub _bounding_box {
my ($self, %opts) = @_;
my @bbox = i_wf_bbox($self->{face}, $opts{size}, $opts{string});
}
Should be:
sub _bounding_box {
my ($self, %opts) = @_;
my @bbox = Imager::i_wf_bbox($self->{face}, $opts{size}, $opts{string});
}