Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default PDF::Create

    Hi NG,

    After creating the FIRST page successfully with text and drawing, I
    have problems to put some text on the second page.
    I can draw lines on the SECOND page using ths function

    $page2->line($x1, $y1, $x2, $y2);

    but as soon as I try to print some text on the SECOND page using the
    function

    $page2->string($f2, $SIZE2, $COL2, 612 - 10 - $LINE2 * $SIZE2,
    "Hannibal");

    the text is printed on the FIRST page.

    As the dokumentation of the module PDF::Create is very limited, I
    would like to have a look at some examples.
    Does somebody have experience with this module?

    TIA,
    Henning
    kielhd Guest

  2. Similar Questions and Discussions

    1. PDF::Create (or alike) to create watermark for existing pdf file?
      Dear perl-ists: I tried out PDF::Create 0.01 (from cpan), and it is great. kudos, fabian. creates wonderful, clean, small valid pdf output. my...
    2. Cannot create SQL DSN
      I have a Win2K box with CF 5.0 and am trying to create a DSN to a new box running SQL 2000 on Win2003 - and it won't. I can make an ODBC connection...
    3. Not able to create a PDF
      I HAVE THE SAME problems as Liz and I have tried all the things suggested above. However, instead of getting to 80% of completing a pdf file Adobe...
    4. help me to create this!
      Can anyone help me in writing a code for moving a ball smoothly in random motion....mail me @ atjn@sify.com regards Thiagu
    5. sco 505 - create windoze exe file that will create a unix disk
      Hi, I wonder if this is possible, I want to put some files on a floppy disk from my SCO unix box, then I want that disk to be converted to a file...
  3. #2

    Default Re: PDF::Create

    [email]kielhd@freenet.de[/email] (kielhd) writes:
    > Hi NG,
    >
    > After creating the FIRST page successfully with text and drawing, I
    > have problems to put some text on the second page.
    > I can draw lines on the SECOND page using ths function
    >
    > $page2->line($x1, $y1, $x2, $y2);
    >
    > but as soon as I try to print some text on the SECOND page using the
    > function
    >
    > $page2->string($f2, $SIZE2, $COL2, 612 - 10 - $LINE2 * $SIZE2,
    > "Hannibal");
    >
    > the text is printed on the FIRST page.
    >
    > As the dokumentation of the module PDF::Create is very limited, I
    > would like to have a look at some examples.
    > Does somebody have experience with this module?
    There's a newer version of PDF::Create on Sourceforge
    ([url]http://www.sourceforge.net/projects/perl-pdf[/url]). Maybe you run into a
    bug which is fixed now.

    Regards,
    Slaven

    --
    Slaven Rezic - slaven <at> rezic <dot> de

    Berlin Perl Mongers - [url]http://berlin.pm.org[/url]
    Slaven Rezic Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139