Probleme mit PDFlib und PDF_scale

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Probleme mit PDFlib und PDF_scale

    Hallo zusammen!

    Ich versuche verzweifelt den Befehl PDF_scale zu verwenden. Bekomme aber nur Fehlermeldungen. Kann mir jemand behilflich sein?

    Danke und Gruß Frank

    <?php
    # $Id: hello.php,v 1.3.2.2 2002/01/22 19:48:48 tm Exp $

    pdf_scale($p, 72.0, 72.0);
    $p = PDF_new();
    PDF_open_file($p, "");

    PDF_set_info($p, "Creator", "hello.php");
    PDF_set_info($p, "Author", "Rainer Schaaf");
    PDF_set_info($p, "Title", "Hello world (PHP)");

    PDF_begin_page($p, 595, 842);

    # Change "host" encoding to "winansi" or whatever you need!
    $font = PDF_findfont($p, "MyriadPro-It", "host", 1);
    PDF_setfont($p, $font, 18.0);

    PDF_set_text_pos($p, 50, 700);
    PDF_show($p, "Hello world!");
    PDF_continue_text($p, "(says PHP)");

    PDF_end_page($p);
    PDF_close($p);

    $buf = PDF_get_buffer($p);
    $len = strlen($buf);

    header("Content-type: application/pdf");
    header("Content-Length: $len");
    header("Content-Disposition: inline; filename=hello.pdf");
    print $buf;

    PDF_delete($p);
    ?>

  • #2
    fehlermeldung? ... ich seh keine ?!

    EDIT:
    vielleicht setzt du pdf_scale() mal ein NACHDEM du $p initialisiert hast?
    Kissolino.com

    Kommentar


    • #3
      Fehlermeldung:

      Fatal error: PDFlib error: function 'PDF_scale' must not be called in 'object' scope in C:\Apache2\htdocs\mtn_ppIf3IeZY8BU\hello.php on line 6

      Gruß Frank

      <?php
      # $Id: hello.php,v 1.3.2.2 2002/01/22 19:48:48 tm Exp $


      $p = PDF_new();
      pdf_scale($p, 72.0, 72.0);
      PDF_open_file($p, "");

      PDF_set_info($p, "Creator", "hello.php");
      PDF_set_info($p, "Author", "Rainer Schaaf");
      PDF_set_info($p, "Title", "Hello world (PHP)");

      PDF_begin_page($p, 595, 842);

      # Change "host" encoding to "winansi" or whatever you need!
      $font = PDF_findfont($p, "MyriadPro-It", "host", 1);
      PDF_setfont($p, $font, 18.0);

      PDF_set_text_pos($p, 50, 700);
      PDF_show($p, "Hello world!");
      PDF_continue_text($p, "(says PHP)");

      PDF_end_page($p);
      PDF_close($p);

      $buf = PDF_get_buffer($p);
      $len = strlen($buf);

      header("Content-type: application/pdf");
      header("Content-Length: $len");
      header("Content-Disposition: inline; filename=hello.pdf");
      print $buf;

      PDF_delete($p);
      ?>

      Kommentar


      • #4
        hmm, hab noch nix mit pdf gemacht (nur gerade mal try&error) ...
        wenn das pdf_scale() nach pdf_set_font() erscheint, läufts auch
        ohne fehlermeldung ... stellt sich nur die frage wozu du das brauchst.
        Kissolino.com

        Kommentar

        Lädt...
        X