PDF verschlüsseln

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

  • PDF verschlüsseln

    hallo,

    ich habe eine Frage..und zwar...
    ich will versuchen mit einem PHP Script ein bereits erstelltes PDF File mit einem Kennwort zu schützen.
    Weißt wer wie das funkt bzw. hat wer Lösungsvorschläge????

    Danke.lg.tom

  • #2
    du kannst ja mal nach der klasse html_topdf schauen, die hat irgend eine art pdf-passwort schutz.

    kenne sonst nichts eingebautes...

    Kommentar


    • #3
      ist nix freies... aber genau das, was du suchst: http://www.setasign.de/SetaPDF/demos/sample/

      Gruss
      Jan
      www.traum-projekt.com

      Kommentar


      • #4
        hi,
        dachte das geht frei!
        danke für die Antworten habe mir aber inzwischen den pdfmailer gekauft.
        mit dem kann man PDF erstellen und auch verschlüssel etc.

        Kommentar


        • #5
          besser spät statt nie

          Kann man das über:

          require_once('fpdi/FPDI_Protection.php');

          $pdf =& new FPDI_Protection();
          // set the format of the destinaton file, in our case 6×9 inch
          $pdf->FPDF('P', 'in', array('6','9'));

          //calculate the number of pages from the original document
          $pagecount = $pdf->setSourceFile($origFile);

          // copy all pages from the old unprotected pdf in the new one
          for ($loop = 1; $loop <= $pagecount; $loop++) {
          $tplidx = $pdf->importPage($loop);
          $pdf->addPage();
          $pdf->useTemplate($tplidx);
          }

          // protect the new pdf file, and allow no printing, copy etc and leave only reading allowed
          $pdf->SetProtection(array(),$password);
          $pdf->Output($destFile, 'F');

          lösen ???
          fotos :

          http://www.flickr.com/photos/rassloff/collections/

          Kommentar


          • #6
            Wohl 12 Jahre zu spät. Wobei dein Code wohl auch so alt sein dürfte (PHP 4 Code).

            Kommentar


            • #7
              man wird nicht jünger !

              Aber was genau / wo genau ist PHP4 ???
              fotos :

              http://www.flickr.com/photos/rassloff/collections/

              Kommentar


              • #8
                Zitat von rossixx Beitrag anzeigen
                Aber was genau / wo genau ist PHP4 ???
                Das "&" hier sieht nach PHP 4 Syntax aus, denn bei PHP 5 müssen/sollten Objekte nicht per Referenz übergeben werden:

                PHP-Code:
                $pdf =& new FPDI_Protection(); 
                Und bei PHP 7 kommt sogar ein Parse Error.
                Zuletzt geändert von h3ll; 19.09.2017, 20:37.

                Kommentar


                • #9
                  Ja. Das & muß raus, und die "" müssen getauscht werden. Aber dann gehts.
                  fotos :

                  http://www.flickr.com/photos/rassloff/collections/

                  Kommentar

                  Lädt...
                  X