example_016.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?php
  2. //============================================================+
  3. // File name : example_016.php
  4. // Begin : 2008-03-04
  5. // Last Update : 2010-10-19
  6. //
  7. // Description : Example 016 for TCPDF class
  8. // Document Encryption / Security
  9. //
  10. // Author: Nicola Asuni
  11. //
  12. // (c) Copyright:
  13. // Nicola Asuni
  14. // Tecnick.com s.r.l.
  15. // Via Della Pace, 11
  16. // 09044 Quartucciu (CA)
  17. // ITALY
  18. // www.tecnick.com
  19. // info@tecnick.com
  20. //============================================================+
  21. /**
  22. * Creates an example PDF TEST document using TCPDF
  23. * @package com.tecnick.tcpdf
  24. * @abstract TCPDF - Example: Document Encryption / Security
  25. * @author Nicola Asuni
  26. * @since 2008-03-04
  27. */
  28. require_once('../config/lang/eng.php');
  29. require_once('../tcpdf.php');
  30. // create new PDF document
  31. $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
  32. // *** Set PDF protection (encryption) *********************
  33. /*
  34. The permission array is composed of values taken from the following ones (specify the ones you want to block):
  35. - print : Print the document;
  36. - modify : Modify the contents of the document by operations other than those controlled by 'fill-forms', 'extract' and 'assemble';
  37. - copy : Copy or otherwise extract text and graphics from the document;
  38. - annot-forms : Add or modify text annotations, fill in interactive form fields, and, if 'modify' is also set, create or modify interactive form fields (including signature fields);
  39. - fill-forms : Fill in existing interactive form fields (including signature fields), even if 'annot-forms' is not specified;
  40. - extract : Extract text and graphics (in support of accessibility to users with disabilities or for other purposes);
  41. - assemble : Assemble the document (insert, rotate, or delete pages and create bookmarks or thumbnail images), even if 'modify' is not set;
  42. - print-high : Print the document to a representation from which a faithful digital copy of the PDF content could be generated. When this is not set, printing is limited to a low-level representation of the appearance, possibly of degraded quality.
  43. - owner : (inverted logic - only for public-key) when set permits change of encryption and enables all other permissions.
  44. If you don't set any password, the document will open as usual.
  45. If you set a user password, the PDF viewer will ask for it before displaying the document.
  46. The master (owner) password, if different from the user one, can be used to get full document access.
  47. Possible encryption modes are:
  48. 0 = RSA 40 bit
  49. 1 = RSA 128 bit
  50. 2 = AES 128 bit
  51. 3 = AES 256 bit
  52. NOTES:
  53. - To create self-signed signature: openssl req -x509 -nodes -days 365000 -newkey rsa:1024 -keyout tcpdf.crt -out tcpdf.crt
  54. - To export crt to p12: openssl pkcs12 -export -in tcpdf.crt -out tcpdf.p12
  55. - To convert pfx certificate to pem: openssl pkcs12 -in tcpdf.pfx -out tcpdf.crt -nodes
  56. */
  57. $pdf->SetProtection($permissions=array('print', 'copy'), $user_pass='', $owner_pass=null, $mode=0, $pubkeys=null);
  58. // Example with public-key
  59. // To open the document you need to install the private key (tcpdf.p12) on the Acrobat Reader. The password is: 1234
  60. //$pdf->SetProtection($permissions=array('print', 'copy'), $user_pass='', $owner_pass=null, $mode=1, $pubkeys=array(array('c' => 'file://../tcpdf.crt', 'p' => array('print'))));
  61. // *********************************************************
  62. // set document information
  63. $pdf->SetCreator(PDF_CREATOR);
  64. $pdf->SetAuthor('Nicola Asuni');
  65. $pdf->SetTitle('TCPDF Example 016');
  66. $pdf->SetSubject('TCPDF Tutorial');
  67. $pdf->SetKeywords('TCPDF, PDF, example, test, guide');
  68. // set default header data
  69. $pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 016', PDF_HEADER_STRING);
  70. // set header and footer fonts
  71. $pdf->setHeaderFont(Array('helvetica', '', PDF_FONT_SIZE_MAIN));
  72. $pdf->setFooterFont(Array('helvetica', '', PDF_FONT_SIZE_DATA));
  73. // set default monospaced font
  74. $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
  75. //set margins
  76. $pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
  77. $pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
  78. $pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
  79. //set auto page breaks
  80. $pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
  81. //set image scale factor
  82. $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
  83. //set some language-dependent strings
  84. $pdf->setLanguageArray($l);
  85. // ---------------------------------------------------------
  86. // set font
  87. $pdf->SetFont('times', '', 16);
  88. // add a page
  89. $pdf->AddPage();
  90. // set some text to print
  91. $txt = <<<EOD
  92. Encryption Example
  93. Consult the source code documentation for the SetProtection() method.
  94. EOD;
  95. // print a block of text using Write()
  96. $pdf->Write(0, $txt, '', 0, 'L', true, 0, false, false, 0);
  97. // ---------------------------------------------------------
  98. //Close and output PDF document
  99. $pdf->Output('example_016.pdf', 'I');
  100. //============================================================+
  101. // END OF FILE
  102. //============================================================+