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...
Show off your group to the world. Share a photo of your group with us.

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 3274 - 3303 of 3697   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3274
Dear Group, I am trying the following code use PDF::API2; $in_pdf = PDF::API2->open('input.pdf'); for my $p (1 .. 4) { my $in_page = $in_pdf->openpage($p); ...
Aqua
aqua@...
Send Email
Aug 1, 2007
10:35 pm
3275
It would be useful if carp and croak were used in all modules instead of warn and die, thus also displaying the line number of the calling program, as well as...
Jeffrey Ratcliffe
jeffreyratcl...
Offline Send Email
Aug 2, 2007
7:19 am
3276
... Yes. eval { foobar }; if( $@ ){ # error trapped } This works regardless of if die, croak or exit was used. See `perldoc perlvar` and search for $@ and...
Mr. Shawn H. Corey
shawnhcorey
Offline Send Email
Aug 2, 2007
12:49 pm
3277
... I haven't tried this but a message I found has an interesting note:...
Mr. Shawn H. Corey
shawnhcorey
Offline Send Email
Aug 2, 2007
6:56 pm
3278
... Whilst that will work, I agree with Jeffrey. All modules should be using croak and carp for most almost all errors. That way, you know exactly what caused...
Rick Measham
rick_measham
Online Now Send Email
Aug 2, 2007
7:26 pm
3279
Yes, you can do that. I use the montage command to bunch thumbnails together but you can use convert also....
Mike Southern
mikesouthern
Offline Send Email
Aug 2, 2007
8:20 pm
3280
... You know what caused the error by the error message. The difference between carp and die is that carp gives the line number in the calling package and die...
Mr. Shawn H. Corey
shawnhcorey
Offline Send Email
Aug 2, 2007
8:27 pm
3281
... it to ... not, ... the ... create ... what ... needs ... http://groups.google.com/group/comp.lang.php/browse_thread/thread/f073 ...
spinningwebz2002
spinningwebz...
Offline Send Email
Aug 3, 2007
2:04 am
3282
If I want to add new fonts to pdf:api2 what is the correct format to use (TTF, Postscript etc) and do I have to do anything with the code? Bill H...
spinningwebz2002
spinningwebz...
Offline Send Email
Aug 3, 2007
2:07 am
3283
... The error message doesn't necessarily tell you enough to know which line in the calling package caused the error - hence my preference for croak and carp. ...
Jeffrey Ratcliffe
jeffreyratcl...
Offline Send Email
Aug 3, 2007
4:58 am
3284
... The image is embedded without changing its resolution. Jeff...
Jeffrey Ratcliffe
jeffreyratcl...
Offline Send Email
Aug 3, 2007
5:01 am
3285
Dear Group One of my colleague would like to know if it is possible to enable the "Text Threading" option in a PDF? This is something similar to using "Article...
aqua
aqua@...
Send Email
Aug 3, 2007
5:57 am
3286
Internet Marketer Gets $87 Million inGoogle Pay-Per-Click Ads FREE! ... And Makes Over $314 Million as a Result! ... And Now He's Going to Give You This Same...
Google Clicks
advert_buzz_...
Offline Send Email
Aug 4, 2007
1:44 am
3287
earn $200 to $1000+ every day. Work From Home. THIS IS ALL YOU NEED TO DO: 1- Activate Your Website 2- Login and access your website training material 3-...
Good Man
advert_buzz_...
Offline Send Email
Aug 7, 2007
5:56 am
3288
... Did anyone see this message? :( Is there some text or sample on how to add more fonts to PDF::API2? Bill H...
spinningwebz2002
spinningwebz...
Offline Send Email
Aug 7, 2007
8:05 pm
3289
perldoc PDF::API2 brings up examples as well as: http://search.cpan.org/dist/PDF-API2/lib/PDF/API2.pm and or the documentation at...
Mark Fowle
mfowle@...
Send Email
Aug 7, 2007
8:31 pm
3290
I would like to use PDF::API2 to create a pdf that includes javascript. What I am trying to actually accomplish is have an updated print date appear at the...
netarttodd
Offline Send Email
Aug 7, 2007
9:24 pm
3291
... Hash: SHA256 ... to use other fonts with pdfapi2 you use the ttfont/psfont methods. C fredo - -- Schonmal davon gehoert, dass nicht jeder linux user gleich...
Alfred Reibenschuh
alfredreiben...
Offline Send Email
Aug 7, 2007
9:55 pm
3292
... I don't remember Javascript being mentioned inside PDF. But you can look yourself at http://www.adobe.com/devnet/pdf/pdf_reference.html -- Just my...
Mr. Shawn H. Corey
shawnhcorey
Offline Send Email
Aug 7, 2007
10:53 pm
3293
... format to ... code? ... Am paraphrasing and simplifying here, but saw in some docs to use a new postscript font you just need to load it, but didnt see a...
spinningwebz2002
spinningwebz...
Offline Send Email
Aug 9, 2007
1:34 am
3294
Are there any image manipulation options in PDF:API. What I am looking for is being able to set the width or height of the image, or crop an image to a certain...
spinningwebz2002
spinningwebz...
Offline Send Email
Aug 9, 2007
1:37 am
3295
... See `perldoc PDF::API2::Content` and search for '$gfx->image'. -- Just my 0.00000002 million dollars worth, Shawn "For the things we have to learn before...
Mr. Shawn H. Corey
shawnhcorey
Offline Send Email
Aug 9, 2007
10:15 am
3296
forgive me if I am not understanding what exactly you want, but if all you need is a date inside the pdf why not do something like this use PDF::API2; use...
Ben
Gandalf_71
Offline Send Email
Aug 9, 2007
11:59 am
3297
here is a start for you setImage($imageName, $x, $y, $width, $hieght); sub setImage{ my $photo_file=$pdf->image_png($_[0] ,-lossless => 1); my $photo =...
Ben
Gandalf_71
Offline Send Email
Aug 9, 2007
12:02 pm
3298
Ben, Thanks for that input. I will most likely do something like that. It really does make sense to do it that way. My goal though was to get an updated ...
Todd Hamilton
netarttodd
Offline Send Email
Aug 9, 2007
1:06 pm
3299
There are a fair number of image manipulation options in PDF::API2 http://search.cpan.org/dist/PDF-API2/lib/PDF/API2/Content.pm has a lot of options outlined ...
Mark Fowle
mfowle@...
Send Email
Aug 9, 2007
1:16 pm
3300
The only thing I can think of is using PDF form of sometype, I have never used it, but could be possible to get somekind of input or something, Since PDF is a...
Ben
Gandalf_71
Offline Send Email
Aug 9, 2007
1:46 pm
3301
... If you're not overly particular about the date format, simply: return scalar localtime(shift || time); is much better ;-) Beats trying to stuff localtime()...
Brendon Oliver
bdo1966
Offline Send Email
Aug 9, 2007
2:05 pm
3302
I am scanning images (which are patient documents) and placing the images in a pdf I create with pdf::api2. Is there an image format that would work the best? ...
Todd Hamilton
netarttodd
Offline Send Email
Aug 9, 2007
2:10 pm
3303
Noting that I have no idea exactly what you are doing. I think the choice of image format should be more based on the image and output quality needed. PDF...
Mark Fowle
mfowle@...
Send Email
Aug 9, 2007
2:18 pm
Messages 3274 - 3303 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