Skip Menu |

This queue is for tickets about the PDF-TextBlock CPAN distribution.

Report information
The Basics
Id: 48471
Status: resolved
Worked: 5 min
Priority: 0/
Queue: PDF-TextBlock

People
Owner: Nobody in particular
Requestors: michael [...] fuery.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in:
  • 0.01
  • 0.02
Fixed in: 0.04



Subject: Bug PDF-TextBlock-0.02
Date: Wed, 5 Aug 2009 15:38:37 -0700
To: bug-PDF-TextBlock [...] rt.cpan.org
From: Michael Fuery <michael [...] fuery.com>
PDF-TextBlock-0.02 This is perl, v5.8.8 built for i386-linux-thread-multi Linux xyz.com 2.6.16-xenU #1 SMP Mon May 28 03:41:49 SAST 2007 i686 athlon i386 GNU/Linux BUG: Cannot specify which page to place text on, defaults to a new page. In sub apply: my $page = $self->page; creates a new page. It should put it on the current page by default: my $page = $self->pdf->openpage($self->currentPage) Default might be page 1. -- Michael Fuery Fuery Solutions, Inc 1736 Franklin St. Suite 350 Oakland, CA 94612 http://fuerysolutions.com Telephone: 925.997.4107
Subject: Re: [rt.cpan.org #48471] AutoReply: Bug PDF-TextBlock-0.02
Date: Wed, 5 Aug 2009 16:04:42 -0700
To: bug-PDF-TextBlock [...] rt.cpan.org
From: Michael Fuery <michael [...] fuery.com>
rt.cpan.org #48471 Sorry, code can be corrected as follows: in apply, $page = $pdf->openpage($self->page); #$self->page is the integer passed into $self->new and in _setup_defaults function add a line to the hash: page => 1 #defaults to page 1 Cheers On Wed, Aug 5, 2009 at 3:39 PM, Bugs in PDF-TextBlock via RT<bug-PDF-TextBlock@rt.cpan.org> wrote: Show quoted text
> > Greetings, > > This message has been automatically generated in response to the > creation of a trouble ticket regarding: >        "Bug PDF-TextBlock-0.02", > a summary of which appears below. > > There is no need to reply to this message right now.  Your ticket has been > assigned an ID of [rt.cpan.org #48471].  Your ticket is accessible > on the web at: > >    https://rt.cpan.org/Ticket/Display.html?id=48471 > > Please include the string: > >         [rt.cpan.org #48471] > > in the subject line of all future correspondence about this issue. To do so, > you may reply to this message. > >                        Thank you, >                        bug-PDF-TextBlock@rt.cpan.org > > ------------------------------------------------------------------------- > PDF-TextBlock-0.02 > This is perl, v5.8.8 built for i386-linux-thread-multi > Linux xyz.com 2.6.16-xenU #1 SMP Mon May 28 03:41:49 SAST 2007 i686 > athlon i386 GNU/Linux > > BUG: Cannot specify which page to place text on, defaults to a new page. > In sub apply:    my $page = $self->page;  creates a new page. > It should put it on the current page by default: > my $page = $self->pdf->openpage($self->currentPage) > Default might be page 1. > > -- > Michael Fuery > Fuery Solutions, Inc > 1736 Franklin St. Suite 350 > Oakland, CA 94612 > http://fuerysolutions.com > Telephone: 925.997.4107 > >
-- Michael Fuery Fuery Solutions, Inc 1736 Franklin St. Suite 350 Oakland, CA 94612 http://fuerysolutions.com Telephone: 925.997.4107
Hi Michael, The same thing came up in this conversation: http://www.perlmonks.org/?node_id=793206 I tried to add a couple examples of how to specify page if you want to into the POD. I pushed 0.03 to PAUSE a few minutes ago. Let me know if that helps. Cheers, j