upgrade fpdi to version 1.3 with chinese unicode support.

This commit is contained in:
wlx 2009-07-27 04:07:01 +00:00
parent a558faf1ad
commit 7adb8e90ef
2 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@
// limitations under the License. // limitations under the License.
// //
class FPDF_TPL extends FPDF { class FPDF_TPL extends PDF_Unicode {
/** /**
* Array of Tpl-Data * Array of Tpl-Data
* @var array * @var array

View File

@ -20,9 +20,9 @@
define('FPDI_VERSION','1.3'); define('FPDI_VERSION','1.3');
// Check for TCPDF and remap TCPDF to FPDF // Check for TCPDF and remap TCPDF to FPDF
//if (class_exists('TCPDF')) { if (class_exists('TCPDF',false)) {
// require_once('fpdi2tcpdf_bridge.php'); require_once('fpdi2tcpdf_bridge.php');
//} }
require_once('fpdf_tpl.php'); require_once('fpdf_tpl.php');
require_once('fpdi_pdf_parser.php'); require_once('fpdi_pdf_parser.php');