Server geändert
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
@ -1770,16 +1770,16 @@ class HTML2PDF_parsingCss
|
||||
// get the content of the css file
|
||||
$content = @file_get_contents($url);
|
||||
|
||||
// if "http://" in the url
|
||||
if (strpos($url, 'http://')!==false) {
|
||||
// if "https://" in the url
|
||||
if (strpos($url, 'https://')!==false) {
|
||||
|
||||
// get the domain "http://xxx/"
|
||||
$url = str_replace('http://', '', $url);
|
||||
// get the domain "https://xxx/"
|
||||
$url = str_replace('https://', '', $url);
|
||||
$url = explode('/', $url);
|
||||
$urlMain = 'http://'.$url[0].'/';
|
||||
$urlMain = 'https://'.$url[0].'/';
|
||||
|
||||
// get the absolute url of the path
|
||||
$urlSelf = $url; unset($urlSelf[count($urlSelf)-1]); $urlSelf = 'http://'.implode('/', $urlSelf).'/';
|
||||
$urlSelf = $url; unset($urlSelf[count($urlSelf)-1]); $urlSelf = 'https://'.implode('/', $urlSelf).'/';
|
||||
|
||||
// adapt the url in the css content
|
||||
$content = preg_replace('/url\(([^\\\\][^)]*)\)/isU', 'url('.$urlSelf.'$1)', $content);
|
||||
|
@ -25,8 +25,8 @@
|
||||
* Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @package com.tecnick.tcpdf
|
||||
* @version 4.0.014
|
||||
* @link http://tcpdf.sourceforge.net
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://tcpdf.sourceforge.net
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @since 2004-10-27
|
||||
*/
|
||||
|
||||
@ -67,14 +67,14 @@ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
|
||||
if (isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS'])!='off') {
|
||||
$kPathUrl = 'https://';
|
||||
} else {
|
||||
$kPathUrl = 'http://';
|
||||
$kPathUrl = 'https://';
|
||||
}
|
||||
$kPathUrl .= $_SERVER['HTTP_HOST'];
|
||||
$kPathUrl .= str_replace('\\', '/', substr(K_PATH_MAIN, (strlen($_SERVER['DOCUMENT_ROOT']) - 1)));
|
||||
}
|
||||
|
||||
/**
|
||||
* URL path to tcpdf installation folder (http://localhost/tcpdf/).
|
||||
* URL path to tcpdf installation folder (https://localhost/tcpdf/).
|
||||
* By default it is automatically calculated but you can also set it as a fixed string to improve performances.
|
||||
*/
|
||||
define('K_PATH_URL', $kPathUrl);
|
||||
|
@ -1,7 +1,7 @@
|
||||
*******************************************************
|
||||
** Ce programme est distribué sous la licence LGPL, **
|
||||
** reportez-vous au fichier _LGPL.txt ou à **
|
||||
** http://www.gnu.org/licenses/lgpl.html **
|
||||
** https://www.gnu.org/licenses/lgpl.html **
|
||||
** pour en savoir plus. **
|
||||
** **
|
||||
** Copyright 2008-2011 par Laurent Minguet **
|
||||
@ -59,7 +59,7 @@ Utilisation :
|
||||
|
||||
* <qrcode></qrcode> (CF Exemple 13 & wiki)
|
||||
permet d'insérer un codebar à 2 dimensions de type QRcode
|
||||
(QR Code is registered trademark of DENSO WAVE INCORPORATED | http://www.denso-wave.com/qrcode/)
|
||||
(QR Code is registered trademark of DENSO WAVE INCORPORATED | https://www.denso-wave.com/qrcode/)
|
||||
|
||||
* <bookmark></bookmark> (CF Exemples 7 & About & wiki)
|
||||
permet d'insérer des bookmarks dans les pdfs, CF Exemple 7 et About.
|
||||
@ -83,9 +83,9 @@ Informations :
|
||||
-------------
|
||||
Programmeur : Spipu
|
||||
email : webmaster@html2pdf.fr
|
||||
site : http://html2pdf.fr/
|
||||
wiki : http://html2pdf.fr/fr/wiki
|
||||
support : http://html2pdf.fr/fr/forum
|
||||
site : https://html2pdf.fr/
|
||||
wiki : https://html2pdf.fr/fr/wiki
|
||||
support : https://html2pdf.fr/fr/forum
|
||||
|
||||
Remerciement :
|
||||
-------------
|
||||
|
@ -1,7 +1,7 @@
|
||||
*********************************************************
|
||||
** This program is distributed under the LGPL License, **
|
||||
** for more information see file _LGPL.txt or **
|
||||
** http://www.gnu.org/licenses/lgpl.html **
|
||||
** https://www.gnu.org/licenses/lgpl.html **
|
||||
** **
|
||||
** Copyright 2008-2011 by Laurent Minguet **
|
||||
*********************************************************
|
||||
@ -57,7 +57,7 @@ How to use :
|
||||
|
||||
* <qrcode></qrcode> (CF Example 13 & wiki)
|
||||
can insert QRcode 2D barcodes
|
||||
(QR Code is registered trademark of DENSO WAVE INCORPORATED | http://www.denso-wave.com/qrcode/)
|
||||
(QR Code is registered trademark of DENSO WAVE INCORPORATED | https://www.denso-wave.com/qrcode/)
|
||||
|
||||
* <bookmark></bookmark> (CF Examples 7 & About & wiki)
|
||||
can insert bookmark in pdfs, CF Example 7 and About.
|
||||
@ -70,7 +70,7 @@ How to use :
|
||||
|
||||
change log :
|
||||
-----------
|
||||
see on this page : http://html2pdf.fr/en/download
|
||||
see on this page : https://html2pdf.fr/en/download
|
||||
|
||||
Help & Support :
|
||||
---------------
|
||||
@ -81,9 +81,9 @@ Informations :
|
||||
-------------
|
||||
Programmer : Spipu
|
||||
email : webmaster@html2pdf.fr
|
||||
web site : http://html2pdf.fr/
|
||||
wiki : http://html2pdf.fr/en/wiki
|
||||
support : http://html2pdf.fr/en/forum
|
||||
web site : https://html2pdf.fr/
|
||||
wiki : https://html2pdf.fr/en/wiki
|
||||
support : https://html2pdf.fr/en/forum
|
||||
|
||||
Thanks :
|
||||
-------
|
||||
|
@ -4,7 +4,7 @@
|
||||
// Begin : 2009-04-07
|
||||
// Last Update : 2010-04-30
|
||||
// Version : 1.0.003
|
||||
// License : GNU LGPL (http://www.gnu.org/copyleft/lesser.html)
|
||||
// License : GNU LGPL (https://www.gnu.org/copyleft/lesser.html)
|
||||
// ----------------------------------------------------------------------------
|
||||
// Copyright (C) 2008-2009 Nicola Asuni - Tecnick.com S.r.l.
|
||||
//
|
||||
@ -19,7 +19,7 @@
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// See LICENSE.TXT file for more information.
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -45,19 +45,19 @@
|
||||
* @abstract Functions for generating string representation of 2D barcodes.
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2008-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @version 1.0.003
|
||||
*/
|
||||
|
||||
/**
|
||||
* PHP class to creates array representations for 2D barcodes to be used with TCPDF (http://www.tcpdf.org).<br>
|
||||
* PHP class to creates array representations for 2D barcodes to be used with TCPDF (https://www.tcpdf.org).<br>
|
||||
* @name TCPDFBarcode
|
||||
* @package com.tecnick.tcpdf
|
||||
* @version 1.0.003
|
||||
* @author Nicola Asuni
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
*/
|
||||
class TCPDF2DBarcode {
|
||||
|
||||
|
@ -1158,12 +1158,12 @@
|
||||
2.2.004 (2008-03-04)
|
||||
- Several examples were added.
|
||||
- AddPage() Header() and Footer() were fixed.
|
||||
- Documentation is now available on http://www.tcpdf.org
|
||||
- Documentation is now available on https://www.tcpdf.org
|
||||
|
||||
2.2.003 (2008-03-03)
|
||||
- [1894853] Performance of MultiCell() was improved.
|
||||
- RadioButton and ListBox functions were added.
|
||||
- javascript form functions were rewritten and properties names are changed. The properties function supported by form fields are listed on Possible values are listed on http://www.adobe.com/devnet/acrobat/pdfs/js_developer_guide.pdf.
|
||||
- javascript form functions were rewritten and properties names are changed. The properties function supported by form fields are listed on Possible values are listed on https://www.adobe.com/devnet/acrobat/pdfs/js_developer_guide.pdf.
|
||||
|
||||
2.2.002 (2008-02-28)
|
||||
- [1900495] html images path was fixed.
|
||||
@ -1378,7 +1378,7 @@
|
||||
1.53.0.TC004 (2005-01-04)
|
||||
- this changelog were added.
|
||||
- removed commercial fonts for licensing issue.
|
||||
- Bitstream Vera Fonts were added (http://www.bitstream.com/font_rendering/products/dev_fonts/vera.html).
|
||||
- Bitstream Vera Fonts were added (https://www.bitstream.com/font_rendering/products/dev_fonts/vera.html).
|
||||
- Now the AddFont and SetFont functions returns the basic font if the styled version do not exist.
|
||||
|
||||
EOF ----------------------------------------------------------------------------
|
||||
|
@ -3,7 +3,7 @@ TCPDF - README
|
||||
|
||||
IF YOU'D LIKE TO SUPPORT TCPDF, PLEASE CONSIDER MAKING A
|
||||
DONATION:
|
||||
http://sourceforge.net/donate/index.php?group_id=128076
|
||||
https://sourceforge.net/donate/index.php?group_id=128076
|
||||
|
||||
------------------------------------------------------------
|
||||
|
||||
@ -21,12 +21,12 @@ Copyright (c) 2001-2010:
|
||||
www.tecnick.com
|
||||
|
||||
URLs:
|
||||
http://www.tcpdf.org
|
||||
http://www.sourceforge.net/projects/tcpdf
|
||||
https://www.tcpdf.org
|
||||
https://www.sourceforge.net/projects/tcpdf
|
||||
|
||||
Description:
|
||||
TCPDF is a PHP class for generating PDF files on-the-fly without requiring external extensions.
|
||||
TCPDF has been originally derived from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org).
|
||||
TCPDF has been originally derived from the Public Domain FPDF class by Olivier Plathey (https://www.fpdf.org).
|
||||
|
||||
Main Features:
|
||||
// * no external libraries are required for the basic functions;
|
||||
@ -35,7 +35,7 @@ Main Features:
|
||||
// * TrueTypeUnicode, OpenTypeUnicode, TrueType, OpenType, Type1 and CID-0 fonts;
|
||||
// * methods to publish some XHTML code, Javascript and Forms;
|
||||
// * images, graphic (geometric figures) and transformation methods;
|
||||
// * supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (http://www.imagemagick.org/www/formats.html)
|
||||
// * supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (https://www.imagemagick.org/www/formats.html)
|
||||
// * 1D and 2D barcodes: CODE 39, ANSI MH10.8M-1983, USD-3, 3 of 9, CODE 93, USS-93, Standard 2 of 5, Interleaved 2 of 5, CODE 128 A/B/C, 2 and 5 Digits UPC-Based Extention, EAN 8, EAN 13, UPC-A, UPC-E, MSI, POSTNET, PLANET, RMS4CC (Royal Mail 4-state Customer Code), CBC (Customer Bar Code), KIX (Klant index - Customer index), Intelligent Mail Barcode, Onecode, USPS-B-3200, CODABAR, CODE 11, PHARMACODE, PHARMACODE TWO-TRACKS, QR-Code;
|
||||
// * Grayscale, RGB, CMYK, Spot Colors and Transparencies;
|
||||
// * automatic page header and footer management;
|
||||
@ -52,7 +52,7 @@ Main Features:
|
||||
// * page compression (requires php-zlib extension);
|
||||
|
||||
|
||||
Installation (full instructions on http://www.tcpdf.org):
|
||||
Installation (full instructions on https://www.tcpdf.org):
|
||||
1. copy the folder on your Web server
|
||||
2. set your installation path and other parameters on the config/tcpdf_config.php
|
||||
3. call the examples/example_001.php page with your browser to see an example
|
||||
@ -61,7 +61,7 @@ Source Code Documentation:
|
||||
doc/index.html
|
||||
|
||||
For Additional Documentation:
|
||||
http://www.tcpdf.org
|
||||
https://www.tcpdf.org
|
||||
|
||||
License
|
||||
Copyright (C) 2002-2010 Nicola Asuni - Tecnick.com S.r.l.
|
||||
@ -77,7 +77,7 @@ License
|
||||
GNU Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
See LICENSE.TXT file for more information.
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
// Begin : 2008-06-09
|
||||
// Last Update : 2009-08-26
|
||||
// Version : 1.0.009
|
||||
// License : GNU LGPL (http://www.gnu.org/copyleft/lesser.html)
|
||||
// License : GNU LGPL (https://www.gnu.org/copyleft/lesser.html)
|
||||
// ----------------------------------------------------------------------------
|
||||
// Copyright (C) 2008-2009 Nicola Asuni - Tecnick.com S.r.l.
|
||||
//
|
||||
@ -19,7 +19,7 @@
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// See LICENSE.TXT file for more information.
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -45,19 +45,19 @@
|
||||
* @abstract Functions for generating string representation of common 1D barcodes.
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2008-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @version 1.0.008
|
||||
*/
|
||||
|
||||
/**
|
||||
* PHP class to creates array representations for common 1D barcodes to be used with TCPDF (http://www.tcpdf.org).<br>
|
||||
* PHP class to creates array representations for common 1D barcodes to be used with TCPDF (https://www.tcpdf.org).<br>
|
||||
* @name TCPDFBarcode
|
||||
* @package com.tecnick.tcpdf
|
||||
* @version 1.0.008
|
||||
* @author Nicola Asuni
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
*/
|
||||
class TCPDFBarcode {
|
||||
|
||||
@ -1716,7 +1716,7 @@ class TCPDFBarcode {
|
||||
* IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200
|
||||
* (requires PHP bcmath extension)
|
||||
* Intelligent Mail barcode is a 65-bar code for use on mail in the United States.
|
||||
* The fields are described as follows:<ul><li>The Barcode Identifier shall be assigned by USPS to encode the presort identification that is currently printed in human readable form on the optional endorsement line (OEL) as well as for future USPS use. This shall be two digits, with the second digit in the range of 0–4. The allowable encoding ranges shall be 00–04, 10–14, 20–24, 30–34, 40–44, 50–54, 60–64, 70–74, 80–84, and 90–94.</li><li>The Service Type Identifier shall be assigned by USPS for any combination of services requested on the mailpiece. The allowable encoding range shall be 000http://it2.php.net/manual/en/function.dechex.php–999. Each 3-digit value shall correspond to a particular mail class with a particular combination of service(s). Each service program, such as OneCode Confirm and OneCode ACS, shall provide the list of Service Type Identifier values.</li><li>The Mailer or Customer Identifier shall be assigned by USPS as a unique, 6 or 9 digit number that identifies a business entity. The allowable encoding range for the 6 digit Mailer ID shall be 000000- 899999, while the allowable encoding range for the 9 digit Mailer ID shall be 900000000-999999999.</li><li>The Serial or Sequence Number shall be assigned by the mailer for uniquely identifying and tracking mailpieces. The allowable encoding range shall be 000000000–999999999 when used with a 6 digit Mailer ID and 000000-999999 when used with a 9 digit Mailer ID. e. The Delivery Point ZIP Code shall be assigned by the mailer for routing the mailpiece. This shall replace POSTNET for routing the mailpiece to its final delivery point. The length may be 0, 5, 9, or 11 digits. The allowable encoding ranges shall be no ZIP Code, 00000–99999, 000000000–999999999, and 00000000000–99999999999.</li></ul>
|
||||
* The fields are described as follows:<ul><li>The Barcode Identifier shall be assigned by USPS to encode the presort identification that is currently printed in human readable form on the optional endorsement line (OEL) as well as for future USPS use. This shall be two digits, with the second digit in the range of 0–4. The allowable encoding ranges shall be 00–04, 10–14, 20–24, 30–34, 40–44, 50–54, 60–64, 70–74, 80–84, and 90–94.</li><li>The Service Type Identifier shall be assigned by USPS for any combination of services requested on the mailpiece. The allowable encoding range shall be 000https://it2.php.net/manual/en/function.dechex.php–999. Each 3-digit value shall correspond to a particular mail class with a particular combination of service(s). Each service program, such as OneCode Confirm and OneCode ACS, shall provide the list of Service Type Identifier values.</li><li>The Mailer or Customer Identifier shall be assigned by USPS as a unique, 6 or 9 digit number that identifies a business entity. The allowable encoding range for the 6 digit Mailer ID shall be 000000- 899999, while the allowable encoding range for the 9 digit Mailer ID shall be 900000000-999999999.</li><li>The Serial or Sequence Number shall be assigned by the mailer for uniquely identifying and tracking mailpieces. The allowable encoding range shall be 000000000–999999999 when used with a 6 digit Mailer ID and 000000-999999 when used with a 9 digit Mailer ID. e. The Delivery Point ZIP Code shall be assigned by the mailer for routing the mailpiece. This shall replace POSTNET for routing the mailpiece to its final delivery point. The length may be 0, 5, 9, or 11 digits. The allowable encoding ranges shall be no ZIP Code, 00000–99999, 000000000–999999999, and 00000000000–99999999999.</li></ul>
|
||||
* @param string $code code to print, separate the ZIP (routing code) from the rest using a minus char '-' (BarcodeID_ServiceTypeID_MailerID_SerialNumber-RoutingCode)
|
||||
* @return array barcode representation.
|
||||
* @access protected
|
||||
|
@ -1,7 +1,7 @@
|
||||
Sentences that contain all letters commonly used in a language
|
||||
--------------------------------------------------------------
|
||||
|
||||
Markus Kuhn <http://www.cl.cam.ac.uk/~mgk25/> -- 2001-09-02
|
||||
Markus Kuhn <https://www.cl.cam.ac.uk/~mgk25/> -- 2001-09-02
|
||||
|
||||
This file is UTF-8 encoded.
|
||||
|
||||
|
@ -25,8 +25,8 @@
|
||||
* @abstract TCPDF language file.
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @link http://tcpdf.sourceforge.net
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://tcpdf.sourceforge.net
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @since 2004-03-03
|
||||
*/
|
||||
|
||||
|
@ -25,8 +25,8 @@
|
||||
* @abstract TCPDF language file.
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @link http://tcpdf.sourceforge.net
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://tcpdf.sourceforge.net
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @since 2004-03-03
|
||||
*/
|
||||
|
||||
|
@ -25,8 +25,8 @@
|
||||
* @abstract TCPDF language file.
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @link http://tcpdf.sourceforge.net
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://tcpdf.sourceforge.net
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @since 2004-03-03
|
||||
*/
|
||||
|
||||
|
@ -25,8 +25,8 @@
|
||||
* @abstract TCPDF language file.
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @link http://tcpdf.sourceforge.net
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://tcpdf.sourceforge.net
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @since 2004-03-03
|
||||
*/
|
||||
|
||||
|
@ -24,8 +24,8 @@
|
||||
* @copyright 2004-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @package com.tecnick.tcpdf
|
||||
* @version 4.9.005
|
||||
* @link http://tcpdf.sourceforge.net
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://tcpdf.sourceforge.net
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @since 2004-10-27
|
||||
*/
|
||||
|
||||
@ -63,14 +63,14 @@ if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
|
||||
if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS'])!='off') {
|
||||
$k_path_url = 'https://';
|
||||
} else {
|
||||
$k_path_url = 'http://';
|
||||
$k_path_url = 'https://';
|
||||
}
|
||||
$k_path_url .= $_SERVER['HTTP_HOST'];
|
||||
$k_path_url .= str_replace( '\\', '/', substr($_SERVER['PHP_SELF'], 0, -24));
|
||||
}
|
||||
|
||||
/**
|
||||
* URL path to tcpdf installation folder (http://localhost/tcpdf/).
|
||||
* URL path to tcpdf installation folder (https://localhost/tcpdf/).
|
||||
* By default it is automatically calculated but you can also set it as a fixed string to improve performances.
|
||||
*/
|
||||
define ('K_PATH_URL', $k_path_url);
|
||||
|
@ -24,8 +24,8 @@
|
||||
* @copyright 2004-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @package com.tecnick.tcpdf
|
||||
* @version 4.9.005
|
||||
* @link http://tcpdf.sourceforge.net
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://tcpdf.sourceforge.net
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @since 2004-10-27
|
||||
*/
|
||||
|
||||
@ -58,14 +58,14 @@ if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) {
|
||||
if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS'])!='off') {
|
||||
$k_path_url = 'https://';
|
||||
} else {
|
||||
$k_path_url = 'http://';
|
||||
$k_path_url = 'https://';
|
||||
}
|
||||
$k_path_url .= $_SERVER['HTTP_HOST'];
|
||||
$k_path_url .= str_replace( '\\', '/', substr($_SERVER['PHP_SELF'], 0, -24));
|
||||
}
|
||||
|
||||
/**
|
||||
* URL path to tcpdf installation folder (http://localhost/tcpdf/).
|
||||
* URL path to tcpdf installation folder (https://localhost/tcpdf/).
|
||||
* By default it is automatically calculated but you can also set it as a fixed string to improve performances..
|
||||
*/
|
||||
define ('K_PATH_URL', $k_path_url);
|
||||
|
@ -1,3 +1,3 @@
|
||||
You can read the documentation at : http://www.tecnick.com/pagefiles/tcpdf/doc/index.html
|
||||
You can read the documentation at : https://www.tecnick.com/pagefiles/tcpdf/doc/index.html
|
||||
|
||||
it has been removed because of the size of the package of HTML2PDF...
|
@ -1,3 +1,3 @@
|
||||
You can read the documentation at : http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf_examples
|
||||
You can read the documentation at : https://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf_examples
|
||||
|
||||
it has been removed because of the size of the package of HTML2PDF...
|
@ -1,3 +1,3 @@
|
||||
See http://dejavu.sourceforge.net/wiki/index.php/Bugs
|
||||
See https://dejavu.sourceforge.net/wiki/index.php/Bugs
|
||||
|
||||
$Id: BUGS 80 2004-11-13 13:12:02Z src $
|
||||
|
@ -2,7 +2,7 @@ DejaVu fonts 2.30 (c)2004-2009 DejaVu fonts team
|
||||
------------------------------------------------
|
||||
|
||||
The DejaVu fonts are a font family based on the Bitstream Vera Fonts
|
||||
(http://gnome.org/fonts/). Its purpose is to provide a wider range of
|
||||
(https://gnome.org/fonts/). Its purpose is to provide a wider range of
|
||||
characters (see status.txt for more information) while maintaining the
|
||||
original look and feel.
|
||||
|
||||
@ -39,10 +39,10 @@ For license information see LICENSE. What's new is described in NEWS. Known
|
||||
bugs are in BUGS. All authors are mentioned in AUTHORS.
|
||||
|
||||
Fonts are published in source form as SFD files (Spline Font Database from
|
||||
FontForge - http://fontforge.sf.net/) and in compiled form as TTF files
|
||||
FontForge - https://fontforge.sf.net/) and in compiled form as TTF files
|
||||
(TrueType fonts).
|
||||
|
||||
For more information go to http://dejavu.sourceforge.net/.
|
||||
For more information go to https://dejavu.sourceforge.net/.
|
||||
|
||||
Characters from Arev fonts, Copyright (c) 2006 by Tavmjong Bah:
|
||||
---------------------------
|
||||
|
@ -7,7 +7,7 @@ The FreeFont collection is being maintained by
|
||||
The folowing list cites the other contributors that contributed to
|
||||
particular ISO 10646 blocks.
|
||||
|
||||
* URW++ Design & Development GmbH <http://www.urwpp.de/>
|
||||
* URW++ Design & Development GmbH <https://www.urwpp.de/>
|
||||
|
||||
Basic Latin (U+0041-U+007A)
|
||||
Latin-1 Supplement (U+00C0-U+00FF) (most)
|
||||
|
@ -1,7 +1,7 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
@ -645,7 +645,7 @@ the "copyright" line and a pointer to where the full notice is found.
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
@ -664,11 +664,11 @@ might be different; for a GUI interface, you would use an "about box".
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
<https://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
<https://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
|
@ -5,10 +5,10 @@
|
||||
This file lists contributors and contributions to the GNU FreeFont project.
|
||||
|
||||
|
||||
* URW++ Design & Development GmbH <http://www.urwpp.de/>
|
||||
* URW++ Design & Development GmbH <https://www.urwpp.de/>
|
||||
|
||||
URW++ donated a set of 35 core PostScript Type 1 fonts to the
|
||||
Ghostscript project <http://www.cs.wisc.edu/~ghost/>, to be available
|
||||
Ghostscript project <https://www.cs.wisc.edu/~ghost/>, to be available
|
||||
under the terms of GNU General Public License (GPL).
|
||||
|
||||
Basic Latin (U+0041-U+007A)
|
||||
@ -24,7 +24,7 @@ under the terms of GNU General Public License (GPL).
|
||||
Plaice <plaice AT omega.cse.unsw.edu.au>
|
||||
|
||||
Yannis Haralambous and John Plaice are the authors of Omega typesetting
|
||||
system, <http://omega.enstb.org/>. Omega is an extension of TeX.
|
||||
system, <https://omega.enstb.org/>. Omega is an extension of TeX.
|
||||
Its first release, aims primarily at improving TeX's multilingual abilities.
|
||||
In Omega all characters and pointers into data-structures are 16-bit wide,
|
||||
instead of 8-bit, thereby eliminating many of the trivial limitations of TeX.
|
||||
@ -50,7 +50,7 @@ Omega fonts are available subject to GPL
|
||||
Arabic Presentation Forms-A (U+FB50-U+FDFF)
|
||||
Arabic Presentation Forms-B (U+FE70-U+FEFF)
|
||||
|
||||
Current info: <http://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=omega>
|
||||
Current info: <https://tug.ctan.org/cgi-bin/ctanPackageInformation.py?id=omega>
|
||||
|
||||
* Valek Filippov <frob AT df.ru>
|
||||
|
||||
@ -90,7 +90,7 @@ fonts, these glyphs are thinner than those of original Times
|
||||
fonts. That is, the rule thickness of these glyphs is around 85% of
|
||||
that of the Times fonts, but still thicker than that of the CM fonts."
|
||||
TX fonts are are distributed under the GNU public license (GPL).
|
||||
<http://www.ctan.org/tex-archive/fonts/txfonts/>.
|
||||
<https://www.ctan.org/tex-archive/fonts/txfonts/>.
|
||||
|
||||
Arrows (U+2190-U+21FF)
|
||||
Mathematical Symbols (U+2200-U+22FF)
|
||||
@ -127,7 +127,7 @@ intlfonts 1.2 package and is available under the GPL at
|
||||
|
||||
Shaheed Haque has developed a basic set of basic Bengali glyphs
|
||||
(without ligatures), using ISO10646 encoding. They are available under
|
||||
the XFree86 license at <http://www.btinternet.com/~shaheedhaque/>.
|
||||
the XFree86 license at <https://www.btinternet.com/~shaheedhaque/>.
|
||||
|
||||
Copyright (C) 2001 S.R.Haque <srhaque AT iee.org>. All Rights Reserved.
|
||||
|
||||
@ -162,7 +162,7 @@ S.R.Haque.
|
||||
|
||||
Sam Stepanyan created a set of Armenian sans serif glyphs visually
|
||||
compatible with Helvetica or Arial. Available on
|
||||
<http://www.editum.com.ar/mashtots/html/fonts/ara.tar.gz>. On
|
||||
<https://www.editum.com.ar/mashtots/html/fonts/ara.tar.gz>. On
|
||||
2002-01-24, Sam writes: "Arial Armenian font is free for
|
||||
non-commercial use, so it is OK to use under GPL license."
|
||||
|
||||
@ -172,7 +172,7 @@ non-commercial use, so it is OK to use under GPL license."
|
||||
* Mohamed Ishan <ishan AT mitf.f2s.com>
|
||||
|
||||
Mohamed Ishan has started a Thaana Unicode Project
|
||||
<http://thaana.sourceforge.net/> and among other things created a
|
||||
<https://thaana.sourceforge.net/> and among other things created a
|
||||
couple of Thaana fonts, available under FDL or BDF license.
|
||||
|
||||
Thaana (U+0780-U+07BF)
|
||||
@ -181,7 +181,7 @@ couple of Thaana fonts, available under FDL or BDF license.
|
||||
* Sushant Kumar Dash <sushant AT writeme.com> (*)
|
||||
|
||||
Sushant Dash has created a font in his mother tongue, Oriya. As he
|
||||
states on his web page <http://members.tripod.com/~sushantdash/>:
|
||||
states on his web page <https://members.tripod.com/~sushantdash/>:
|
||||
"Please feel free to foreword this mail to your Oriya friends. No
|
||||
copyright law is applied for this font. It is totally free!!! Feel
|
||||
free to modify this using any font editing tools. This is designed for
|
||||
@ -194,7 +194,7 @@ fonts.(Or the cost of the available packages are too much)."
|
||||
|
||||
* Harsh Kumar <harshkumar AT vsnl.com>
|
||||
|
||||
Harsh Kumar has started BharatBhasha <http://www.bharatbhasha.net/> -
|
||||
Harsh Kumar has started BharatBhasha <https://www.bharatbhasha.net/> -
|
||||
an effort to provide "FREE software, Tutorial, Source Codes
|
||||
etc. available for working in Hindi, Marathi, Gujarati, Gurmukhi and
|
||||
Bangla. You can type text, write Web pages or develop Indian Languages
|
||||
@ -211,7 +211,7 @@ languages."
|
||||
* Prasad A. Chodavarapu <chprasad AT hotmail.com>
|
||||
|
||||
Prasad A. Chodavarapu created Tikkana, a Telugu font available in Type
|
||||
1 and TrueType format on <http://chaitanya.bhaavana.net/fonts/>.
|
||||
1 and TrueType format on <https://chaitanya.bhaavana.net/fonts/>.
|
||||
Tikkana exceeds the Unicode Telugu range with some composite glyphs.
|
||||
Available under the GNU General Public License.
|
||||
|
||||
@ -227,7 +227,7 @@ under the terms of GNU GPL. Later, Anshuman Pandey from the Washington
|
||||
University, Seattle, USA, took over the maintenance of font. Fonts can
|
||||
be found on CTAN, <ftp://ftp.dante.de/tex-archive/language/devanagari/>. I
|
||||
converted the font to Type 1 format using Péter Szabó's TeXtrace
|
||||
program <http://www.inf.bme.hu/~pts/textrace/> and removed some
|
||||
program <https://www.inf.bme.hu/~pts/textrace/> and removed some
|
||||
redundant control points with PfaEdit.
|
||||
|
||||
Devanagari (U+0900-U+097F)
|
||||
@ -278,11 +278,11 @@ of Computer Science, University of Hamburg, prepared a set of Ethiopic
|
||||
metafonts, found on
|
||||
<ftp://ftp.dante.de/tex-archive/language/ethiopia/ethiop/>. They also
|
||||
maintain home page on the Ethiopic font project,
|
||||
<http://www.informatik.uni-hamburg.de/TGI/mitarbeiter/wimis/kummer/ethiop_eng.html>,
|
||||
<https://www.informatik.uni-hamburg.de/TGI/mitarbeiter/wimis/kummer/ethiop_eng.html>,
|
||||
and can be reached at <ethiop AT informatik.uni-hamburg.de>. The current
|
||||
version of fonts is 0.7 (1998), and they are released under GNU GPL. I
|
||||
converted the fonts to Type 1 format using Péter Szabó's TeXtrace-A
|
||||
program <http://www.inf.bme.hu/~pts/textrace/> and removed some
|
||||
program <https://www.inf.bme.hu/~pts/textrace/> and removed some
|
||||
redundant control points with PfaEdit.
|
||||
|
||||
Ethiopic (U+1200-U+137F)
|
||||
@ -295,7 +295,7 @@ Hebrew-speaking Linux and Unix community with a basic collection of
|
||||
Hebrew fonts for X Windows. The fonts are visually compatible with
|
||||
URW++ Century Schoolbook L, URW++ Nimbus Sans L and URW++ Nimbus Mono
|
||||
L families, respectively, and are released under GNU GPL license. See
|
||||
also <http://culmus.sourceforge.net/>.
|
||||
also <https://culmus.sourceforge.net/>.
|
||||
|
||||
Hebrew (U+0590-U+05FF)
|
||||
|
||||
@ -315,7 +315,7 @@ with the UCS fonts to fill the 2800-28FF range completely. (uniform
|
||||
scaling is possible to adapt it to any cell size). He also contributed
|
||||
a free syriac font, whose glyphs (about half of them) are borrowed
|
||||
from the "Carlo Ator" font freely downloadable from
|
||||
<http://www.aacf.asso.fr/>. Vyacheslav also filled in a few missing
|
||||
<https://www.aacf.asso.fr/>. Vyacheslav also filled in a few missing
|
||||
spots in the U+2000-U+27FF area, e.g. the box drawing section, sets of
|
||||
subscript and superscript digits and capital Roman numbers.
|
||||
|
||||
@ -327,12 +327,12 @@ subscript and superscript digits and capital Roman numbers.
|
||||
* M.S. Sridhar <mssridhar AT vsnl.com>
|
||||
|
||||
M/S Cyberscape Multimedia Limited, Mumbai, developers of Akruti
|
||||
Software for Indian Languages (http://www.akruti.com/), have released
|
||||
Software for Indian Languages (https://www.akruti.com/), have released
|
||||
a set of TTF fonts for nine Indian scripts (Devanagari, Gujarati,
|
||||
Telugu, Tamil, Malayalam, Kannada, Bengali, Oriya, and Gurumukhi)
|
||||
under the GNU General Public License (GPL). You can download the fonts
|
||||
from the Free Software Foundation of India WWW site
|
||||
(http://www.gnu.org.in/akruti-fonts/) or from the Akruti website.
|
||||
(https://www.gnu.org.in/akruti-fonts/) or from the Akruti website.
|
||||
|
||||
For any further information or assistance regarding these fonts,
|
||||
please contact mssridhar AT vsnl.com.
|
||||
@ -352,7 +352,7 @@ please contact mssridhar AT vsnl.com.
|
||||
<nlevitt AT columbia.edu>
|
||||
|
||||
Noah Levitt found out that the Sinhalese fonts available on the site
|
||||
<http://www.metta.lk/fonts/> are released under GNU GPL, or,
|
||||
<https://www.metta.lk/fonts/> are released under GNU GPL, or,
|
||||
precisely, "Public Domain under GNU Licence
|
||||
Produced by DMS
|
||||
Electronics for The Sri Lanka Tipitaka Project" (taken from the font
|
||||
@ -365,7 +365,7 @@ comment), and took the effort of recoding the font to Unicode.
|
||||
|
||||
Dan Chirkov updated the FreeSerif font with the missing Cyrillic
|
||||
glyphs needed for conformance to Unicode 3.2. The effort is part of
|
||||
the Slavjanskij package for Mac OS X,
|
||||
the Slavjanskij package for Mac OS X,
|
||||
<https://www.versiontracker.com/dyn/moreinfo/macosx/18680>.
|
||||
|
||||
Cyrillic (U+0400-U+04FF)
|
||||
@ -404,7 +404,7 @@ to reflect the revised edition Rachana_04.
|
||||
|
||||
Bengali (U+0980-U+09FF)
|
||||
|
||||
Solaiman Karim has developed several OpenType Bangla fonts and
|
||||
Solaiman Karim has developed several OpenType Bangla fonts and
|
||||
released them under GNU GPL on <https://www.ekushey.org>.
|
||||
|
||||
|
||||
@ -443,7 +443,7 @@ Sans" font belongs to sans serif style and is actually a compilation
|
||||
Sans" font belongs to sans serif style and is actually a compilation
|
||||
of already released Indic fonts (Gargi, Padma, Mukti, Utkal, Akruti
|
||||
and ThendralUni). Both fonts are based on Unicode standard. You can
|
||||
download the font files (released under GNU/GPL License) from
|
||||
download the font files (released under GNU/GPL License) from
|
||||
https://www.gnowledge.org/Gnoware/localization/font.htm
|
||||
|
||||
|
||||
@ -453,7 +453,7 @@ http://www.gnowledge.org/Gnoware/localization/font.htm
|
||||
|
||||
Dr. Kulbir Singh Thind designed a set of Gurmukhi Unicode fonts,
|
||||
AnmolUni and AnmolUni-Bold, which are available under the terms of GNU
|
||||
Generel Public Licens from the Punjabu Computing Resource Center,
|
||||
Generel Public Licens from the Punjabu Computing Resource Center,
|
||||
https://guca.sourceforge.net/typography/fonts/anmoluni/.
|
||||
|
||||
|
||||
@ -463,7 +463,7 @@ http://guca.sourceforge.net/typography/fonts/anmoluni/.
|
||||
|
||||
Starting in mid-1990s, Gia Shervashidze designed many
|
||||
Unicode-compliant Georgian fonts: Times New Roman Georgian, Arial
|
||||
Georgian, Courier New Georgian. His work on Georgian localization can
|
||||
Georgian, Courier New Georgian. His work on Georgian localization can
|
||||
be reached at https://www.gia.ge/.
|
||||
|
||||
|
||||
|
@ -500,7 +500,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
* FreeSerif.sfd:
|
||||
|
||||
Made Coptic to comply better with
|
||||
http://www.wazu.jp/gallery/Test_Coptic.html
|
||||
https://www.wazu.jp/gallery/Test_Coptic.html
|
||||
Made a flourish at foot of letters with long diagonal.
|
||||
|
||||
More tweeks to Coptic; put in a mark lookup table.
|
||||
@ -560,7 +560,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
Added Glagolitic "round type" font (Croation capitols only) from the
|
||||
collection of Croatian fonts for LaTeX by Darko Zubrinić
|
||||
ftp://ftp.dante.de/tex-archive/languages/croatian/
|
||||
http://www.tug.org/TUGboat/Articles/tb17-1/tb50zubr.pdf
|
||||
https://www.tug.org/TUGboat/Articles/tb17-1/tb50zubr.pdf
|
||||
|
||||
Several letters are missing besides the small letters.
|
||||
|
||||
@ -659,7 +659,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
|
||||
Added 5 Armenian ligatures to U+FB13 – FB17, and made corresponding
|
||||
'liga' lookup. Found there one ligature u+0587 that according to
|
||||
http://en.wikipedia.org/wiki/Armenian_alphabet
|
||||
https://en.wikipedia.org/wiki/Armenian_alphabet
|
||||
|
||||
"in new orthography the և character is not a typographical ligature anymore, and must never be treated as such. It is a distinct letter and has its place in the new alphabetic sequence."
|
||||
So moved this out of the 'liga' lookup and into a new 'hlig' lookup.
|
||||
@ -683,7 +683,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
* FreeSerif.sfd:
|
||||
|
||||
WAZU says
|
||||
http://www.wazu.jp/gallery/Fonts_Hanunoo.html
|
||||
https://www.wazu.jp/gallery/Fonts_Hanunoo.html
|
||||
|
||||
MPH 2B Damase doesn't support the consonant-vowel ligatures necessary
|
||||
to render Buhid writing.
|
||||
@ -693,7 +693,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
don't know why.
|
||||
|
||||
Made page to match the example of the combining forms at
|
||||
http://www.omniglot.com/writing/hanunoo.htm
|
||||
https://www.omniglot.com/writing/hanunoo.htm
|
||||
|
||||
2008-10-24 Stevan_White
|
||||
* FreeSerif.sfd:
|
||||
@ -704,7 +704,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
|
||||
Tweeked combining marks for Vietnamese. Made to satisfy
|
||||
WAZU JAPAN Comprehensive Unicode Test Page for Vietnamese
|
||||
http://www.wazu.jp/gallery/Test_Vietnamese.html
|
||||
https://www.wazu.jp/gallery/Test_Vietnamese.html
|
||||
Could still use some tweeking...
|
||||
|
||||
* FreeSerif.sfd:
|
||||
@ -1011,7 +1011,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
|
||||
Replaced Malayalam range with that from Rachana_04 found on
|
||||
Swathanthra Malayalam Computing project page
|
||||
http://savannah.nongnu.org/projects/smc/
|
||||
https://savannah.nongnu.org/projects/smc/
|
||||
Besides scaling and converting to cubic, performed much clean-up of
|
||||
glyphs, added an r2 character, and re-named a bunch of characters.
|
||||
|
||||
@ -1769,7 +1769,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
|
||||
Gurmukhi: filled range in Serif, taking glyphs from the original
|
||||
Punjabi font by Hardip Singh Pannu
|
||||
http://members.aol.com/hspannu/punjabi.html (file pb_win95.exe)
|
||||
https://members.aol.com/hspannu/punjabi.html (file pb_win95.exe)
|
||||
|
||||
2008-05-12 Steve White
|
||||
* FreeSans.sfd, FreeSerifBold.sfd, FreeSerifBoldItalic.sfd:
|
||||
@ -1946,7 +1946,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
Adjusted heights of extensible brackets
|
||||
|
||||
Fixed problems with extensible brackets, thanks to Markus Kuhn's page
|
||||
http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-demo.txt
|
||||
https://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-demo.txt
|
||||
|
||||
* ranges.py:
|
||||
|
||||
@ -2036,13 +2036,13 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
|
||||
Added Hanunóo script, with characters based on those in
|
||||
font MPH2BDamase, on request from the maintainer of that font,
|
||||
http://packages.debian.org/sid/ttf-mph-2b-damase
|
||||
https://packages.debian.org/sid/ttf-mph-2b-damase
|
||||
|
||||
Glyphs are simple vector strokes. Could be a little more uniform.
|
||||
|
||||
Added Buginese script "Lontara", with characters based on those in
|
||||
font MPH2BDamase, on request from the maintainer of that font,
|
||||
http://packages.debian.org/sid/ttf-mph-2b-damase
|
||||
https://packages.debian.org/sid/ttf-mph-2b-damase
|
||||
|
||||
Note the glyphs are pretty rough, clearly a digitization of handwriting.
|
||||
I just cleaned them up, and corrected discrepancies with Unicode,
|
||||
@ -2618,7 +2618,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
Adjusted and added some enclosing diacritics 20DD - 20E0
|
||||
In response to Debian bug #472566
|
||||
ttf-freefont: U+20DD COMBINING ENCOLSING CIRCLE doesn't combine
|
||||
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=472566
|
||||
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=472566
|
||||
|
||||
2008-03-26 Steve White
|
||||
* FreeSerif.sfd:
|
||||
@ -2725,7 +2725,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
renamed it to uFFFF, re-linked others by hand
|
||||
|
||||
commaaccent
|
||||
http://diacritics.typo.cz/index.php?id=9
|
||||
https://diacritics.typo.cz/index.php?id=9
|
||||
should be u+0326 but wasn't linked to anything
|
||||
|
||||
* FreeSansBold.sfd:
|
||||
@ -3603,15 +3603,15 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
|
||||
* sfd/FreeSans.sfd - added U+0278, U+03D5, U+2248. Corrected
|
||||
U+2071, U+222E, U+2242, U+2243 in response to bug reports
|
||||
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276118
|
||||
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276120
|
||||
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276118
|
||||
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276120
|
||||
|
||||
* sfd/FreeMono.sfd - added U+2227, U+2228, U+2262. Corrected
|
||||
U+2299-229D in response to bug report
|
||||
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276121
|
||||
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=276121
|
||||
|
||||
* sfd/FreeMonoBold.sfd - added U+2010, U+2012 in response to bug
|
||||
report http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=289032
|
||||
report https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=289032
|
||||
Swapped U+03C6 (Greek small letter phi) and U+03D5 (Greek phi
|
||||
symbol) in order to conform to Unicode standard. Simplified glyph
|
||||
shapes in ASCII range. Started adding "above" and "below" anchors.
|
||||
@ -4036,7 +4036,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
2003-03-18 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
|
||||
|
||||
* sfd/FreeSans.sfd - Added Sinhala glyphs from the Tipitaka
|
||||
project <http://www.metta.lk>, recoded to Unicode by Noah Levitt.
|
||||
project <https://www.metta.lk>, recoded to Unicode by Noah Levitt.
|
||||
|
||||
2003-02-19 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
|
||||
|
||||
@ -4312,7 +4312,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
Beyene, Prof. Dr. Manfred Kudlek, Olaf Kummer, and Jochen
|
||||
Metzinger) using Szabo's TeXtrace and retouched using
|
||||
PfaEdit. Ethiopian metafonts are released under GNU GPL,
|
||||
<http://www.informatik.uni-hamburg.de/TGI/mitarbeiter/wimis/kummer/ethiop_eng.html>.
|
||||
<https://www.informatik.uni-hamburg.de/TGI/mitarbeiter/wimis/kummer/ethiop_eng.html>.
|
||||
|
||||
* sfd/FreeMonoBold.sfd - Added 40 characters, mostly in the Latin
|
||||
Extended-B and IPA Extensions areas.
|
||||
@ -4359,7 +4359,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
|
||||
* sfd/FreeMono.sfd - Added more or less complete Armenian
|
||||
area. The glyphs are a tidied-up version based on the Armenian
|
||||
Courier on the <http://www.cilicia.com/armo8.html>. Now we have
|
||||
Courier on the <https://www.cilicia.com/armo8.html>. Now we have
|
||||
1673 characters.
|
||||
|
||||
2002-03-28 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
|
||||
@ -4432,7 +4432,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
|
||||
* sfd/FreeSerif.sfd - Anshuman Pandey has only converted Gurmukhi
|
||||
from TrueType to Metafont; the original author of Gurkmukhi font
|
||||
is Hardip Singh Pannu <http://members.aol.com/hspannu/punjabi.html>.
|
||||
is Hardip Singh Pannu <https://members.aol.com/hspannu/punjabi.html>.
|
||||
Got the permission from him to include the Gurmukhi glyph set.
|
||||
|
||||
2002-03-08 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
|
||||
@ -4483,7 +4483,7 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
* ChangeLog file created
|
||||
|
||||
* sfd/FreeSerif.sfd - Added some Telugu glyphs to page 0x0C,
|
||||
courtesy Prasad A. Chodavarapu <http://chaitanya.bhaavana.net/fonts/>
|
||||
courtesy Prasad A. Chodavarapu <https://chaitanya.bhaavana.net/fonts/>
|
||||
|
||||
* sfd/FreeSerif.sfd - Added some glyphs to the Miscellaneous
|
||||
Symbols page (0x26).
|
||||
@ -4517,9 +4517,9 @@ $Id: ChangeLog,v 1.254 2009/01/04 16:12:59 Stevan_White Exp $
|
||||
* tools/CheckConformance.pl created - a Perl script for checking
|
||||
conformance of a font file with a given coded character set
|
||||
|
||||
* homepage <http://www.freesoftware.fsf.org/freefont/> created
|
||||
* homepage <https://www.freesoftware.fsf.org/freefont/> created
|
||||
|
||||
2002-02-19 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
|
||||
|
||||
* freefont (Free UCS Scalable Fonts) project approved on
|
||||
savannah.gnu.org: <http://savannah.gnu.org/projects/freefont/>
|
||||
savannah.gnu.org: <https://savannah.gnu.org/projects/freefont/>
|
||||
|
@ -9,14 +9,14 @@ UNIX/GNU/Linux/BSD Systems
|
||||
--------------------------
|
||||
|
||||
FreeFont works with any system using the free font rasterizer FreeType
|
||||
<http://www.freetype.org/>.
|
||||
<https://www.freetype.org/>.
|
||||
|
||||
* Debian GNU/Linux
|
||||
|
||||
Users of Debian GNU/Linux system will probably want to use the Debian package,
|
||||
available from the Debian site,
|
||||
|
||||
<http://packages.debian.org/unstable/x11/ttf-freefont.html>,
|
||||
<https://packages.debian.org/unstable/x11/ttf-freefont.html>,
|
||||
|
||||
or any of its mirrors.
|
||||
|
||||
|
@ -19,10 +19,10 @@ FreeFont covers the following character sets
|
||||
|
||||
* ISO 8859 parts 1-15
|
||||
* CEN MES-3 European Unicode Subset
|
||||
http://www.evertype.com/standards/iso10646/pdf/cwa13873.pdf
|
||||
https://www.evertype.com/standards/iso10646/pdf/cwa13873.pdf
|
||||
* IBM/Microsoft code pages 437, 850, 852, 1250, 1252 and more
|
||||
* Microsoft/Adobe Windows Glyph List 4 (WGL4)
|
||||
http://www.microsoft.com/typography/otspec/WGL4.htm
|
||||
https://www.microsoft.com/typography/otspec/WGL4.htm
|
||||
* KOI8-R and KOI8-RU
|
||||
* DEC VT100 graphics symbols
|
||||
* International Phonetic Alphabet
|
||||
@ -36,7 +36,7 @@ Editing
|
||||
-------
|
||||
|
||||
The free outline font editor, George Williams's FontForge
|
||||
<http://fontforge.sourceforge.net/> is used for editing the fonts.
|
||||
<https://fontforge.sourceforge.net/> is used for editing the fonts.
|
||||
|
||||
Design Issues
|
||||
-------------
|
||||
@ -104,5 +104,5 @@ in Linux still don't support them.
|
||||
Primoz Peterlin, <primoz.peterlin@biofiz.mf.uni-lj.si>
|
||||
Steve White <stevan.white@googlemail.com>
|
||||
|
||||
Free UCS scalable fonts: http://savannah.gnu.org/projects/freefont/
|
||||
Free UCS scalable fonts: https://savannah.gnu.org/projects/freefont/
|
||||
$Id: README,v 1.6 2008/12/25 12:51:41 Stevan_White Exp $
|
||||
|
@ -32,7 +32,7 @@
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// Additionally, you can't remove the original TCExam logo, copyrights statements
|
||||
// and links to Tecnick.com and TCExam websites.
|
||||
@ -45,7 +45,7 @@
|
||||
* @package com.tecnick.tcpdf
|
||||
* @author Nicola Asuni
|
||||
* @copyright Copyright © 2004-2009, Nicola Asuni - Tecnick.com S.r.l. - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License
|
||||
* @license https://www.gnu.org/copyleft/gpl.html GNU General Public License
|
||||
* @link www.tecnick.com
|
||||
* @since 2008-12-07
|
||||
*/
|
||||
|
@ -4,7 +4,7 @@
|
||||
// Begin : 2004-12-31
|
||||
// Last Update : 2010-03-19
|
||||
// Version : 1.2.006
|
||||
// License : GNU LGPL (http://www.gnu.org/copyleft/lesser.html)
|
||||
// License : GNU LGPL (https://www.gnu.org/copyleft/lesser.html)
|
||||
// ----------------------------------------------------------------------------
|
||||
// Copyright (C) 2008 Nicola Asuni - Tecnick.com S.r.l.
|
||||
//
|
||||
@ -19,7 +19,7 @@
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// See LICENSE.TXT file for more information.
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -43,8 +43,8 @@
|
||||
* @author Nicola Asuni, Olivier Plathey, Steven Wittens
|
||||
* @copyright 2004-2008 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @package com.tecnick.tcpdf
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -3,8 +3,8 @@ font metrics from the font files and build the required tables using
|
||||
the utility TTF2UFM.
|
||||
|
||||
TTF2UFM is a modified version of Mark Heath's TTF 2 PT1 converter
|
||||
(http://ttf2pt1.sourceforge.net/) by Steven Wittens <steven@acko.net>
|
||||
(http://www.acko.net/blog/ufpdf). That version has been further
|
||||
(https://ttf2pt1.sourceforge.net/) by Steven Wittens <steven@acko.net>
|
||||
(https://www.acko.net/blog/ufpdf). That version has been further
|
||||
modified by Ulrich Telle for use with the wxWidgets component
|
||||
wxPdfDocument.
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
/* Mohammad Ali Golkar
|
||||
m.a.golkar@gmail.com
|
||||
http://www.30minonline.com
|
||||
https://www.30minonline.com
|
||||
LICENSE : GPLv2 */
|
||||
$type='TrueTypeUnicode';
|
||||
$name='ZarBold';
|
||||
|
@ -4,7 +4,7 @@
|
||||
// Begin : 2002-04-09
|
||||
// Last Update : 2010-04-20
|
||||
// Version : 1.0.004
|
||||
// License : GNU LGPL (http://www.gnu.org/copyleft/lesser.html)
|
||||
// License : GNU LGPL (https://www.gnu.org/copyleft/lesser.html)
|
||||
// ----------------------------------------------------------------------------
|
||||
// Copyright (C) 2002-2009 Nicola Asuni - Tecnick.com S.r.l.
|
||||
//
|
||||
@ -19,7 +19,7 @@
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// See LICENSE.TXT file for more information.
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -43,8 +43,8 @@
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @package com.tecnick.tcpdf
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @since 2.9.000 (2008-03-26)
|
||||
*/
|
||||
|
||||
|
@ -4,7 +4,7 @@
|
||||
// Begin : 2010-03-22
|
||||
// Last Update : 2010-03-30
|
||||
// Version : 1.0.003
|
||||
// License : GNU LGPL v.3 (http://www.gnu.org/copyleft/lesser.html)
|
||||
// License : GNU LGPL v.3 (https://www.gnu.org/copyleft/lesser.html)
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
@ -20,7 +20,7 @@
|
||||
// You should have received a copy of the GNU Lesser General Public
|
||||
// License along with this library; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
// or browse http://www.gnu.org/copyleft/lesser.html
|
||||
// or browse https://www.gnu.org/copyleft/lesser.html
|
||||
//
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
@ -43,20 +43,20 @@
|
||||
// "PHP QR Code encoder"
|
||||
// License: GNU-LGPLv3
|
||||
// Copyright (C) 2010 by Dominik Dzienia <deltalab at poczta dot fm>
|
||||
// http://phpqrcode.sourceforge.net/
|
||||
// https://phpqrcode.sourceforge.net/
|
||||
// https://sourceforge.net/projects/phpqrcode/
|
||||
//
|
||||
// The "PHP QR Code encoder" is based on
|
||||
// "C libqrencode library" (ver. 3.1.1)
|
||||
// License: GNU-LGPL 2.1
|
||||
// Copyright (C) 2006-2010 by Kentaro Fukuchi
|
||||
// http://megaui.net/fukuchi/works/qrencode/index.en.html
|
||||
// https://megaui.net/fukuchi/works/qrencode/index.en.html
|
||||
//
|
||||
// Reed-Solomon code encoder is written by Phil Karn, KA9Q.
|
||||
// Copyright (C) 2002-2006 Phil Karn, KA9Q
|
||||
//
|
||||
// QR Code is registered trademark of DENSO WAVE INCORPORATED
|
||||
// http://www.denso-wave.com/qrcode/index-e.html
|
||||
// https://www.denso-wave.com/qrcode/index-e.html
|
||||
// ---------------------------------------------------------
|
||||
//
|
||||
// Author: Nicola Asuni
|
||||
@ -78,15 +78,15 @@
|
||||
* This class supports QR Code model 2, described in JIS (Japanese Industrial Standards) X0510:2004 or ISO/IEC 18004.
|
||||
* Currently the following features are not supported: ECI and FNC1 mode, Micro QR Code, QR Code model 1, Structured mode.
|
||||
*
|
||||
* This class is derived from "PHP QR Code encoder" by Dominik Dzienia (http://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (http://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (http://www.denso-wave.com/qrcode/index-e.html).
|
||||
* This class is derived from "PHP QR Code encoder" by Dominik Dzienia (https://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (https://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (https://www.denso-wave.com/qrcode/index-e.html).
|
||||
* Please read comments on this class source file for full copyright and license information.
|
||||
*
|
||||
* @package com.tecnick.tcpdf
|
||||
* @abstract Class for generating QR-code array for TCPDF.
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @version 1.0.003
|
||||
*/
|
||||
|
||||
@ -293,7 +293,7 @@ if (!class_exists('QRcode', false)) {
|
||||
* This class supports QR Code model 2, described in JIS (Japanese Industrial Standards) X0510:2004 or ISO/IEC 18004.
|
||||
* Currently the following features are not supported: ECI and FNC1 mode, Micro QR Code, QR Code model 1, Structured mode.
|
||||
*
|
||||
* This class is derived from "PHP QR Code encoder" by Dominik Dzienia (http://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (http://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (http://www.denso-wave.com/qrcode/index-e.html).
|
||||
* This class is derived from "PHP QR Code encoder" by Dominik Dzienia (https://phpqrcode.sourceforge.net/) based on "libqrencode C library 3.1.1." by Kentaro Fukuchi (https://megaui.net/fukuchi/works/qrencode/index.en.html), contains Reed-Solomon code written by Phil Karn, KA9Q. QR Code is registered trademark of DENSO WAVE INCORPORATED (https://www.denso-wave.com/qrcode/index-e.html).
|
||||
* Please read comments on this class source file for full copyright and license information.
|
||||
*
|
||||
* @name QRcode
|
||||
@ -301,8 +301,8 @@ if (!class_exists('QRcode', false)) {
|
||||
* @abstract Class for generating QR-code array for TCPDF.
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @version 1.0.002
|
||||
*/
|
||||
class QRcode {
|
||||
|
@ -3,9 +3,9 @@
|
||||
// File name : tcpdf.php
|
||||
// Begin : 2002-08-03
|
||||
// Last Update : 2010-05-06
|
||||
// Author : Nicola Asuni - info@tecnick.com - http://www.tcpdf.org
|
||||
// Author : Nicola Asuni - info@tecnick.com - https://www.tcpdf.org
|
||||
// Version : 5.0.002
|
||||
// License : GNU LGPL (http://www.gnu.org/copyleft/lesser.html)
|
||||
// License : GNU LGPL (https://www.gnu.org/copyleft/lesser.html)
|
||||
// ----------------------------------------------------------------------------
|
||||
// Copyright (C) 2002-2010 Nicola Asuni - Tecnick.com S.r.l.
|
||||
//
|
||||
@ -20,7 +20,7 @@
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// See LICENSE.TXT file for more information.
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -30,7 +30,7 @@
|
||||
//
|
||||
// NOTE:
|
||||
// This class was originally derived in 2002 from the Public
|
||||
// Domain FPDF class by Olivier Plathey (http://www.fpdf.org),
|
||||
// Domain FPDF class by Olivier Plathey (https://www.fpdf.org),
|
||||
// but now is almost entirely rewritten.
|
||||
//
|
||||
// Main features:
|
||||
@ -40,7 +40,7 @@
|
||||
// * TrueTypeUnicode, OpenTypeUnicode, TrueType, OpenType, Type1 and CID-0 fonts;
|
||||
// * methods to publish some XHTML code, Javascript and Forms;
|
||||
// * images, graphic (geometric figures) and transformation methods;
|
||||
// * supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (http://www.imagemagick.org/www/formats.html)
|
||||
// * supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (https://www.imagemagick.org/www/formats.html)
|
||||
// * 1D and 2D barcodes: CODE 39, ANSI MH10.8M-1983, USD-3, 3 of 9, CODE 93, USS-93, Standard 2 of 5, Interleaved 2 of 5, CODE 128 A/B/C, 2 and 5 Digits UPC-Based Extention, EAN 8, EAN 13, UPC-A, UPC-E, MSI, POSTNET, PLANET, RMS4CC (Royal Mail 4-state Customer Code), CBC (Customer Bar Code), KIX (Klant index - Customer index), Intelligent Mail Barcode, Onecode, USPS-B-3200, CODABAR, CODE 11, PHARMACODE, PHARMACODE TWO-TRACKS, QR-Code;
|
||||
// * Grayscale, RGB, CMYK, Spot Colors and Transparencies;
|
||||
// * automatic page header and footer management;
|
||||
@ -59,9 +59,9 @@
|
||||
// -----------------------------------------------------------
|
||||
// THANKS TO:
|
||||
//
|
||||
// Olivier Plathey (http://www.fpdf.org) for original FPDF.
|
||||
// Olivier Plathey (https://www.fpdf.org) for original FPDF.
|
||||
// Efthimios Mavrogeorgiadis (emavro@yahoo.com) for suggestions on RTL language support.
|
||||
// Klemen Vodopivec (http://www.fpdf.de/downloads/addons/37/) for Encryption algorithm.
|
||||
// Klemen Vodopivec (https://www.fpdf.de/downloads/addons/37/) for Encryption algorithm.
|
||||
// Warren Sherliker (wsherliker@gmail.com) for better image handling.
|
||||
// dullus for text Justification.
|
||||
// Bob Vincent (pillarsdotnet@users.sourceforge.net) for <li> value attribute.
|
||||
@ -90,7 +90,7 @@
|
||||
|
||||
/**
|
||||
* This is a PHP class for generating PDF documents without requiring external extensions.<br>
|
||||
* TCPDF project (http://www.tcpdf.org) was originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br>
|
||||
* TCPDF project (https://www.tcpdf.org) was originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (https://www.fpdf.org), but now is almost entirely rewritten.<br>
|
||||
* <h3>TCPDF main features are:</h3>
|
||||
* <ul>
|
||||
* <li>no external libraries are required for the basic functions;</li>
|
||||
@ -99,7 +99,7 @@
|
||||
* <li>TrueTypeUnicode, OpenTypeUnicode, TrueType, OpenType, Type1 and CID-0 fonts;</li>
|
||||
* <li>methods to publish some XHTML code, Javascript and Forms;</li>
|
||||
* <li>images, graphic (geometric figures) and transformation methods;
|
||||
* <li>supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (http://www.imagemagick.org/www/formats.html)</li>
|
||||
* <li>supports JPEG, PNG and SVG images natively, all images supported by GD (GD, GD2, GD2PART, GIF, JPEG, PNG, BMP, XBM, XPM) and all images supported via ImagMagick (https://www.imagemagick.org/www/formats.html)</li>
|
||||
* <li>1D and 2D barcodes: CODE 39, ANSI MH10.8M-1983, USD-3, 3 of 9, CODE 93, USS-93, Standard 2 of 5, Interleaved 2 of 5, CODE 128 A/B/C, 2 and 5 Digits UPC-Based Extention, EAN 8, EAN 13, UPC-A, UPC-E, MSI, POSTNET, PLANET, RMS4CC (Royal Mail 4-state Customer Code), CBC (Customer Bar Code), KIX (Klant index - Customer index), Intelligent Mail Barcode, Onecode, USPS-B-3200, CODABAR, CODE 11, PHARMACODE, PHARMACODE TWO-TRACKS, QR-Code;</li>
|
||||
* <li>Grayscale, RGB, CMYK, Spot Colors and Transparencies;</li>
|
||||
* <li>automatic page header and footer management;</li>
|
||||
@ -120,8 +120,8 @@
|
||||
* @abstract Class for generating PDF files on-the-fly without requiring external extensions.
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2002-2010 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @version 5.0.002
|
||||
*/
|
||||
|
||||
@ -146,17 +146,17 @@ if (!class_exists('TCPDF', false)) {
|
||||
/**
|
||||
* define default PDF document producer
|
||||
*/
|
||||
define('PDF_PRODUCER', 'TCPDF 5.0.002 (http://www.tcpdf.org)');
|
||||
define('PDF_PRODUCER', 'TCPDF 5.0.002 (https://www.tcpdf.org)');
|
||||
|
||||
/**
|
||||
* This is a PHP class for generating PDF documents without requiring external extensions.<br>
|
||||
* TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br>
|
||||
* TCPDF project (https://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (https://www.fpdf.org), but now is almost entirely rewritten.<br>
|
||||
* @name TCPDF
|
||||
* @package com.tecnick.tcpdf
|
||||
* @version 5.0.002
|
||||
* @author Nicola Asuni - info@tecnick.com
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
*/
|
||||
class TCPDF {
|
||||
|
||||
@ -8260,7 +8260,7 @@ if (!class_exists('TCPDF', false)) {
|
||||
/**
|
||||
* Converts UTF-8 strings to codepoints array.<br>
|
||||
* Invalid byte sequences will be replaced with 0xFFFD (replacement character)<br>
|
||||
* Based on: http://www.faqs.org/rfcs/rfc3629.html
|
||||
* Based on: https://www.faqs.org/rfcs/rfc3629.html
|
||||
* <pre>
|
||||
* Char. number range | UTF-8 octet sequence
|
||||
* (hexadecimal) | (binary)
|
||||
@ -8451,7 +8451,7 @@ if (!class_exists('TCPDF', false)) {
|
||||
|
||||
/**
|
||||
* Converts array of UTF-8 characters to UTF16-BE string.<br>
|
||||
* Based on: http://www.faqs.org/rfcs/rfc2781.html
|
||||
* Based on: https://www.faqs.org/rfcs/rfc2781.html
|
||||
* <pre>
|
||||
* Encoding UTF-16:
|
||||
*
|
||||
@ -10015,7 +10015,7 @@ if (!class_exists('TCPDF', false)) {
|
||||
// BIDIRECTIONAL TEXT SECTION --------------------------
|
||||
|
||||
/**
|
||||
* Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
|
||||
* Reverse the RLT substrings using the Bidirectional Algorithm (https://unicode.org/reports/tr9/).
|
||||
* @param string $str string to manipulate.
|
||||
* @param bool $setbom if true set the Byte Order Mark (BOM = 0xFEFF)
|
||||
* @param bool $forcertl if true forces RTL text direction
|
||||
@ -10029,7 +10029,7 @@ if (!class_exists('TCPDF', false)) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the RLT substrings array using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
|
||||
* Reverse the RLT substrings array using the Bidirectional Algorithm (https://unicode.org/reports/tr9/).
|
||||
* @param array $arr array of unicode values.
|
||||
* @param string $str string to manipulate (or empty value).
|
||||
* @param bool $setbom if true set the Byte Order Mark (BOM = 0xFEFF)
|
||||
@ -10044,7 +10044,7 @@ if (!class_exists('TCPDF', false)) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the RLT substrings using the Bidirectional Algorithm (http://unicode.org/reports/tr9/).
|
||||
* Reverse the RLT substrings using the Bidirectional Algorithm (https://unicode.org/reports/tr9/).
|
||||
* @param array $ta array of characters composing the string.
|
||||
* @param string $str string to process
|
||||
* @param bool $forcertl if 'R' forces RTL, if 'L' forces LTR
|
||||
@ -18129,7 +18129,7 @@ if (!class_exists('TCPDF', false)) {
|
||||
|
||||
/**
|
||||
* Returns an array of hyphenation patterns.
|
||||
* @param string $file TEX file containing hypenation patterns. TEX pattrns can be downloaded from http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
|
||||
* @param string $file TEX file containing hypenation patterns. TEX pattrns can be downloaded from https://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
|
||||
* @return array of hyphenation patterns
|
||||
* @author Nicola Asuni
|
||||
* @since 4.9.012 (2010-04-12)
|
||||
@ -18137,7 +18137,7 @@ if (!class_exists('TCPDF', false)) {
|
||||
*/
|
||||
public function getHyphenPatternsFromTEX($file) {
|
||||
// TEX patterns are available at:
|
||||
// http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
|
||||
// https://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
|
||||
$data = file_get_contents($file);
|
||||
$patterns = array();
|
||||
// remove comments
|
||||
@ -18163,7 +18163,7 @@ if (!class_exists('TCPDF', false)) {
|
||||
/**
|
||||
* Returns text with soft hyphens.
|
||||
* @param string $text text to process
|
||||
* @param mixed $patterns Array of hypenation patterns or a TEX file containing hypenation patterns. TEX patterns can be downloaded from http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
|
||||
* @param mixed $patterns Array of hypenation patterns or a TEX file containing hypenation patterns. TEX patterns can be downloaded from https://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/
|
||||
* @param array $dictionary Array of words to be returned without applying the hyphenation algoritm.
|
||||
* @param int $leftmin Minimum number of character to leave on the left of the word without applying the hyphens.
|
||||
* @param int $rightmin Minimum number of character to leave on the right of the word without applying the hyphens.
|
||||
|
@ -3,7 +3,7 @@
|
||||
// File name : unicode_data.php
|
||||
// Begin : 2008-01-01
|
||||
// Last Update : 2009-08-17
|
||||
// License : GNU LGPL (http://www.gnu.org/copyleft/lesser.html)
|
||||
// License : GNU LGPL (https://www.gnu.org/copyleft/lesser.html)
|
||||
// ----------------------------------------------------------------------------
|
||||
// Copyright (C) 2002-2009 Nicola Asuni - Tecnick.com S.r.l.
|
||||
//
|
||||
@ -18,7 +18,7 @@
|
||||
// GNU Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
//
|
||||
// See LICENSE.TXT file for more information.
|
||||
// ----------------------------------------------------------------------------
|
||||
@ -45,8 +45,8 @@
|
||||
* @author Nicola Asuni
|
||||
* @copyright 2004-2009 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
|
||||
* @package com.tecnick.tcpdf
|
||||
* @link http://www.tcpdf.org
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @link https://www.tcpdf.org
|
||||
* @license https://www.gnu.org/copyleft/lesser.html LGPL
|
||||
* @since 2.1.000 (2008-01-08)
|
||||
*/
|
||||
|
||||
@ -98,7 +98,7 @@ define('K_RE_PATTERN_RTL', "/(
|
||||
|
||||
/*
|
||||
* Pattern to test Arabic strings using regular expressions.
|
||||
* source: http://www.w3.org/International/questions/qa-forms-utf-8
|
||||
* source: https://www.w3.org/International/questions/qa-forms-utf-8
|
||||
*/
|
||||
define("K_RE_PATTERN_ARABIC", "/(
|
||||
\xD8[\x80-\x83\x8B\x8D\x9B\x9E\x9F\xA1-\xBA] # AL
|
||||
@ -17852,7 +17852,7 @@ $unicode = array(
|
||||
/**
|
||||
* Mirror unicode characters.
|
||||
* For information on bidi mirroring, see UAX #9: Bidirectional Algorithm,
|
||||
* at http://www.unicode.org/unicode/reports/tr9/
|
||||
* at https://www.unicode.org/unicode/reports/tr9/
|
||||
*/
|
||||
global $unicode_mirror;
|
||||
$unicode_mirror = array (
|
||||
|
@ -18,7 +18,7 @@ if ($generate) {
|
||||
ob_start();
|
||||
} else {
|
||||
?>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/../htdocs4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/../htdocs4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="te../htdocs; charset=UTF-8" >
|
||||
@ -29,8 +29,8 @@ if ($generate) {
|
||||
}
|
||||
|
||||
$url = dirname($_SERVER['REQUEST_URI']).'/res/exemple09.png.php?px=5&py=20';
|
||||
if (substr($url, 0, 7)!=='http://') {
|
||||
$url = 'http://'.$_SERVER['HTTP_HOST'].$url;
|
||||
if (substr($url, 0, 7)!=='https://') {
|
||||
$url = 'https://'.$_SERVER['HTTP_HOST'].$url;
|
||||
}
|
||||
?>
|
||||
<br>
|
||||
|
@ -26,7 +26,7 @@
|
||||
<table class="page_footer">
|
||||
<tr>
|
||||
<td style="width: 33%; text-align: left;">
|
||||
http://html2pdf.fr/
|
||||
https://html2pdf.fr/
|
||||
</td>
|
||||
<td style="width: 34%; text-align: center">
|
||||
page [[page_cu]]/[[page_nb]]
|
||||
@ -49,13 +49,13 @@
|
||||
</div>
|
||||
<br><br><br><br><br>
|
||||
<div class="note">
|
||||
HTML2PDF est un convertisseur de code HTML vers PDF écrit en PHP5, utilisant la librairie <a href="http://tcpdf.org">TCPDF.</a><br>
|
||||
HTML2PDF est un convertisseur de code HTML vers PDF écrit en PHP5, utilisant la librairie <a href="https://tcpdf.org">TCPDF.</a><br>
|
||||
<br>
|
||||
Il permet la conversion d'HTML et d'xHTML valide au format PDF, et est distribué sous licence LGPL.<br>
|
||||
<br>
|
||||
Cette librairie a été conçue pour gérer principalement les TABLE imbriquées afin de générer des factures, bon de livraison, et autres documents officiels.<br>
|
||||
<br>
|
||||
Vous pouvez télécharger la dernière version de HTML2PDF ici : <a href="http://html2pdf.fr/">http://html2pdf.fr/</a>.<br>
|
||||
Vous pouvez télécharger la dernière version de HTML2PDF ici : <a href="https://html2pdf.fr/">https://html2pdf.fr/</a>.<br>
|
||||
</div>
|
||||
</page>
|
||||
<page pageset="old">
|
||||
@ -71,7 +71,7 @@
|
||||
</div>
|
||||
<br>
|
||||
<ul class="main">
|
||||
<li><a> : Ceci est un lien vers <a href="http://html2pdf.fr">le site de HTML2PDF</a></li>
|
||||
<li><a> : Ceci est un lien vers <a href="https://html2pdf.fr">le site de HTML2PDF</a></li>
|
||||
<li><b>, <strong> : Ecrire en <b>gras</b>.</li>
|
||||
<li><big> : Ecrire plus <big>gros</big>.</li>
|
||||
<li><br> : Permet d'aller à la ligne</li>
|
||||
@ -236,6 +236,6 @@
|
||||
<li>Elle ne permet généralement pas la conversion directe d'une page HTML en PDF, ni la conversion du résultat d'un WYSIWYG en PDF.</li>
|
||||
<li>Cette librairie est là pour faciliter la génération de documents PDF, pas pour convertir n'importe quelle page HTML.</li>
|
||||
<li>Les formulaires ne marchent pas avec tous les viewers PDFs...</li>
|
||||
<li>Lisez bien le wiki : <a href="http://wiki.spipu.net/doku.php?id=html2pdf:Accueil">http://wiki.spipu.net/doku.php?id=html2pdf:Accueil</a>.</li>
|
||||
<li>Lisez bien le wiki : <a href="https://wiki.spipu.net/doku.php?id=html2pdf:Accueil">https://wiki.spipu.net/doku.php?id=html2pdf:Accueil</a>.</li>
|
||||
</ul>
|
||||
</page>
|
@ -14,7 +14,7 @@
|
||||
Retours à la ligne autorisés : <br>, <br >, <br/>, <br /> <br />
|
||||
<br>
|
||||
Barre horizontale <hr><hr style="height: 4mm; background: #AA5500; border: solid 1mm #0055AA">
|
||||
Exemple de lien : <a href="http://html2pdf.fr/" >le site HTML2PDF</a><br>
|
||||
Exemple de lien : <a href="https://html2pdf.fr/" >le site HTML2PDF</a><br>
|
||||
<br>
|
||||
Image : <img src="./res/logo.gif" alt="Logo" width=150 /><br>
|
||||
<br>
|
||||
|
@ -109,12 +109,12 @@ div.main a:hover
|
||||
<div style="position: absolute; top: 5mm; left: 5mm; font-size:12pt;text-align: left;">Spipu.net</div><br>
|
||||
<div style="position: absolute; bottom: 5mm; right: 5mm; font-size:12pt; text-align: right; ">(c)2011 Spipu</div>
|
||||
<br><br><br>
|
||||
<a href="http://cineblog.spipu.net/" >Cineblog by Spipu </a><br><br>
|
||||
<a href="http://html2pdf.fr/" >HTML2PDF </a><br><br>
|
||||
<a href="http://lambda.spipu.net/" >Lambda Finder </a><br><br>
|
||||
<a href="http://open.spipu.net/" >Gestion des Opens - Yaronet </a><br><br>
|
||||
<a href="http://perso.spipu.net/" >A propos de moi </a><br><br>
|
||||
<a href="http://prgm.spipu.net/" >Programmes by Spipu </a><br><br>
|
||||
<a href="https://cineblog.spipu.net/" >Cineblog by Spipu </a><br><br>
|
||||
<a href="https://html2pdf.fr/" >HTML2PDF </a><br><br>
|
||||
<a href="https://lambda.spipu.net/" >Lambda Finder </a><br><br>
|
||||
<a href="https://open.spipu.net/" >Gestion des Opens - Yaronet </a><br><br>
|
||||
<a href="https://perso.spipu.net/" >A propos de moi </a><br><br>
|
||||
<a href="https://prgm.spipu.net/" >Programmes by Spipu </a><br><br>
|
||||
<br><br><br>
|
||||
</div>
|
||||
</page>
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
$url = $_SERVER['REQUEST_URI'];
|
||||
if (substr($url, 0, 7)!=='http://') {
|
||||
$url = 'http://'.$_SERVER['HTTP_HOST'];
|
||||
if (substr($url, 0, 7)!=='https://') {
|
||||
$url = 'https://'.$_SERVER['HTTP_HOST'];
|
||||
if (ISSET($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT']!=80) $url.= ':'.$_SERVER['SERVER_PORT'];
|
||||
$url.= $_SERVER['REQUEST_URI'];
|
||||
}
|
||||
|
@ -19,5 +19,5 @@
|
||||
<br>
|
||||
Les balises SVG suivantes sont reconnues : LINE, RECT, CIRCLE, ELLIPSE, PATH, POLYGON, POLYLINE, G<br>
|
||||
<br>
|
||||
Spécifications SVG : <a href="http://www.w3.org/TR/SVG11/expanded-toc.html">http://www.w3.org/TR/SVG11/expanded-toc.html</a>
|
||||
Spécifications SVG : <a href="https://www.w3.org/TR/SVG11/expanded-toc.html">https://www.w3.org/TR/SVG11/expanded-toc.html</a>
|
||||
</page>
|
@ -489,7 +489,7 @@ if (!defined('__CLASS_HTML2PDF__')) {
|
||||
$content = preg_replace('/<qrcode([^>]*)>/isU', '<hr>qrcode : $1<hr>', $content);
|
||||
$content = preg_replace('/<\/qrcode([^>]*)>/isU', '', $content);
|
||||
|
||||
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>'.HTML2PDF_locale::get('vue04').' HTML</title>
|
||||
|
Reference in New Issue
Block a user