diff --git a/admin/proseminarscheine/anschreiben/blanko_ludwigsburg.pdf b/admin/proseminarscheine/anschreiben/blanko_ludwigsburg.pdf index 447a432..a3a3df3 100755 Binary files a/admin/proseminarscheine/anschreiben/blanko_ludwigsburg.pdf and b/admin/proseminarscheine/anschreiben/blanko_ludwigsburg.pdf differ diff --git a/admin/proseminarscheine/blanko_ludwigsburg_2023.pdf b/admin/proseminarscheine/blanko_ludwigsburg_2023.pdf index da124bd..c8c553a 100644 Binary files a/admin/proseminarscheine/blanko_ludwigsburg_2023.pdf and b/admin/proseminarscheine/blanko_ludwigsburg_2023.pdf differ diff --git a/admin/proseminarscheine/prints/FAQ.htm b/admin/proseminarscheine/prints/FAQ.htm index 60a75aa..28838e0 100755 --- a/admin/proseminarscheine/prints/FAQ.htm +++ b/admin/proseminarscheine/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/proseminarscheine/prints/LICENSE b/admin/proseminarscheine/prints/LICENSE index 62589ed..d645695 100755 --- a/admin/proseminarscheine/prints/LICENSE +++ b/admin/proseminarscheine/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/proseminarscheine/prints/NOTICE b/admin/proseminarscheine/prints/NOTICE index 5d026f0..29ec933 100755 --- a/admin/proseminarscheine/prints/NOTICE +++ b/admin/proseminarscheine/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/proseminarscheine/prints/decoders/ascii85.php b/admin/proseminarscheine/prints/decoders/ascii85.php index b7548ee..f7580ba 100755 --- a/admin/proseminarscheine/prints/decoders/ascii85.php +++ b/admin/proseminarscheine/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/proseminarscheine/prints/decoders/lzw.php b/admin/proseminarscheine/prints/decoders/lzw.php index 06fcd4f..bb79063 100755 --- a/admin/proseminarscheine/prints/decoders/lzw.php +++ b/admin/proseminarscheine/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/proseminarscheine/prints/doc/write.htm b/admin/proseminarscheine/prints/doc/write.htm index 1f0bf3c..2a56d04 100755 --- a/admin/proseminarscheine/prints/doc/write.htm +++ b/admin/proseminarscheine/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/admin/proseminarscheine/prints/fpdf_tpl.php b/admin/proseminarscheine/prints/fpdf_tpl.php index e929d3a..f783e36 100755 --- a/admin/proseminarscheine/prints/fpdf_tpl.php +++ b/admin/proseminarscheine/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/admin/proseminarscheine/prints/fpdi.php b/admin/proseminarscheine/prints/fpdi.php index 86f8872..f203c6f 100755 --- a/admin/proseminarscheine/prints/fpdi.php +++ b/admin/proseminarscheine/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/admin/proseminarscheine/prints/fpdi_pdf_parser.php b/admin/proseminarscheine/prints/fpdi_pdf_parser.php index 3f923f8..d001677 100755 --- a/admin/proseminarscheine/prints/fpdi_pdf_parser.php +++ b/admin/proseminarscheine/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/admin/proseminarscheine/prints/pdf_context.php b/admin/proseminarscheine/prints/pdf_context.php index f82834f..9e1a86e 100755 --- a/admin/proseminarscheine/prints/pdf_context.php +++ b/admin/proseminarscheine/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/admin/proseminarscheine/prints/pdf_parser.php b/admin/proseminarscheine/prints/pdf_parser.php index 34afdcd..b525ffd 100755 --- a/admin/proseminarscheine/prints/pdf_parser.php +++ b/admin/proseminarscheine/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/admin/proseminarscheine/prints/praxisstellen.pdf b/admin/proseminarscheine/prints/praxisstellen.pdf index f3f827d..8fd0167 100755 Binary files a/admin/proseminarscheine/prints/praxisstellen.pdf and b/admin/proseminarscheine/prints/praxisstellen.pdf differ diff --git a/admin/proseminarscheine/prints/wrapper_functions.php b/admin/proseminarscheine/prints/wrapper_functions.php index c4d6a91..bfef3f8 100755 --- a/admin/proseminarscheine/prints/wrapper_functions.php +++ b/admin/proseminarscheine/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/proseminarscheine/prints/zustimmung.pdf b/admin/proseminarscheine/prints/zustimmung.pdf index 6c57a71..e5641ee 100755 Binary files a/admin/proseminarscheine/prints/zustimmung.pdf and b/admin/proseminarscheine/prints/zustimmung.pdf differ diff --git a/doz/proseminarscheine/prints/FAQ.htm b/doz/proseminarscheine/prints/FAQ.htm index 60a75aa..28838e0 100755 --- a/doz/proseminarscheine/prints/FAQ.htm +++ b/doz/proseminarscheine/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/proseminarscheine/prints/LICENSE b/doz/proseminarscheine/prints/LICENSE index 62589ed..d645695 100755 --- a/doz/proseminarscheine/prints/LICENSE +++ b/doz/proseminarscheine/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/proseminarscheine/prints/NOTICE b/doz/proseminarscheine/prints/NOTICE index 5d026f0..29ec933 100755 --- a/doz/proseminarscheine/prints/NOTICE +++ b/doz/proseminarscheine/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/proseminarscheine/prints/decoders/ascii85.php b/doz/proseminarscheine/prints/decoders/ascii85.php index b7548ee..f7580ba 100755 --- a/doz/proseminarscheine/prints/decoders/ascii85.php +++ b/doz/proseminarscheine/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/proseminarscheine/prints/decoders/lzw.php b/doz/proseminarscheine/prints/decoders/lzw.php index 06fcd4f..bb79063 100755 --- a/doz/proseminarscheine/prints/decoders/lzw.php +++ b/doz/proseminarscheine/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/proseminarscheine/prints/doc/write.htm b/doz/proseminarscheine/prints/doc/write.htm index 1f0bf3c..2a56d04 100755 --- a/doz/proseminarscheine/prints/doc/write.htm +++ b/doz/proseminarscheine/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/proseminarscheine/prints/fpdf_tpl.php b/doz/proseminarscheine/prints/fpdf_tpl.php index e929d3a..f783e36 100755 --- a/doz/proseminarscheine/prints/fpdf_tpl.php +++ b/doz/proseminarscheine/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/proseminarscheine/prints/fpdi.php b/doz/proseminarscheine/prints/fpdi.php index 86f8872..f203c6f 100755 --- a/doz/proseminarscheine/prints/fpdi.php +++ b/doz/proseminarscheine/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/proseminarscheine/prints/fpdi_pdf_parser.php b/doz/proseminarscheine/prints/fpdi_pdf_parser.php index 3f923f8..d001677 100755 --- a/doz/proseminarscheine/prints/fpdi_pdf_parser.php +++ b/doz/proseminarscheine/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/proseminarscheine/prints/pdf_context.php b/doz/proseminarscheine/prints/pdf_context.php index f82834f..9e1a86e 100755 --- a/doz/proseminarscheine/prints/pdf_context.php +++ b/doz/proseminarscheine/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/proseminarscheine/prints/pdf_parser.php b/doz/proseminarscheine/prints/pdf_parser.php index 34afdcd..b525ffd 100755 --- a/doz/proseminarscheine/prints/pdf_parser.php +++ b/doz/proseminarscheine/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/proseminarscheine/prints/praxisstellen.pdf b/doz/proseminarscheine/prints/praxisstellen.pdf index f3f827d..8fd0167 100755 Binary files a/doz/proseminarscheine/prints/praxisstellen.pdf and b/doz/proseminarscheine/prints/praxisstellen.pdf differ diff --git a/doz/proseminarscheine/prints/wrapper_functions.php b/doz/proseminarscheine/prints/wrapper_functions.php index c4d6a91..bfef3f8 100755 --- a/doz/proseminarscheine/prints/wrapper_functions.php +++ b/doz/proseminarscheine/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/proseminarscheine/prints/zustimmung.pdf b/doz/proseminarscheine/prints/zustimmung.pdf index 6c57a71..e5641ee 100755 Binary files a/doz/proseminarscheine/prints/zustimmung.pdf and b/doz/proseminarscheine/prints/zustimmung.pdf differ diff --git a/prints/FAQ.htm b/prints/FAQ.htm index 998d6dd..11d1ce8 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 229cee1..b50eb73 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/ex.php b/prints/ex.php index 9a3862d..43358c2 100755 --- a/prints/ex.php +++ b/prints/ex.php @@ -31,7 +31,7 @@ $ttxt[2] = "

Description \tThis method allows printing formatted text with line breaks. They can be automatic (as soon as the text reaches the right border of the cell) or explicit (via the \\n character). As many cells as necessary are output, one below the other. -Text can be aligned, cente~~~red or justified. Different Font, Sizes, , Colors can be used. The cell block can be framed and the background painted. The behavior/paramaters of the method are the same as to the FPDF Multicell method. can be used in any tag. +Text can be aligned, cente~~~red or justified. Different Font, Sizes, , Colors can be used. The cell block can be framed and the background painted. The behavior/paramaters of the method are the same as to the FPDF Multicell method. can be used in any tag. \tTAB spaces (\\t) can be used. The ttags tag name is reserved for the TAB SPACES. \tVariable Y relative positions can be used for Subscript or Superscript.