Revision 19716,
939 bytes
checked in by Seasoft, 12 years ago
(diff) |
#403(インクルードしているライブラリ群をバージョンアップする)
- FPDF関連 (PHP4について、動作環境無く未確認)
|
Line | |
---|
1 | <?php
|
---|
2 | //
|
---|
3 | // FPDI - Version 1.4
|
---|
4 | //
|
---|
5 | // Copyright 2004-2010 Setasign - Jan Slabon
|
---|
6 | //
|
---|
7 | // Licensed under the Apache License, Version 2.0 (the "License");
|
---|
8 | // you may not use this file except in compliance with the License.
|
---|
9 | // You may obtain a copy of the License at
|
---|
10 | //
|
---|
11 | // http://www.apache.org/licenses/LICENSE-2.0
|
---|
12 | //
|
---|
13 | // Unless required by applicable law or agreed to in writing, software
|
---|
14 | // distributed under the License is distributed on an "AS IS" BASIS,
|
---|
15 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
16 | // See the License for the specific language governing permissions and
|
---|
17 | // limitations under the License.
|
---|
18 | //
|
---|
19 |
|
---|
20 | require_once('FilterASCII85.php');
|
---|
21 |
|
---|
22 | class FilterASCII85_FPDI extends FilterASCII85 {
|
---|
23 |
|
---|
24 | var $fpdi;
|
---|
25 |
|
---|
26 | function FilterASCII85_FPDI(&$fpdi) {
|
---|
27 | $this->fpdi =& $fpdi;
|
---|
28 | }
|
---|
29 |
|
---|
30 | function error($msg) {
|
---|
31 | $this->fpdi->error($msg);
|
---|
32 | }
|
---|
33 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.