well I got as far as creating a pdf and then opening and writing text, i need to write the text on the first page of the opened file but every time i try it apends it to another page.
use PDF::API2; use DBI; use strict; use constant mm => 25.4/72; use constant in => 1/72; use constant pt => 1; $pdf = PDF::API2->open('Build.pdf'); my %font = ( Helvetica => { Bold => $pdf->corefont('Helvetica-Bold', -encoding => 'la +tin1'), # Roman => $pdf->corefont('Helvetica', -encoding => 'la +tin1'), # Italic => $pdf->corefont('Helvetica-Oblique', -encoding => 'la +tin1'), }, Times => { # Bold => $pdf->corefont('Times-Bold', -encoding => 'la +tin1'), Roman => $pdf->corefont('Times', -encoding => 'la +tin1'), # Italic => $pdf->corefont('Times-Italic', -encoding => 'la +tin1'), }, ); my $page = $pdf->page; my $headline_text = $page->text; $headline_text->font( $font{'Helvetica'}{'Bold'}, 18/pt ); $headline_text->fillcolor( 'white' ); $headline_text->translate( 19/mm, 131/mm ); $headline_text->text_right( 'this is my new stuff' ); $pdf->saveas("Build2.pdf");

In reply to Re^2: PDF::API2 Editing PDf files by ikkon
in thread PDF::API2 Editing PDf files by ikkon

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.