Search the web
Sign In
New User? Sign Up
perl-text-pdf-modules · Mailing-List for Users of PDF::API2
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2395 - 2424 of 3697   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2395
Hello, On a page we use $gfx->rect then fillcolor and fillstroke to draw a color filled square. After that we use $txt->text("some text") type calls to add...
turnertim
Offline Send Email
Dec 1, 2004
4:58 pm
2396
... The text object uses the same fill color as the graphics object. Reset the text color: $text->fillcolor('#ffffff'); # Set text to white Don't forget, in...
Shawn Corey
shwncorey
Offline Send Email
Dec 1, 2004
5:34 pm
2397
Also (at least if I remember correctly) $txt=$pdf->text(); $gfx=$pdf->gfx(); then text is written before gfx (is under) $gfx=$pdf->gfx(); $txt=$pdf->text(); ...
Mark Fowle
mfowle@...
Send Email
Dec 1, 2004
6:13 pm
2398
... I don't think so but I haven't check that part of the code. These statements create the Perl objects but do not put anything in the PDF until they are...
Shawn Corey
shwncorey
Offline Send Email
Dec 1, 2004
8:41 pm
2399
... You were correct. The order in which the Perl objects are created determines the order they appear in the page's content. You also have to change the fill...
Shawn Corey
shwncorey
Offline Send Email
Dec 2, 2004
12:55 pm
2400
hi! ... exit will clean all up after you ;) cheers, -- __ _ / _|_ __ ___ __| | ___ unix, linux, freebsd...
fredo
alfredreiben...
Offline Send Email
Dec 3, 2004
4:37 pm
2401
Can someone tell me how to add underline text? Or, even harder, in a paragraph of text underline one sentence of that paragraph. Ideally, in the calls that add...
turnertim
Offline Send Email
Dec 3, 2004
10:09 pm
2402
Let's say you have written text and paragraphs on a page. How do you get the current y position to pass to a graphics routine? so that you can draw a...
turnertim
Offline Send Email
Dec 3, 2004
11:01 pm
2403
... ($tx,$y) = $txt->textpos; Also: %state = $txt->textstate;...
Shawn Corey
shwncorey
Offline Send Email
Dec 4, 2004
1:30 pm
2404
... I haven't found an easy way to do this. I know of no font that has underlining built-in. So when I need to underline I keep track of the X position of the...
Shawn Corey
shwncorey
Offline Send Email
Dec 4, 2004
1:33 pm
2405
Hello, We've been using PDF::API2 for 3 years now and recently upgraded our systems and software. Since the upgrade we've been seeing an error that happens...
Kurt Hansen
khansen@...
Send Email
Dec 6, 2004
3:07 pm
2406
... routine? ... example. ... I've been having troubles using textpos(). I'm trying to write some text, some more text, an annotation aligned via textpos, then...
c0brahann
Offline Send Email
Dec 6, 2004
4:39 pm
2407
I had problems with it too which is why I sent my post... I would write some text paragraphs and text labels and draw a gfx line add more text, etc. Then when...
Tim Turner
turnertim
Offline Send Email
Dec 6, 2004
4:59 pm
2408
How do I tell what fonts are installed on our system for use by PDF::API2? Or is there a list somewhere of the basic ones. I tried Helvetica-Italic and I get...
turnertim
Offline Send Email
Dec 9, 2004
9:33 pm
2409
Hello, I have a script that creates a 3 page document... I know how to loop thru the pages based on the page count... but how do I get the actual first page......
turnertim
Offline Send Email
Dec 9, 2004
10:15 pm
2410
Hi, A list of the corefonts is at: perldoc PDF::API2::Resource::Font::CoreFont...
Shawn Corey
shwncorey
Offline Send Email
Dec 9, 2004
10:44 pm
2411
Hi, From perldoc PDF::API2 $pageobj = $pdf->openpage $index Returns the pageobject of page $index. Note: on $index -1,0 ... returns the last page 1 ... returns...
Shawn Corey
shwncorey
Offline Send Email
Dec 9, 2004
10:47 pm
2412
Thanks Shawn. I checked that and there is no Helvetica italic... Does anyone know why or am I missing it? I'm substituting Verdana italic for now, but am...
Tim Turner
turnertim
Offline Send Email
Dec 10, 2004
3:12 am
2413
Try again .. this time look for Helvetica Oblique. Sans-serif fonts use 'oblique' rather than 'italic' as their name for the font-on-a-slant. <woffle> FYI, the...
Rick Measham
rick_measham
Online Now Send Email
Dec 10, 2004
3:32 am
2414
Shawn and Alfred, The perldoc is possibly wrong??? $pageobj = $pdf->openpage $index ===> throws perl syntax error Note I see the same syntax error on CPAN...
Tim Turner
turnertim
Offline Send Email
Dec 10, 2004
4:20 am
2415
... What is the syntax error? What version of PDF::API2 are you running?...
Shawn Corey
shwncorey
Offline Send Email
Dec 10, 2004
12:55 pm
2416
syntax error at /cgi-bin/distributions.cgi line 542, near "->openpage $pagectr" Execution of /cgi-bin/distributions.cgi aborted due to compilation errors. ...
Tim Turner
turnertim
Offline Send Email
Dec 10, 2004
2:05 pm
2417
Hello, I'm resending this message because I'm not sure it every made it to the list. At least, I never saw it though I have seen others since. Maybe it got...
Kurt Hansen
khansen@...
Send Email
Dec 10, 2004
3:38 pm
2418
Hi, What PDF::API2 package did you download? The current stable version is PDF-API2-0.3r77, the latest version I have is PDF-API2-0.40_77 (there may be...
Shawn Corey
shwncorey
Offline Send Email
Dec 10, 2004
3:49 pm
2419
Hi, If I run that command I get: torrid.webex.net$ perl -MPDF::API2 -e 'print "$PDF::API2::VERSION\n"' Unrecognized switch: -MPDF::API2. I'm pretty sure we...
Tim Turner
turnertim
Offline Send Email
Dec 10, 2004
4:09 pm
2420
Kurt, Your prior post to this did appear on the list cuz I recall reading it... I just think nobody responded... Are you trying to center the text? If so, try...
Tim Turner
turnertim
Offline Send Email
Dec 10, 2004
4:15 pm
2421
... Switch is a term that is used by MS DOS. Most UNIX/LINUX systems call these things options. Try: perl -e 'use PDF::API2;print"$PDF::API2::VERSION\n"' or...
Shawn Corey
shwncorey
Offline Send Email
Dec 10, 2004
7:31 pm
2422
... I would like to add to Tim's post that there is a bug in the way PDF::API2 tracks the position of text in the PDF. The patch is in the works but until it...
Shawn Corey
shwncorey
Offline Send Email
Dec 10, 2004
7:31 pm
2423
The command line version says: 1.64 That doesn't sound right to me though. We're not using DOS we're using BSD Unix. -Tim ... From: Shawn Corey...
Tim Turner
turnertim
Offline Send Email
Dec 10, 2004
7:53 pm
2424
... Thank you very much, Tim and Shawn. That gives me some good leads! Take care, Kurt...
Kurt Hansen
khansen@...
Send Email
Dec 11, 2004
12:52 am
Messages 2395 - 2424 of 3697   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help