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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 2866 - 2895 of 3697   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2866
Is it a bug that the +/- character (0xB1) is not rendered by Times and Courier corefonts, or is this character simply missing? This is how to reproduce the...
ribasushi
Offline Send Email
May 1, 2006
5:30 pm
2867
I get from the docs how to make an image file. Basically, my $picture = '/path/to/picture'; my $photo = $page->gfx; my $photo_file=$pdf->image_jpeg($picture); ...
Christopher Pryce
meeples
Online Now Send Email
May 1, 2006
6:35 pm
2868
I would suspect you could go via a GD image object from a stream [haven't tried myself] - though I have found during recent experiments that the speed, ...
Hugh Dixon
baggiero
Offline Send Email
May 2, 2006
9:04 am
2869
... I don't know why some fonts have one encoding and some have another, but you can change it with like so: $pdf->corefont ($font, -encode => 'iso8859-1' ),...
Ken Hirsch
kenahirsch
Offline Send Email
May 3, 2006
4:39 am
2870
I am generating three-page pdf files with only text and graphics (rectangles, arc, lines). I'm a fair bit surprised to find that these PDF files are over 130kb...
Rick Measham
rick_measham
Offline Send Email
May 3, 2006
5:25 am
2871
Hello, Somewhere there is a script pdf-optimize.pl It may or may not be installed with PDF::API2, I forget, but it is also available on CPAN under contrib.: ...
Mark Fowle
mfowle@...
Send Email
May 3, 2006
1:06 pm
2872
... Thanks for that Mark, however it doesn't have the required effect .. the file is now 4 bytes LARGER! pdf-optimize.pl /tmp/Cheese.large.pdf...
Rick Measham
rick_measham
Offline Send Email
May 4, 2006
12:39 am
2873
OK I have only seen that in situations where the pdf is already very clean, either the pdf is simple, or the file has already been cleaned. There are other...
Mark Fowle
mfowle@...
Send Email
May 4, 2006
1:25 pm
2874
I saw drastic differences in the size of the resulting pdf's depending on the types of the images that I was putting into the pdf. Different image formats...
Matthew Lenz
matthewlenz
Offline Send Email
May 4, 2006
2:32 pm
2875
You might look at the PDF and see if you can figure out what is taking up the space. One possibility might be a font is being included? Ricky...
Richard Morse
remorse_mgh
Offline Send Email
May 4, 2006
4:02 pm
2876
Bascially I need to process existing PDFs and perform the following operations. * Build a basic semantic understanding of the document based on the tagged ...
arguile
arguile_42
Offline Send Email
May 16, 2006
2:42 pm
2877
... but ... This worked, however it introduced another problem. Both Times and Courier (the ones that would not print the +/- sign) after having their encoding...
ribasushi
Offline Send Email
May 30, 2006
12:09 am
2878
Greetings. I was wondering is there a way to replicate streams for content that is absolutely identical (including position) and is present on several pages,...
ribasushi
Offline Send Email
May 30, 2006
12:19 am
2879
The encoding of the Adobe core fonts is AdobeStandardEncoding. PDF supports 4 ( STD, MAC, WIN, PDF) Also, there are 14 core fonts in the following families:...
James Moosmann
moosepdf
Offline Send Email
May 30, 2006
6:12 am
2880
Content for a page can in one or more indirect objects each of which would have to be a content stream. I am not sure how PDF::API handles it, but yes, the...
James Moosmann
moosepdf
Offline Send Email
May 30, 2006
6:27 am
2881
I want to open an existing PDF and add something to the background. How can I do that? (if I simply draw on the page everything is being placed on top of the...
ribasushi
Offline Send Email
Jun 1, 2006
4:27 am
2882
... The fact that there is PDF::API2::Resource::Font::CoreFont::trebuchet made me believe it is a corefont alongside ...
ribasushi
Offline Send Email
Jun 1, 2006
4:36 am
2883
According to Appendix D of the 1.5 PDF Specification, the +/- is 0xB1 (octal 261) which is decimal 177 for all encodings EXCEPT STD. The only way you can get...
James Moosmann
moosepdf
Offline Send Email
Jun 1, 2006
11:09 am
2884
As noted in the POD for PDF::API2::Page (though not explained very well) if you obtain a reference to a text or gfx object and supply a true value as a...
Tom Freedman
tinfoilhat
Offline Send Email
Jun 1, 2006
2:23 pm
2885
... 0xB1 (octal 261) which is decimal 177 for all encodings EXCEPT STD. The only way you can get a different character is if the /Encoding in the PDF is...
alfredreibenschuh
alfredreiben...
Offline Send Email
Jun 2, 2006
1:10 pm
2886
... The corefont example script rendered everything correctly leading me to further investigation yielding this: use PDF::API2; my $pdf = PDF::API2->new; my...
ribasushi
Offline Send Email
Jun 2, 2006
7:16 pm
2887
... a correct latin1 string. ... a incorrect utf8 string. the string receives the utf8 flag (from pack) but the apostrophes get improperly decomposed into...
Alfred Reibenschuh
alfredreiben...
Offline Send Email
Jun 5, 2006
3:24 pm
2888
... I don't think the problem is that the string is improperly encoded. The problem is that it is a unicode string at all. encByUni is improperly mapping \x27...
Ken Hirsch
kenahirsch
Offline Send Email
Jun 6, 2006
6:26 pm
2889
I have encountered a number of PDF books which have blank pages, usually inserted so that chapters begin on a right-hand page. PDF::API2's (v 0.51)...
Alan Fry
millgatebarn
Offline Send Email
Jun 7, 2006
5:11 pm
2890
... This comment from Alfred got me thinking for a second that I indeed can not concatenate Unicode with non-Unicode. Glad that Ken pointed out that "I have...
ribasushi
Offline Send Email
Jun 8, 2006
12:44 pm
2891
... I don't see that. In your particular case the default encoding contains 39 => quoteright 169 => quotesingle u2c includes the inverse mapping of this, from...
Ken Hirsch
kenahirsch
Offline Send Email
Jun 9, 2006
4:56 pm
2892
hi! ... seams like we hit a bug here. i've commited a fix to the SF cvs. if this is properly tested, i'll create a release for cpan. -- fredo...
alfredreibenschuh
alfredreiben...
Offline Send Email
Jun 14, 2006
9:26 pm
2893
I've just run some PDF::API2 code that was developed on 0.3r77 and noticed that the paragraph method no longer returns witdth of the text on the last line or a...
lleegeeuk
Offline Send Email
Jun 21, 2006
9:57 am
2894
Hi, Does anyone know of a way to view PDFs in Perl/Tk? I tried searching the modules for PDF::API2 and Tk but no luck. -- __END__ Just my 0.00000002 million...
Mr. Shawn H. Corey
shwncorey
Offline Send Email
Jun 23, 2006
1:56 pm
2895
Is it possible to insert raw pdf coding - such as the command to begin italic text - into the PDF::API2 stream?...
lleegeeuk
Offline Send Email
Jul 21, 2006
7:34 am
Messages 2866 - 2895 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