... Hi Fredo, I asked that because I'll probably face the need to create tables with API2, so I may be able to help to write the function. I've already done ...
Dani Pardo
dani@...
Aug 2, 2004 1:30 pm
2257
Hi, I have already seen this question, but with still no clear answer. How do I put multiple fonts in a fully justified paragraph? Regards. Remi....
... Not real easy. I'm in the middle of creating a styled paragraph toolkit so here's the process I follow: Separate the paragraph into words (this isn't the...
Hi, I came up with a similar problem a while ago. I need to write text in color= \All. Somebody suggested using cmyk all set to 100-an approach I thought...
O.k. just to show I did my homework: I lurked into: http://search.cpan.org/src/AREIBENS/PDF-API2-0.40_55/examples/ This makes me quite excited since color \all...
I'm writing a PDF::API2 tutorial for PerlMonks and have written a script to create a PDF. The tutorial will consist of an exegesis of the script. That will...
The attached patch fixes a problem I have with advancewidth. I might or might not be the only person with this problem. Here's the problem: The advancewidth...
Sorry for the misleading subject on the previous message! I just realized I missed a few things: - There are a few other places that we split on spaces and...
Hi, it seems like I did it... though this was a tough one and sparse documentation from Adobe's side made it even harder... keep your fingers crossed while I'm...
Hi, is it possible that in 0.40_55 randomly the advancewidth function is not working properly? When using on the same file with same values several times...
... The patch is for 0.3rX, however the concept should also be applied to 0.40_X. I use PDF::API2 in a production environment and am avoiding the overhead of...
Running you script with PDF::API2 (version 0.3r77 BTW) gets 'undefined subroutine line 59 &main::get_paragraph_1'. Any suggestions? FWIW this is a newly...
Hi, here comes code that brings api V 0.40_55 down with the described error message (can't call val on undefined value in ..) The dilemma: I need 0.40_55 for...
... Yeah, I stuffed up. Replace the call to get_paragraph_1() with $paragraph1 and then the same for get_paragraph_2() becomes $paragraph2 ... Developed and...
... Got it. I should have been able to work this one out for myself, but I was convinced I must have got something screwed up in the installation. With the...
hi! ... a simple: $csall = $pdf->colorspace_separation('All','#000'); $csnone = $pdf->colorspace_separation('None','#000'); should do the trick. cheers, -- __...
Hi, thanks. Yes, I found out about this myself already... Have you had time o check my can't call val on an undefined value in resource.pm line 100 - problem? ...
... Is that a personal preference or a PDFism? The reason I ask is that if I put everything into one $gfx object then it's all a single object in Acrobat. No...
hi! ... sorry but: $cs = $pdf->colorspace_separation('All','All'); is wrong, since the second parameter MUST BE a valid color. so the following code should do...
Hello Rick, Back in February 2004 you said: RM> 1. The parser is written. I can now take marked up text and turn it RM> into a data structure that will give me...
hi! ... first of all it is a waste of space, since this renders page-compression useless (ie. counter-productive) and even increases the pdf-size ! it seams to...
Thanks, I'm kind of glad to hear that ultimately it is not an error in my script.... I already have 5000+ lines ... Hope to have the patch in hand soon (do not...
HI, one more thing: Cpan seems to be unreachable for a couple of hours now... In case you have the new version ready could you please send me an alernat. link...
Hi, I having problems getting PDF to understand Perl's utf8 encodings. I am creating a PDF from an XML document using XML::Parser. All the strings it returns...
Hi, you might want to take a look at the following example: http://search.cpan.org/src/AREIBENS/PDF-API2-0.3a4/examples/02_cfonts-w-encoding-pl Here fredo...