diff --git a/admin/fachprojektscheine/anschreiben/blanko_ludwigsburg.pdf b/admin/fachprojektscheine/anschreiben/blanko_ludwigsburg.pdf index 447a432..a3a3df3 100755 Binary files a/admin/fachprojektscheine/anschreiben/blanko_ludwigsburg.pdf and b/admin/fachprojektscheine/anschreiben/blanko_ludwigsburg.pdf differ diff --git a/admin/fachprojektscheine/blanko_ludwigsburg_2023.pdf b/admin/fachprojektscheine/blanko_ludwigsburg_2023.pdf index da124bd..c8c553a 100644 Binary files a/admin/fachprojektscheine/blanko_ludwigsburg_2023.pdf and b/admin/fachprojektscheine/blanko_ludwigsburg_2023.pdf differ diff --git a/admin/fachprojektscheine/prints/FAQ.htm b/admin/fachprojektscheine/prints/FAQ.htm index 60a75aa..28838e0 100755 --- a/admin/fachprojektscheine/prints/FAQ.htm +++ b/admin/fachprojektscheine/prints/FAQ.htm @@ -194,7 +194,7 @@ Header('Pragma: public');

7. When I execute a script I get the message "FPDF error: Don't alter the locale before including class file".

When the decimal separator is configured as a comma before including a file, there is a -bug in some PHP versions and decimal +bug in some PHP versions and decimal numbers get truncated. Therefore you shouldn't make a call to setlocale() before including the class. On Unix, you shouldn't set the LC_ALL environment variable neither, for it is equivalent to a setlocale() call. @@ -270,20 +270,20 @@ Remark: even when the browser goes in time-out, the script may continue to run o

17. Can I modify a PDF with FPDF?

You can import an existing PDF document thanks to the FPDI extension:

-https://fpdi.setasign.de +http://fpdi.setasign.de

18. I'd like to make a search engine in PHP and index PDF files. Can I do it with FPDF?

No. But a GPL C utility does exist, pdftotext, which is able to extract the textual content from a PDF. It is provided with the Xpdf package:

-https://www.foolabs.com/xpdf/ +http://www.foolabs.com/xpdf/

19. Can I convert an HTML page to PDF with FPDF?

Not real pages. But a GPL C utility does exist, htmldoc, which allows to do it and gives good results:

-https://www.easysw.com/htmldoc/ +http://www.easysw.com/htmldoc/

20. Can I concatenate PDF files with FPDF?

No. But some free tools exist to perform this task:

-https://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
-https://www.accesspdf.com/pdftk/ +http://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
+http://www.accesspdf.com/pdftk/ diff --git a/admin/fachprojektscheine/prints/LICENSE b/admin/fachprojektscheine/prints/LICENSE index 62589ed..d645695 100755 --- a/admin/fachprojektscheine/prints/LICENSE +++ b/admin/fachprojektscheine/prints/LICENSE @@ -1,7 +1,7 @@ Apache License Version 2.0, January 2004 - https://www.apache.org/licenses/ + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -193,7 +193,7 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at - https://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/fachprojektscheine/prints/NOTICE b/admin/fachprojektscheine/prints/NOTICE index 5d026f0..29ec933 100755 --- a/admin/fachprojektscheine/prints/NOTICE +++ b/admin/fachprojektscheine/prints/NOTICE @@ -3,7 +3,7 @@ php|architect by Marco Tabini. This software contains code derived from Oliver Plathey - The author of - FPDF. FPDF is available from: https://www.fpdf.org + FPDF. FPDF is available from: http://www.fpdf.org The LZW- and the ASCII85-Decoder are adapted from the iText-Library - https://www.lowagie.com/iText/ \ No newline at end of file + http://www.lowagie.com/iText/ \ No newline at end of file diff --git a/admin/fachprojektscheine/prints/decoders/ascii85.php b/admin/fachprojektscheine/prints/decoders/ascii85.php index b7548ee..f7580ba 100755 --- a/admin/fachprojektscheine/prints/decoders/ascii85.php +++ b/admin/fachprojektscheine/prints/decoders/ascii85.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/fachprojektscheine/prints/decoders/lzw.php b/admin/fachprojektscheine/prints/decoders/lzw.php index 06fcd4f..bb79063 100755 --- a/admin/fachprojektscheine/prints/decoders/lzw.php +++ b/admin/fachprojektscheine/prints/decoders/lzw.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/fachprojektscheine/prints/doc/image.htm b/admin/fachprojektscheine/prints/doc/image.htm index 9e84089..53a4ec1 100755 --- a/admin/fachprojektscheine/prints/doc/image.htm +++ b/admin/fachprojektscheine/prints/doc/image.htm @@ -89,7 +89,7 @@ URL or identifier returned by AddLink().
// Insert a logo in the top-left corner at 300 dpi
 $pdf->Image('logo.png',10,10,-300);
 // Insert a dynamic image from a URL
-$pdf->Image('https://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World',60,30,90,0,'PNG');
+$pdf->Image('http://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World',60,30,90,0,'PNG');

See also

AddLink diff --git a/admin/fachprojektscheine/prints/doc/write.htm b/admin/fachprojektscheine/prints/doc/write.htm index 86083ed..bd85401 100755 --- a/admin/fachprojektscheine/prints/doc/write.htm +++ b/admin/fachprojektscheine/prints/doc/write.htm @@ -37,7 +37,7 @@ $pdf->Write(5,'Visit '); // Then put a blue underlined link $pdf->SetTextColor(0,0,255); $pdf->SetFont('','U'); -$pdf->Write(5,'www.fpdf.org','https://www.fpdf.org'); +$pdf->Write(5,'www.fpdf.org','http://www.fpdf.org');

See also

SetFont, diff --git a/admin/fachprojektscheine/prints/filters/FilterASCII85.php b/admin/fachprojektscheine/prints/filters/FilterASCII85.php index 694cf18..b7e8966 100755 --- a/admin/fachprojektscheine/prints/filters/FilterASCII85.php +++ b/admin/fachprojektscheine/prints/filters/FilterASCII85.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/admin/fachprojektscheine/prints/filters/FilterASCIIHexDecode.php b/admin/fachprojektscheine/prints/filters/FilterASCIIHexDecode.php index 9cd7890..66ddae4 100755 --- a/admin/fachprojektscheine/prints/filters/FilterASCIIHexDecode.php +++ b/admin/fachprojektscheine/prints/filters/FilterASCIIHexDecode.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/admin/fachprojektscheine/prints/filters/FilterLZW.php b/admin/fachprojektscheine/prints/filters/FilterLZW.php index 3efe983..f855d22 100755 --- a/admin/fachprojektscheine/prints/filters/FilterLZW.php +++ b/admin/fachprojektscheine/prints/filters/FilterLZW.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/admin/fachprojektscheine/prints/fpdf_tpl.php b/admin/fachprojektscheine/prints/fpdf_tpl.php index cff3161..de746dd 100755 --- a/admin/fachprojektscheine/prints/fpdf_tpl.php +++ b/admin/fachprojektscheine/prints/fpdf_tpl.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ @@ -293,8 +293,8 @@ class FPDF_TPL extends fpdi_bridge * * See FPDF/TCPDF documentation. * - * @see https://fpdf.org/en/doc/setfont.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#afd56e360c43553830d543323e81bc045 + * @see http://fpdf.org/en/doc/setfont.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#afd56e360c43553830d543323e81bc045 */ public function SetFont($family, $style = '', $size = null, $fontfile = '', $subset = 'default', $out = true) { @@ -319,8 +319,8 @@ class FPDF_TPL extends fpdi_bridge * * See FPDF/TCPDF documentation. * - * @see https://fpdf.org/en/doc/image.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#a714c2bee7d6b39d4d6d304540c761352 + * @see http://fpdf.org/en/doc/image.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#a714c2bee7d6b39d4d6d304540c761352 */ public function Image( $file, $x = '', $y = '', $w = 0, $h = 0, $type = '', $link = '', $align = '', $resize = false, @@ -350,8 +350,8 @@ class FPDF_TPL extends fpdi_bridge * * This method cannot be used if you'd started a template. * - * @see https://fpdf.org/en/doc/addpage.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#a5171e20b366b74523709d84c349c1ced + * @see http://fpdf.org/en/doc/addpage.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#a5171e20b366b74523709d84c349c1ced */ public function AddPage($orientation = '', $format = '', $rotationOrKeepmargins = false, $tocpage = false) { @@ -372,8 +372,8 @@ class FPDF_TPL extends fpdi_bridge * * Overwritten because adding links in a template will not work. * - * @see https://fpdf.org/en/doc/link.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#ab87bf1826384fbfe30eb499d42f1d994 + * @see http://fpdf.org/en/doc/link.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#ab87bf1826384fbfe30eb499d42f1d994 */ public function Link($x, $y, $w, $h, $link, $spaces = 0) { @@ -394,8 +394,8 @@ class FPDF_TPL extends fpdi_bridge * * Overwritten because adding links in a template will not work. * - * @see https://fpdf.org/en/doc/addlink.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#a749522038ed7786c3e1701435dcb891e + * @see http://fpdf.org/en/doc/addlink.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#a749522038ed7786c3e1701435dcb891e */ public function AddLink() { @@ -416,8 +416,8 @@ class FPDF_TPL extends fpdi_bridge * * Overwritten because adding links in a template will not work. * - * @see https://fpdf.org/en/doc/setlink.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#ace5be60e7857953ea5e2b89cb90df0ae + * @see http://fpdf.org/en/doc/setlink.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#ace5be60e7857953ea5e2b89cb90df0ae */ public function SetLink($link, $y = 0, $page = -1) { diff --git a/admin/fachprojektscheine/prints/fpdi.php b/admin/fachprojektscheine/prints/fpdi.php index 389a03a..8ecc661 100755 --- a/admin/fachprojektscheine/prints/fpdi.php +++ b/admin/fachprojektscheine/prints/fpdi.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/admin/fachprojektscheine/prints/fpdi_bridge.php b/admin/fachprojektscheine/prints/fpdi_bridge.php index de15bdc..92c7c16 100755 --- a/admin/fachprojektscheine/prints/fpdi_bridge.php +++ b/admin/fachprojektscheine/prints/fpdi_bridge.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/admin/fachprojektscheine/prints/fpdi_pdf_parser.php b/admin/fachprojektscheine/prints/fpdi_pdf_parser.php index aeeef4e..9e6d521 100755 --- a/admin/fachprojektscheine/prints/fpdi_pdf_parser.php +++ b/admin/fachprojektscheine/prints/fpdi_pdf_parser.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/admin/fachprojektscheine/prints/pdf_context.php b/admin/fachprojektscheine/prints/pdf_context.php index 6870bf9..474aa72 100755 --- a/admin/fachprojektscheine/prints/pdf_context.php +++ b/admin/fachprojektscheine/prints/pdf_context.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/admin/fachprojektscheine/prints/pdf_parser.php b/admin/fachprojektscheine/prints/pdf_parser.php index 75c4436..490b135 100755 --- a/admin/fachprojektscheine/prints/pdf_parser.php +++ b/admin/fachprojektscheine/prints/pdf_parser.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/admin/fachprojektscheine/prints/praxisstellen.pdf b/admin/fachprojektscheine/prints/praxisstellen.pdf index f3f827d..8fd0167 100755 Binary files a/admin/fachprojektscheine/prints/praxisstellen.pdf and b/admin/fachprojektscheine/prints/praxisstellen.pdf differ diff --git a/admin/fachprojektscheine/prints/wrapper_functions.php b/admin/fachprojektscheine/prints/wrapper_functions.php index c4d6a91..bfef3f8 100755 --- a/admin/fachprojektscheine/prints/wrapper_functions.php +++ b/admin/fachprojektscheine/prints/wrapper_functions.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/fachprojektscheine/prints/zustimmung.pdf b/admin/fachprojektscheine/prints/zustimmung.pdf index 6c57a71..e5641ee 100755 Binary files a/admin/fachprojektscheine/prints/zustimmung.pdf and b/admin/fachprojektscheine/prints/zustimmung.pdf differ diff --git a/admin/fpdf/FAQ.htm b/admin/fpdf/FAQ.htm index 998d6dd..11d1ce8 100755 --- a/admin/fpdf/FAQ.htm +++ b/admin/fpdf/FAQ.htm @@ -194,7 +194,7 @@ Header('Pragma: public');

7. When I execute a script I get the message "FPDF error: Don't alter the locale before including class file".

When the decimal separator is configured as a comma before including a file, there is a -bug in some PHP versions and decimal +bug in some PHP versions and decimal numbers get truncated. Therefore you shouldn't make a call to setlocale() before including the class. On Unix, you shouldn't set the LC_ALL environment variable neither, for it is equivalent to a setlocale() call. @@ -270,20 +270,20 @@ Remark: even when the browser goes in time-out, the script may continue to run o

17. Can I modify a PDF with FPDF?

You can import an existing PDF document thanks to the FPDI extension:

-https://fpdi.setasign.de +http://fpdi.setasign.de

18. I'd like to make a search engine in PHP and index PDF files. Can I do it with FPDF?

No. But a GPL C utility does exist, pdftotext, which is able to extract the textual content from a PDF. It is provided with the Xpdf package:

-https://www.foolabs.com/xpdf/ +http://www.foolabs.com/xpdf/

19. Can I convert an HTML page to PDF with FPDF?

Not real pages. But a GPL C utility does exist, htmldoc, which allows to do it and gives good results:

-https://www.easysw.com/htmldoc/ +http://www.easysw.com/htmldoc/

20. Can I concatenate PDF files with FPDF?

No. But some free tools exist to perform this task:

-https://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
-https://www.accesspdf.com/pdftk/ +http://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
+http://www.accesspdf.com/pdftk/ diff --git a/admin/fpdf/doc/write.htm b/admin/fpdf/doc/write.htm index a162514..3a50217 100755 --- a/admin/fpdf/doc/write.htm +++ b/admin/fpdf/doc/write.htm @@ -38,7 +38,7 @@ $pdf->Write(5,'Visit ');
//Then put a blue underlined link
$pdf->SetTextColor(0,0,255);
$pdf->SetFont('','U');
-$pdf->Write(5,'www.fpdf.org','https://www.fpdf.org'); +$pdf->Write(5,'www.fpdf.org','http://www.fpdf.org');

See also

diff --git a/admin/fpdf/fpdf.php b/admin/fpdf/fpdf.php index 8d07a2d..4cacad5 100755 --- a/admin/fpdf/fpdf.php +++ b/admin/fpdf/fpdf.php @@ -2209,7 +2209,7 @@ function _parsepng($file) function _parsegif($file) //EDITEI - GIF support is now included { //Function by Jérôme Fenal - require_once(RELATIVE_PATH.'gif.php'); //GIF class in pure PHP from Yamasoft (https://www.yamasoft.com/php-gif.zip) + require_once(RELATIVE_PATH.'gif.php'); //GIF class in pure PHP from Yamasoft (http://www.yamasoft.com/php-gif.zip) $h=0; $w=0; diff --git a/admin/fpdf/fpdf_protection.php b/admin/fpdf/fpdf_protection.php index 5769ea1..1df74c4 100755 --- a/admin/fpdf/fpdf_protection.php +++ b/admin/fpdf/fpdf_protection.php @@ -9,7 +9,7 @@ * You may use and modify this software as you wish as stated in original * * FPDF package. * * * -* Thanks: Cpdf (https://www.ros.co.nz/pdf) was my working sample of how to * +* Thanks: Cpdf (http://www.ros.co.nz/pdf) was my working sample of how to * * implement protection in pdf. * ****************************************************************************/ diff --git a/admin/fpdf/html2fpdf.php b/admin/fpdf/html2fpdf.php index f30dc47..9ea5c6c 100755 --- a/admin/fpdf/html2fpdf.php +++ b/admin/fpdf/html2fpdf.php @@ -23,7 +23,7 @@ These 2 attributes do the same thing?!?: TODO (in the future...): - Make font-family, font-size, lineheight customizable - Increase number of HTML/CSS tags/properties, Image/Font Types, recognized/supported -- allow BMP support? (tried with https://phpthumb.sourceforge.net/ but failed) +- allow BMP support? (tried with http://phpthumb.sourceforge.net/ but failed) - Improve CSS support - support image side-by-side or one-below-another or both? - Improve code clarity even more (modularize and get better var names like on textbuffer array's indexes for example) @@ -231,7 +231,7 @@ function HTML2FPDF($orientation='P',$unit='mm',$format='A4') function setBasePath($str) { -//! @desc Inform the script where the html file is (full path - e.g. https://www.google.com/dir1/dir2/dir3/file.html ) in order to adjust HREF and SRC links. No-Parameter: The directory where this script is. +//! @desc Inform the script where the html file is (full path - e.g. http://www.google.com/dir1/dir2/dir3/file.html ) in order to adjust HREF and SRC links. No-Parameter: The directory where this script is. //! @return void $this->basepath = dirname($str) . "/"; $this->basepath = str_replace("\\","/",$this->basepath); //If on Windows @@ -675,7 +675,7 @@ function OpenTag($tag,$attr) case 'H4': // 1 * fontsize case 'H5': // 0.83 * fontsize case 'H6': // 0.67 * fontsize - //Values obtained from: https://www.w3.org/TR/REC-CSS2/sample.html + //Values obtained from: http://www.w3.org/TR/REC-CSS2/sample.html if(isset($attr['ALIGN'])) $this->divalign = $align[strtolower($attr['ALIGN'])]; $this->buffer_on = true; if ($this->x != $this->lMargin) $this->Ln(2*$this->lineheight); @@ -2162,7 +2162,7 @@ function ReadMetaTags($html) } } //Comercial do Aplicativo usado (no caso um script): - $this->SetCreator("HTML2FPDF >> https://html2fpdf.sf.net"); + $this->SetCreator("HTML2FPDF >> http://html2fpdf.sf.net"); } ////////////////// @@ -2359,7 +2359,7 @@ function setCSS($arrayaux) $v = strtoupper($v); switch($v) { - //Values obtained from https://www.w3schools.com/html/html_reference.asp + //Values obtained from http://www.w3schools.com/html/html_reference.asp case 'XX-SMALL': $this->SetFontSize( (0.7)* 11); break; case 'X-SMALL': $this->SetFontSize( (0.77) * 11); @@ -2631,7 +2631,7 @@ function _tableWidth(&$table){ { if (!count($list)) {//Khong co cot nao co kich thuoc auto => chia deu phan du cho tat ca - //https://www.ksvn.com/anhviet_new.htm - translating comments... + //http://www.ksvn.com/anhviet_new.htm - translating comments... //bent shrink essence move size measure automatic => divide against give as a whole //$wi = $table['w'] - $wis; $wi = ($table['w'] - $wis)/$numcols; diff --git a/admin/fpdf/htmltoolkit.php b/admin/fpdf/htmltoolkit.php index 786a31f..9a5d897 100755 --- a/admin/fpdf/htmltoolkit.php +++ b/admin/fpdf/htmltoolkit.php @@ -11,7 +11,7 @@ function ConvertColor($color="#000000"){ //static $common_colors = array('black'=>'#000000','silver'=>'#C0C0C0','gray'=>'#808080', 'white'=>'#FFFFFF','maroon'=>'#800000','red'=>'#FF0000','purple'=>'#800080','fuchsia'=>'#FF00FF','green'=>'#008000','lime'=>'#00FF00','olive'=>'#808000','yellow'=>'#FFFF00','navy'=>'#000080', 'blue'=>'#0000FF','teal'=>'#008080','aqua'=>'#00FFFF'); //All color names array static $common_colors = array('antiquewhite'=>'#FAEBD7','aquamarine'=>'#7FFFD4','beige'=>'#F5F5DC','black'=>'#000000','blue'=>'#0000FF','brown'=>'#A52A2A','cadetblue'=>'#5F9EA0','chocolate'=>'#D2691E','cornflowerblue'=>'#6495ED','crimson'=>'#DC143C','darkblue'=>'#00008B','darkgoldenrod'=>'#B8860B','darkgreen'=>'#006400','darkmagenta'=>'#8B008B','darkorange'=>'#FF8C00','darkred'=>'#8B0000','darkseagreen'=>'#8FBC8F','darkslategray'=>'#2F4F4F','darkviolet'=>'#9400D3','deepskyblue'=>'#00BFFF','dodgerblue'=>'#1E90FF','firebrick'=>'#B22222','forestgreen'=>'#228B22','gainsboro'=>'#DCDCDC','gold'=>'#FFD700','gray'=>'#808080','green'=>'#008000','greenyellow'=>'#ADFF2F','hotpink'=>'#FF69B4','indigo'=>'#4B0082','khaki'=>'#F0E68C','lavenderblush'=>'#FFF0F5','lemonchiffon'=>'#FFFACD','lightcoral'=>'#F08080','lightgoldenrodyellow'=>'#FAFAD2','lightgreen'=>'#90EE90','lightsalmon'=>'#FFA07A','lightskyblue'=>'#87CEFA','lightslategray'=>'#778899','lightyellow'=>'#FFFFE0','limegreen'=>'#32CD32','magenta'=>'#FF00FF','mediumaquamarine'=>'#66CDAA','mediumorchid'=>'#BA55D3','mediumseagreen'=>'#3CB371','mediumspringgreen'=>'#00FA9A','mediumvioletred'=>'#C71585','mintcream'=>'#F5FFFA','moccasin'=>'#FFE4B5','navy'=>'#000080','olive'=>'#808000','orange'=>'#FFA500','orchid'=>'#DA70D6','palegreen'=>'#98FB98','palevioletred'=>'#D87093','peachpuff'=>'#FFDAB9','pink'=>'#FFC0CB','powderblue'=>'#B0E0E6','red'=>'#FF0000','royalblue'=>'#4169E1','salmon'=>'#FA8072','seagreen'=>'#2E8B57','sienna'=>'#A0522D','skyblue'=>'#87CEEB','slategray'=>'#708090','springgreen'=>'#00FF7F','tan'=>'#D2B48C','thistle'=>'#D8BFD8','turquoise'=>'#40E0D0','violetred'=>'#D02090','white'=>'#FFFFFF','yellow'=>'#FFFF00'); - //https://www.w3schools.com/css/css_colornames.asp + //http://www.w3schools.com/css/css_colornames.asp if ( ($color{0} != '#') and ( strstr($color,'(') === false ) ) $color = $common_colors[strtolower($color)]; if ($color{0} == '#') //case of #nnnnnn or #nnn diff --git a/doz/fachprojektscheine/blanko_ludwigsburg.pdf b/doz/fachprojektscheine/blanko_ludwigsburg.pdf index ff909da..4b7463d 100755 Binary files a/doz/fachprojektscheine/blanko_ludwigsburg.pdf and b/doz/fachprojektscheine/blanko_ludwigsburg.pdf differ diff --git a/doz/fachprojektscheine/prints/FAQ.htm b/doz/fachprojektscheine/prints/FAQ.htm index 60a75aa..28838e0 100755 --- a/doz/fachprojektscheine/prints/FAQ.htm +++ b/doz/fachprojektscheine/prints/FAQ.htm @@ -194,7 +194,7 @@ Header('Pragma: public');

7. When I execute a script I get the message "FPDF error: Don't alter the locale before including class file".

When the decimal separator is configured as a comma before including a file, there is a -bug in some PHP versions and decimal +bug in some PHP versions and decimal numbers get truncated. Therefore you shouldn't make a call to setlocale() before including the class. On Unix, you shouldn't set the LC_ALL environment variable neither, for it is equivalent to a setlocale() call. @@ -270,20 +270,20 @@ Remark: even when the browser goes in time-out, the script may continue to run o

17. Can I modify a PDF with FPDF?

You can import an existing PDF document thanks to the FPDI extension:

-https://fpdi.setasign.de +http://fpdi.setasign.de

18. I'd like to make a search engine in PHP and index PDF files. Can I do it with FPDF?

No. But a GPL C utility does exist, pdftotext, which is able to extract the textual content from a PDF. It is provided with the Xpdf package:

-https://www.foolabs.com/xpdf/ +http://www.foolabs.com/xpdf/

19. Can I convert an HTML page to PDF with FPDF?

Not real pages. But a GPL C utility does exist, htmldoc, which allows to do it and gives good results:

-https://www.easysw.com/htmldoc/ +http://www.easysw.com/htmldoc/

20. Can I concatenate PDF files with FPDF?

No. But some free tools exist to perform this task:

-https://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
-https://www.accesspdf.com/pdftk/ +http://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
+http://www.accesspdf.com/pdftk/ diff --git a/doz/fachprojektscheine/prints/LICENSE b/doz/fachprojektscheine/prints/LICENSE index 62589ed..d645695 100755 --- a/doz/fachprojektscheine/prints/LICENSE +++ b/doz/fachprojektscheine/prints/LICENSE @@ -1,7 +1,7 @@ Apache License Version 2.0, January 2004 - https://www.apache.org/licenses/ + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -193,7 +193,7 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at - https://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/doz/fachprojektscheine/prints/NOTICE b/doz/fachprojektscheine/prints/NOTICE index 5d026f0..29ec933 100755 --- a/doz/fachprojektscheine/prints/NOTICE +++ b/doz/fachprojektscheine/prints/NOTICE @@ -3,7 +3,7 @@ php|architect by Marco Tabini. This software contains code derived from Oliver Plathey - The author of - FPDF. FPDF is available from: https://www.fpdf.org + FPDF. FPDF is available from: http://www.fpdf.org The LZW- and the ASCII85-Decoder are adapted from the iText-Library - https://www.lowagie.com/iText/ \ No newline at end of file + http://www.lowagie.com/iText/ \ No newline at end of file diff --git a/doz/fachprojektscheine/prints/decoders/ascii85.php b/doz/fachprojektscheine/prints/decoders/ascii85.php index b7548ee..f7580ba 100755 --- a/doz/fachprojektscheine/prints/decoders/ascii85.php +++ b/doz/fachprojektscheine/prints/decoders/ascii85.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/doz/fachprojektscheine/prints/decoders/lzw.php b/doz/fachprojektscheine/prints/decoders/lzw.php index 06fcd4f..bb79063 100755 --- a/doz/fachprojektscheine/prints/decoders/lzw.php +++ b/doz/fachprojektscheine/prints/decoders/lzw.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/doz/fachprojektscheine/prints/doc/write.htm b/doz/fachprojektscheine/prints/doc/write.htm index 1f0bf3c..2a56d04 100755 --- a/doz/fachprojektscheine/prints/doc/write.htm +++ b/doz/fachprojektscheine/prints/doc/write.htm @@ -38,7 +38,7 @@ $pdf->Write(5,'Visit ');
//Then put a blue underlined link
$pdf->SetTextColor(0,0,255);
$pdf->SetFont('','U');
-$pdf->Write(5,'www.fpdf.org','https://www.fpdf.org'); +$pdf->Write(5,'www.fpdf.org','http://www.fpdf.org');

See also

diff --git a/doz/fachprojektscheine/prints/fpdf_tpl.php b/doz/fachprojektscheine/prints/fpdf_tpl.php index e929d3a..f783e36 100755 --- a/doz/fachprojektscheine/prints/fpdf_tpl.php +++ b/doz/fachprojektscheine/prints/fpdf_tpl.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/doz/fachprojektscheine/prints/fpdi.php b/doz/fachprojektscheine/prints/fpdi.php index 86f8872..f203c6f 100755 --- a/doz/fachprojektscheine/prints/fpdi.php +++ b/doz/fachprojektscheine/prints/fpdi.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/doz/fachprojektscheine/prints/fpdi_pdf_parser.php b/doz/fachprojektscheine/prints/fpdi_pdf_parser.php index 3f923f8..d001677 100755 --- a/doz/fachprojektscheine/prints/fpdi_pdf_parser.php +++ b/doz/fachprojektscheine/prints/fpdi_pdf_parser.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/doz/fachprojektscheine/prints/pdf_context.php b/doz/fachprojektscheine/prints/pdf_context.php index f82834f..9e1a86e 100755 --- a/doz/fachprojektscheine/prints/pdf_context.php +++ b/doz/fachprojektscheine/prints/pdf_context.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/doz/fachprojektscheine/prints/pdf_parser.php b/doz/fachprojektscheine/prints/pdf_parser.php index 34afdcd..b525ffd 100755 --- a/doz/fachprojektscheine/prints/pdf_parser.php +++ b/doz/fachprojektscheine/prints/pdf_parser.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/doz/fachprojektscheine/prints/praxisstellen.pdf b/doz/fachprojektscheine/prints/praxisstellen.pdf index f3f827d..8fd0167 100755 Binary files a/doz/fachprojektscheine/prints/praxisstellen.pdf and b/doz/fachprojektscheine/prints/praxisstellen.pdf differ diff --git a/doz/fachprojektscheine/prints/wrapper_functions.php b/doz/fachprojektscheine/prints/wrapper_functions.php index c4d6a91..bfef3f8 100755 --- a/doz/fachprojektscheine/prints/wrapper_functions.php +++ b/doz/fachprojektscheine/prints/wrapper_functions.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/doz/fachprojektscheine/prints/zustimmung.pdf b/doz/fachprojektscheine/prints/zustimmung.pdf index 6c57a71..e5641ee 100755 Binary files a/doz/fachprojektscheine/prints/zustimmung.pdf and b/doz/fachprojektscheine/prints/zustimmung.pdf differ diff --git a/prints/FAQ.htm b/prints/FAQ.htm index 60a75aa..28838e0 100755 --- a/prints/FAQ.htm +++ b/prints/FAQ.htm @@ -194,7 +194,7 @@ Header('Pragma: public');

7. When I execute a script I get the message "FPDF error: Don't alter the locale before including class file".

When the decimal separator is configured as a comma before including a file, there is a -bug in some PHP versions and decimal +bug in some PHP versions and decimal numbers get truncated. Therefore you shouldn't make a call to setlocale() before including the class. On Unix, you shouldn't set the LC_ALL environment variable neither, for it is equivalent to a setlocale() call. @@ -270,20 +270,20 @@ Remark: even when the browser goes in time-out, the script may continue to run o

17. Can I modify a PDF with FPDF?

You can import an existing PDF document thanks to the FPDI extension:

-https://fpdi.setasign.de +http://fpdi.setasign.de

18. I'd like to make a search engine in PHP and index PDF files. Can I do it with FPDF?

No. But a GPL C utility does exist, pdftotext, which is able to extract the textual content from a PDF. It is provided with the Xpdf package:

-https://www.foolabs.com/xpdf/ +http://www.foolabs.com/xpdf/

19. Can I convert an HTML page to PDF with FPDF?

Not real pages. But a GPL C utility does exist, htmldoc, which allows to do it and gives good results:

-https://www.easysw.com/htmldoc/ +http://www.easysw.com/htmldoc/

20. Can I concatenate PDF files with FPDF?

No. But some free tools exist to perform this task:

-https://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
-https://www.accesspdf.com/pdftk/ +http://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
+http://www.accesspdf.com/pdftk/ diff --git a/prints/LICENSE b/prints/LICENSE index 62589ed..d645695 100755 --- a/prints/LICENSE +++ b/prints/LICENSE @@ -1,7 +1,7 @@ Apache License Version 2.0, January 2004 - https://www.apache.org/licenses/ + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -193,7 +193,7 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at - https://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/prints/NOTICE b/prints/NOTICE index 5d026f0..29ec933 100755 --- a/prints/NOTICE +++ b/prints/NOTICE @@ -3,7 +3,7 @@ php|architect by Marco Tabini. This software contains code derived from Oliver Plathey - The author of - FPDF. FPDF is available from: https://www.fpdf.org + FPDF. FPDF is available from: http://www.fpdf.org The LZW- and the ASCII85-Decoder are adapted from the iText-Library - https://www.lowagie.com/iText/ \ No newline at end of file + http://www.lowagie.com/iText/ \ No newline at end of file diff --git a/prints/credits.txt b/prints/credits.txt index 35150ed..c0e32e0 100755 --- a/prints/credits.txt +++ b/prints/credits.txt @@ -3,21 +3,21 @@ __________ ********* Thanks to: ¯¯¯¯¯¯¯¯¯¯ --Olivier Plathey for the fpdf.php class [https://www.fpdf.org] +-Olivier Plathey for the fpdf.php class [http://www.fpdf.org] -Damon Kohler for the Flowing Block script [mailto:damonkohler@yahoo.com] -Clément Lavoillotte for HTML-oriented FPDF idea --Yamasoft for the gif.php class [https://www.yamasoft.com/] +-Yamasoft for the gif.php class [http://www.yamasoft.com/] -Jérôme Fenal for the _parsegif() function --"VIETCOM" for the PDFTable code [https://www.freepgs.com/vietcom/tool/pdftable/] [mailto:vncommando@yahoo.com] +-"VIETCOM" for the PDFTable code [http://www.freepgs.com/vietcom/tool/pdftable/] [mailto:vncommando@yahoo.com] -Yukihiro O. for the SetDash() function [mailto:yukihiro_o@infoseek.jp] -Ron Korving for the WordWrap() function -Michel Poulain for the DisplayPreferences() function -Patrick Benny for the MultiCellBlt() function idea [no longer in use] -Seb for the _SetTextRendering() and SetTextOutline() functions [mailto:captainseb@wanadoo.fr] -MorphSoft for the colornames list idea --W3SCHOOLS for HTML-related reference info [https://www.w3schools.com/] +-W3SCHOOLS for HTML-related reference info [http://www.w3schools.com/] __________________ Special Thanks to: ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯ ---- Montfort Cultural Association - the site for which I generated this script [https://www.montfort.org.br] +--- Montfort Cultural Association - the site for which I generated this script [http://www.montfort.org.br] diff --git a/prints/decoders/ascii85.php b/prints/decoders/ascii85.php index b7548ee..f7580ba 100755 --- a/prints/decoders/ascii85.php +++ b/prints/decoders/ascii85.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/prints/decoders/lzw.php b/prints/decoders/lzw.php index 06fcd4f..bb79063 100755 --- a/prints/decoders/lzw.php +++ b/prints/decoders/lzw.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/prints/doc/image.htm b/prints/doc/image.htm index 9e84089..53a4ec1 100755 --- a/prints/doc/image.htm +++ b/prints/doc/image.htm @@ -89,7 +89,7 @@ URL or identifier returned by AddLink().
// Insert a logo in the top-left corner at 300 dpi
 $pdf->Image('logo.png',10,10,-300);
 // Insert a dynamic image from a URL
-$pdf->Image('https://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World',60,30,90,0,'PNG');
+$pdf->Image('http://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World',60,30,90,0,'PNG');

See also

AddLink diff --git a/prints/doc/write.htm b/prints/doc/write.htm index 86083ed..bd85401 100755 --- a/prints/doc/write.htm +++ b/prints/doc/write.htm @@ -37,7 +37,7 @@ $pdf->Write(5,'Visit '); // Then put a blue underlined link $pdf->SetTextColor(0,0,255); $pdf->SetFont('','U'); -$pdf->Write(5,'www.fpdf.org','https://www.fpdf.org'); +$pdf->Write(5,'www.fpdf.org','http://www.fpdf.org');

See also

SetFont, diff --git a/prints/filters/FilterASCII85.php b/prints/filters/FilterASCII85.php index 694cf18..b7e8966 100755 --- a/prints/filters/FilterASCII85.php +++ b/prints/filters/FilterASCII85.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints/filters/FilterASCIIHexDecode.php b/prints/filters/FilterASCIIHexDecode.php index 9cd7890..66ddae4 100755 --- a/prints/filters/FilterASCIIHexDecode.php +++ b/prints/filters/FilterASCIIHexDecode.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints/filters/FilterLZW.php b/prints/filters/FilterLZW.php index 3efe983..f855d22 100755 --- a/prints/filters/FilterLZW.php +++ b/prints/filters/FilterLZW.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints/fpdf_tpl.php b/prints/fpdf_tpl.php index cff3161..de746dd 100755 --- a/prints/fpdf_tpl.php +++ b/prints/fpdf_tpl.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ @@ -293,8 +293,8 @@ class FPDF_TPL extends fpdi_bridge * * See FPDF/TCPDF documentation. * - * @see https://fpdf.org/en/doc/setfont.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#afd56e360c43553830d543323e81bc045 + * @see http://fpdf.org/en/doc/setfont.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#afd56e360c43553830d543323e81bc045 */ public function SetFont($family, $style = '', $size = null, $fontfile = '', $subset = 'default', $out = true) { @@ -319,8 +319,8 @@ class FPDF_TPL extends fpdi_bridge * * See FPDF/TCPDF documentation. * - * @see https://fpdf.org/en/doc/image.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#a714c2bee7d6b39d4d6d304540c761352 + * @see http://fpdf.org/en/doc/image.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#a714c2bee7d6b39d4d6d304540c761352 */ public function Image( $file, $x = '', $y = '', $w = 0, $h = 0, $type = '', $link = '', $align = '', $resize = false, @@ -350,8 +350,8 @@ class FPDF_TPL extends fpdi_bridge * * This method cannot be used if you'd started a template. * - * @see https://fpdf.org/en/doc/addpage.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#a5171e20b366b74523709d84c349c1ced + * @see http://fpdf.org/en/doc/addpage.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#a5171e20b366b74523709d84c349c1ced */ public function AddPage($orientation = '', $format = '', $rotationOrKeepmargins = false, $tocpage = false) { @@ -372,8 +372,8 @@ class FPDF_TPL extends fpdi_bridge * * Overwritten because adding links in a template will not work. * - * @see https://fpdf.org/en/doc/link.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#ab87bf1826384fbfe30eb499d42f1d994 + * @see http://fpdf.org/en/doc/link.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#ab87bf1826384fbfe30eb499d42f1d994 */ public function Link($x, $y, $w, $h, $link, $spaces = 0) { @@ -394,8 +394,8 @@ class FPDF_TPL extends fpdi_bridge * * Overwritten because adding links in a template will not work. * - * @see https://fpdf.org/en/doc/addlink.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#a749522038ed7786c3e1701435dcb891e + * @see http://fpdf.org/en/doc/addlink.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#a749522038ed7786c3e1701435dcb891e */ public function AddLink() { @@ -416,8 +416,8 @@ class FPDF_TPL extends fpdi_bridge * * Overwritten because adding links in a template will not work. * - * @see https://fpdf.org/en/doc/setlink.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#ace5be60e7857953ea5e2b89cb90df0ae + * @see http://fpdf.org/en/doc/setlink.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#ace5be60e7857953ea5e2b89cb90df0ae */ public function SetLink($link, $y = 0, $page = -1) { diff --git a/prints/fpdi.php b/prints/fpdi.php index 389a03a..8ecc661 100755 --- a/prints/fpdi.php +++ b/prints/fpdi.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints/fpdi_bridge.php b/prints/fpdi_bridge.php index de15bdc..92c7c16 100755 --- a/prints/fpdi_bridge.php +++ b/prints/fpdi_bridge.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints/fpdi_pdf_parser.php b/prints/fpdi_pdf_parser.php index aeeef4e..9e6d521 100755 --- a/prints/fpdi_pdf_parser.php +++ b/prints/fpdi_pdf_parser.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints/gif.php b/prints/gif.php index 2f9117b..7c6162e 100755 --- a/prints/gif.php +++ b/prints/gif.php @@ -1,10 +1,10 @@ = gif_loadFile(filename, [index]) // = gif_getSize( or filename, &width, &height) diff --git a/prints/html2fpdf.php b/prints/html2fpdf.php index 58b68e5..e0e6f1f 100755 --- a/prints/html2fpdf.php +++ b/prints/html2fpdf.php @@ -23,7 +23,7 @@ These 2 attributes do the same thing?!?: TODO (in the future...): - Make font-family, font-size, lineheight customizable - Increase number of HTML/CSS tags/properties, Image/Font Types, recognized/supported -- allow BMP support? (tried with https://phpthumb.sourceforge.net/ but failed) +- allow BMP support? (tried with http://phpthumb.sourceforge.net/ but failed) - Improve CSS support - support image side-by-side or one-below-another or both? - Improve code clarity even more (modularize and get better var names like on textbuffer array's indexes for example) @@ -231,7 +231,7 @@ function HTML2FPDF($orientation='P',$unit='mm',$format='A4') function setBasePath($str) { -//! @desc Inform the script where the html file is (full path - e.g. https://www.google.com/dir1/dir2/dir3/file.html ) in order to adjust HREF and SRC links. No-Parameter: The directory where this script is. +//! @desc Inform the script where the html file is (full path - e.g. http://www.google.com/dir1/dir2/dir3/file.html ) in order to adjust HREF and SRC links. No-Parameter: The directory where this script is. //! @return void $this->basepath = dirname($str) . "/"; $this->basepath = str_replace("\\","/",$this->basepath); //If on Windows @@ -675,7 +675,7 @@ function OpenTag($tag,$attr) case 'H4': // 1 * fontsize case 'H5': // 0.83 * fontsize case 'H6': // 0.67 * fontsize - //Values obtained from: https://www.w3.org/TR/REC-CSS2/sample.html + //Values obtained from: http://www.w3.org/TR/REC-CSS2/sample.html if(isset($attr['ALIGN'])) $this->divalign = $align[strtolower($attr['ALIGN'])]; $this->buffer_on = true; if ($this->x != $this->lMargin) $this->Ln(2*$this->lineheight); @@ -2158,7 +2158,7 @@ function ReadMetaTags($html) } } //Comercial do Aplicativo usado (no caso um script): - $this->SetCreator("HTML2FPDF >> https://html2fpdf.sf.net"); + $this->SetCreator("HTML2FPDF >> http://html2fpdf.sf.net"); } ////////////////// @@ -2355,7 +2355,7 @@ function setCSS($arrayaux) $v = strtoupper($v); switch($v) { - //Values obtained from https://www.w3schools.com/html/html_reference.asp + //Values obtained from http://www.w3schools.com/html/html_reference.asp case 'XX-SMALL': $this->SetFontSize( (0.7)* 11); break; case 'X-SMALL': $this->SetFontSize( (0.77) * 11); @@ -2627,7 +2627,7 @@ function _tableWidth(&$table){ { if (!count($list)) {//Khong co cot nao co kich thuoc auto => chia deu phan du cho tat ca - //https://www.ksvn.com/anhviet_new.htm - translating comments... + //http://www.ksvn.com/anhviet_new.htm - translating comments... //bent shrink essence move size measure automatic => divide against give as a whole //$wi = $table['w'] - $wis; $wi = ($table['w'] - $wis)/$numcols; diff --git a/prints/htmltoolkit.php b/prints/htmltoolkit.php index 786a31f..9a5d897 100755 --- a/prints/htmltoolkit.php +++ b/prints/htmltoolkit.php @@ -11,7 +11,7 @@ function ConvertColor($color="#000000"){ //static $common_colors = array('black'=>'#000000','silver'=>'#C0C0C0','gray'=>'#808080', 'white'=>'#FFFFFF','maroon'=>'#800000','red'=>'#FF0000','purple'=>'#800080','fuchsia'=>'#FF00FF','green'=>'#008000','lime'=>'#00FF00','olive'=>'#808000','yellow'=>'#FFFF00','navy'=>'#000080', 'blue'=>'#0000FF','teal'=>'#008080','aqua'=>'#00FFFF'); //All color names array static $common_colors = array('antiquewhite'=>'#FAEBD7','aquamarine'=>'#7FFFD4','beige'=>'#F5F5DC','black'=>'#000000','blue'=>'#0000FF','brown'=>'#A52A2A','cadetblue'=>'#5F9EA0','chocolate'=>'#D2691E','cornflowerblue'=>'#6495ED','crimson'=>'#DC143C','darkblue'=>'#00008B','darkgoldenrod'=>'#B8860B','darkgreen'=>'#006400','darkmagenta'=>'#8B008B','darkorange'=>'#FF8C00','darkred'=>'#8B0000','darkseagreen'=>'#8FBC8F','darkslategray'=>'#2F4F4F','darkviolet'=>'#9400D3','deepskyblue'=>'#00BFFF','dodgerblue'=>'#1E90FF','firebrick'=>'#B22222','forestgreen'=>'#228B22','gainsboro'=>'#DCDCDC','gold'=>'#FFD700','gray'=>'#808080','green'=>'#008000','greenyellow'=>'#ADFF2F','hotpink'=>'#FF69B4','indigo'=>'#4B0082','khaki'=>'#F0E68C','lavenderblush'=>'#FFF0F5','lemonchiffon'=>'#FFFACD','lightcoral'=>'#F08080','lightgoldenrodyellow'=>'#FAFAD2','lightgreen'=>'#90EE90','lightsalmon'=>'#FFA07A','lightskyblue'=>'#87CEFA','lightslategray'=>'#778899','lightyellow'=>'#FFFFE0','limegreen'=>'#32CD32','magenta'=>'#FF00FF','mediumaquamarine'=>'#66CDAA','mediumorchid'=>'#BA55D3','mediumseagreen'=>'#3CB371','mediumspringgreen'=>'#00FA9A','mediumvioletred'=>'#C71585','mintcream'=>'#F5FFFA','moccasin'=>'#FFE4B5','navy'=>'#000080','olive'=>'#808000','orange'=>'#FFA500','orchid'=>'#DA70D6','palegreen'=>'#98FB98','palevioletred'=>'#D87093','peachpuff'=>'#FFDAB9','pink'=>'#FFC0CB','powderblue'=>'#B0E0E6','red'=>'#FF0000','royalblue'=>'#4169E1','salmon'=>'#FA8072','seagreen'=>'#2E8B57','sienna'=>'#A0522D','skyblue'=>'#87CEEB','slategray'=>'#708090','springgreen'=>'#00FF7F','tan'=>'#D2B48C','thistle'=>'#D8BFD8','turquoise'=>'#40E0D0','violetred'=>'#D02090','white'=>'#FFFFFF','yellow'=>'#FFFF00'); - //https://www.w3schools.com/css/css_colornames.asp + //http://www.w3schools.com/css/css_colornames.asp if ( ($color{0} != '#') and ( strstr($color,'(') === false ) ) $color = $common_colors[strtolower($color)]; if ($color{0} == '#') //case of #nnnnnn or #nnn diff --git a/prints/license.txt b/prints/license.txt index 916168c..ae8d129 100755 --- a/prints/license.txt +++ b/prints/license.txt @@ -1,5 +1,5 @@ -More info can be found on the site: [https://html2fpdf.sourceforge.net] +More info can be found on the site: [http://html2fpdf.sourceforge.net] ############################################################################## ############## DO NOT MODIFY THE CONTENTS OF THIS BOX ######################## @@ -21,4 +21,4 @@ This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. -[https://www.opensource.org/licenses/lgpl-license.php] \ No newline at end of file +[http://www.opensource.org/licenses/lgpl-license.php] \ No newline at end of file diff --git a/prints/own.php b/prints/own.php index 4d1f2a9..3184aa6 100755 --- a/prints/own.php +++ b/prints/own.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, @@ -824,7 +824,7 @@ class own2 extends own { // Bis hierher fpdi, die letzte Klasse von fpdi, wird der ersten Klasse von Table vererbt: // --> extends own2 hieß ursprünglich extends fpdf. fpdf ist die erste vererbung ganz oben -// daher ist hier die schnittstelle, wo man die zwei Pakete vererben kann: https://www.cix88.de/cix_fpdf/fpdf_allgemein/cix_tut_052.php +// daher ist hier die schnittstelle, wo man die zwei Pakete vererben kann: http://www.cix88.de/cix_fpdf/fpdf_allgemein/cix_tut_052.php require_once("class.string_tags.php"); @@ -2241,7 +2241,7 @@ function HTML2FPDF($orientation='P',$unit='mm',$format='A4') function setBasePath($str) { -//! @desc Inform the script where the html file is (full path - e.g. https://www.google.com/dir1/dir2/dir3/file.html ) in order to adjust HREF and SRC links. No-Parameter: The directory where this script is. +//! @desc Inform the script where the html file is (full path - e.g. http://www.google.com/dir1/dir2/dir3/file.html ) in order to adjust HREF and SRC links. No-Parameter: The directory where this script is. //! @return void $this->basepath = dirname($str) . "/"; $this->basepath = str_replace("\\","/",$this->basepath); //If on Windows @@ -2685,7 +2685,7 @@ function OpenTag($tag,$attr) case 'H4': // 1 * fontsize case 'H5': // 0.83 * fontsize case 'H6': // 0.67 * fontsize - //Values obtained from: https://www.w3.org/TR/REC-CSS2/sample.html + //Values obtained from: http://www.w3.org/TR/REC-CSS2/sample.html if(isset($attr['ALIGN'])) $this->divalign = $align[strtolower($attr['ALIGN'])]; $this->buffer_on = true; if ($this->x != $this->lMargin) $this->Ln(2*$this->lineheight); @@ -4168,7 +4168,7 @@ function ReadMetaTags($html) } } //Comercial do Aplicativo usado (no caso um script): - $this->SetCreator("HTML2FPDF >> https://html2fpdf.sf.net"); + $this->SetCreator("HTML2FPDF >> http://html2fpdf.sf.net"); } ////////////////// @@ -4365,7 +4365,7 @@ function setCSS($arrayaux) $v = strtoupper($v); switch($v) { - //Values obtained from https://www.w3schools.com/html/html_reference.asp + //Values obtained from http://www.w3schools.com/html/html_reference.asp case 'XX-SMALL': $this->SetFontSize( (0.7)* 11); break; case 'X-SMALL': $this->SetFontSize( (0.77) * 11); @@ -4637,7 +4637,7 @@ function _tableWidth(&$table){ { if (!count($list)) {//Khong co cot nao co kich thuoc auto => chia deu phan du cho tat ca - //https://www.ksvn.com/anhviet_new.htm - translating comments... + //http://www.ksvn.com/anhviet_new.htm - translating comments... //bent shrink essence move size measure automatic => divide against give as a whole //$wi = $table['w'] - $wis; $wi = ($table['w'] - $wis)/$numcols; diff --git a/prints/pdf_context.php b/prints/pdf_context.php index 6870bf9..474aa72 100755 --- a/prints/pdf_context.php +++ b/prints/pdf_context.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints/pdf_parser.php b/prints/pdf_parser.php index 75c4436..490b135 100755 --- a/prints/pdf_parser.php +++ b/prints/pdf_parser.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints/praxisstellen.pdf b/prints/praxisstellen.pdf index f3f827d..8fd0167 100755 Binary files a/prints/praxisstellen.pdf and b/prints/praxisstellen.pdf differ diff --git a/prints/wrapper_functions.php b/prints/wrapper_functions.php index c4d6a91..bfef3f8 100755 --- a/prints/wrapper_functions.php +++ b/prints/wrapper_functions.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/prints/zustimmung.pdf b/prints/zustimmung.pdf index 6c57a71..e5641ee 100755 Binary files a/prints/zustimmung.pdf and b/prints/zustimmung.pdf differ diff --git a/prints3/FAQ.htm b/prints3/FAQ.htm index 60a75aa..28838e0 100755 --- a/prints3/FAQ.htm +++ b/prints3/FAQ.htm @@ -194,7 +194,7 @@ Header('Pragma: public');

7. When I execute a script I get the message "FPDF error: Don't alter the locale before including class file".

When the decimal separator is configured as a comma before including a file, there is a -bug in some PHP versions and decimal +bug in some PHP versions and decimal numbers get truncated. Therefore you shouldn't make a call to setlocale() before including the class. On Unix, you shouldn't set the LC_ALL environment variable neither, for it is equivalent to a setlocale() call. @@ -270,20 +270,20 @@ Remark: even when the browser goes in time-out, the script may continue to run o

17. Can I modify a PDF with FPDF?

You can import an existing PDF document thanks to the FPDI extension:

-https://fpdi.setasign.de +http://fpdi.setasign.de

18. I'd like to make a search engine in PHP and index PDF files. Can I do it with FPDF?

No. But a GPL C utility does exist, pdftotext, which is able to extract the textual content from a PDF. It is provided with the Xpdf package:

-https://www.foolabs.com/xpdf/ +http://www.foolabs.com/xpdf/

19. Can I convert an HTML page to PDF with FPDF?

Not real pages. But a GPL C utility does exist, htmldoc, which allows to do it and gives good results:

-https://www.easysw.com/htmldoc/ +http://www.easysw.com/htmldoc/

20. Can I concatenate PDF files with FPDF?

No. But some free tools exist to perform this task:

-https://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
-https://www.accesspdf.com/pdftk/ +http://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
+http://www.accesspdf.com/pdftk/ diff --git a/prints3/LICENSE b/prints3/LICENSE index 62589ed..d645695 100755 --- a/prints3/LICENSE +++ b/prints3/LICENSE @@ -1,7 +1,7 @@ Apache License Version 2.0, January 2004 - https://www.apache.org/licenses/ + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -193,7 +193,7 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at - https://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/prints3/NOTICE b/prints3/NOTICE index 5d026f0..29ec933 100755 --- a/prints3/NOTICE +++ b/prints3/NOTICE @@ -3,7 +3,7 @@ php|architect by Marco Tabini. This software contains code derived from Oliver Plathey - The author of - FPDF. FPDF is available from: https://www.fpdf.org + FPDF. FPDF is available from: http://www.fpdf.org The LZW- and the ASCII85-Decoder are adapted from the iText-Library - https://www.lowagie.com/iText/ \ No newline at end of file + http://www.lowagie.com/iText/ \ No newline at end of file diff --git a/prints3/decoders/ascii85.php b/prints3/decoders/ascii85.php index b7548ee..f7580ba 100755 --- a/prints3/decoders/ascii85.php +++ b/prints3/decoders/ascii85.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/prints3/decoders/lzw.php b/prints3/decoders/lzw.php index 06fcd4f..bb79063 100755 --- a/prints3/decoders/lzw.php +++ b/prints3/decoders/lzw.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/prints3/doc/image.htm b/prints3/doc/image.htm index 9e84089..53a4ec1 100755 --- a/prints3/doc/image.htm +++ b/prints3/doc/image.htm @@ -89,7 +89,7 @@ URL or identifier returned by AddLink().
// Insert a logo in the top-left corner at 300 dpi
 $pdf->Image('logo.png',10,10,-300);
 // Insert a dynamic image from a URL
-$pdf->Image('https://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World',60,30,90,0,'PNG');
+$pdf->Image('http://chart.googleapis.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World',60,30,90,0,'PNG');

See also

AddLink diff --git a/prints3/doc/write.htm b/prints3/doc/write.htm index 86083ed..bd85401 100755 --- a/prints3/doc/write.htm +++ b/prints3/doc/write.htm @@ -37,7 +37,7 @@ $pdf->Write(5,'Visit '); // Then put a blue underlined link $pdf->SetTextColor(0,0,255); $pdf->SetFont('','U'); -$pdf->Write(5,'www.fpdf.org','https://www.fpdf.org'); +$pdf->Write(5,'www.fpdf.org','http://www.fpdf.org');

See also

SetFont, diff --git a/prints3/filters/FilterASCII85.php b/prints3/filters/FilterASCII85.php index 694cf18..b7e8966 100755 --- a/prints3/filters/FilterASCII85.php +++ b/prints3/filters/FilterASCII85.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints3/filters/FilterASCIIHexDecode.php b/prints3/filters/FilterASCIIHexDecode.php index 9cd7890..66ddae4 100755 --- a/prints3/filters/FilterASCIIHexDecode.php +++ b/prints3/filters/FilterASCIIHexDecode.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints3/filters/FilterLZW.php b/prints3/filters/FilterLZW.php index 3efe983..f855d22 100755 --- a/prints3/filters/FilterLZW.php +++ b/prints3/filters/FilterLZW.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints3/fpdf_tpl.php b/prints3/fpdf_tpl.php index cff3161..de746dd 100755 --- a/prints3/fpdf_tpl.php +++ b/prints3/fpdf_tpl.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ @@ -293,8 +293,8 @@ class FPDF_TPL extends fpdi_bridge * * See FPDF/TCPDF documentation. * - * @see https://fpdf.org/en/doc/setfont.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#afd56e360c43553830d543323e81bc045 + * @see http://fpdf.org/en/doc/setfont.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#afd56e360c43553830d543323e81bc045 */ public function SetFont($family, $style = '', $size = null, $fontfile = '', $subset = 'default', $out = true) { @@ -319,8 +319,8 @@ class FPDF_TPL extends fpdi_bridge * * See FPDF/TCPDF documentation. * - * @see https://fpdf.org/en/doc/image.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#a714c2bee7d6b39d4d6d304540c761352 + * @see http://fpdf.org/en/doc/image.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#a714c2bee7d6b39d4d6d304540c761352 */ public function Image( $file, $x = '', $y = '', $w = 0, $h = 0, $type = '', $link = '', $align = '', $resize = false, @@ -350,8 +350,8 @@ class FPDF_TPL extends fpdi_bridge * * This method cannot be used if you'd started a template. * - * @see https://fpdf.org/en/doc/addpage.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#a5171e20b366b74523709d84c349c1ced + * @see http://fpdf.org/en/doc/addpage.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#a5171e20b366b74523709d84c349c1ced */ public function AddPage($orientation = '', $format = '', $rotationOrKeepmargins = false, $tocpage = false) { @@ -372,8 +372,8 @@ class FPDF_TPL extends fpdi_bridge * * Overwritten because adding links in a template will not work. * - * @see https://fpdf.org/en/doc/link.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#ab87bf1826384fbfe30eb499d42f1d994 + * @see http://fpdf.org/en/doc/link.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#ab87bf1826384fbfe30eb499d42f1d994 */ public function Link($x, $y, $w, $h, $link, $spaces = 0) { @@ -394,8 +394,8 @@ class FPDF_TPL extends fpdi_bridge * * Overwritten because adding links in a template will not work. * - * @see https://fpdf.org/en/doc/addlink.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#a749522038ed7786c3e1701435dcb891e + * @see http://fpdf.org/en/doc/addlink.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#a749522038ed7786c3e1701435dcb891e */ public function AddLink() { @@ -416,8 +416,8 @@ class FPDF_TPL extends fpdi_bridge * * Overwritten because adding links in a template will not work. * - * @see https://fpdf.org/en/doc/setlink.htm - * @see https://www.tcpdf.org/doc/code/classTCPDF.html#ace5be60e7857953ea5e2b89cb90df0ae + * @see http://fpdf.org/en/doc/setlink.htm + * @see http://www.tcpdf.org/doc/code/classTCPDF.html#ace5be60e7857953ea5e2b89cb90df0ae */ public function SetLink($link, $y = 0, $page = -1) { diff --git a/prints3/fpdi.php b/prints3/fpdi.php index 389a03a..8ecc661 100755 --- a/prints3/fpdi.php +++ b/prints3/fpdi.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints3/fpdi_bridge.php b/prints3/fpdi_bridge.php index de15bdc..92c7c16 100755 --- a/prints3/fpdi_bridge.php +++ b/prints3/fpdi_bridge.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints3/fpdi_pdf_parser.php b/prints3/fpdi_pdf_parser.php index aeeef4e..9e6d521 100755 --- a/prints3/fpdi_pdf_parser.php +++ b/prints3/fpdi_pdf_parser.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints3/pdf_context.php b/prints3/pdf_context.php index 6870bf9..474aa72 100755 --- a/prints3/pdf_context.php +++ b/prints3/pdf_context.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints3/pdf_parser.php b/prints3/pdf_parser.php index 75c4436..490b135 100755 --- a/prints3/pdf_parser.php +++ b/prints3/pdf_parser.php @@ -3,8 +3,8 @@ * This file is part of FPDI * * @package FPDI - * @copyright Copyright (c) 2015 Setasign - Jan Slabon (https://www.setasign.com) - * @license https://opensource.org/licenses/mit-license The MIT License + * @copyright Copyright (c) 2015 Setasign - Jan Slabon (http://www.setasign.com) + * @license http://opensource.org/licenses/mit-license The MIT License * @version 1.6.1 */ diff --git a/prints3/praxisstellen.pdf b/prints3/praxisstellen.pdf index f3f827d..8fd0167 100755 Binary files a/prints3/praxisstellen.pdf and b/prints3/praxisstellen.pdf differ diff --git a/prints3/wrapper_functions.php b/prints3/wrapper_functions.php index c4d6a91..bfef3f8 100755 --- a/prints3/wrapper_functions.php +++ b/prints3/wrapper_functions.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/prints3/zustimmung.pdf b/prints3/zustimmung.pdf index 6c57a71..e5641ee 100755 Binary files a/prints3/zustimmung.pdf and b/prints3/zustimmung.pdf differ