Skip Menu |

This queue is for tickets about the Imager CPAN distribution.

Report information
The Basics
Id: 1748
Status: resolved
Priority: 0/
Queue: Imager

People
Owner: Nobody in particular
Requestors: mseelye [...] yahoo.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.41
Fixed in: (no value)



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}); }
Fixed for the next release. Added a smoke test to t/t37w32font.t that should have detected this in the first place :) Thanks for your report. Tony Cook