Fix to using most recent development translation set on development demo.
[openemr.git] / library / html2pdf / fpdi / filters / FilterASCII85.php
blob01402ba1dc65a4dccf2b055d125145ea3b0878fc
1 <?php
2 //
3 // FPDI - Version 1.4.2
4 //
5 // Copyright 2004-2011 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
11 // http://www.apache.org/licenses/LICENSE-2.0
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.
20 if (!defined('ORD_z'))
21 define('ORD_z',ord('z'));
22 if (!defined('ORD_exclmark'))
23 define('ORD_exclmark', ord('!'));
24 if (!defined('ORD_u'))
25 define('ORD_u', ord('u'));
26 if (!defined('ORD_tilde'))
27 define('ORD_tilde', ord('~'));
29 if (!class_exists('FilterASCII85', false)) {
31 class FilterASCII85 {
33 function error($msg) {
34 die($msg);
37 function decode($in) {
38 $out = '';
39 $state = 0;
40 $chn = null;
42 $l = strlen($in);
44 for ($k = 0; $k < $l; ++$k) {
45 $ch = ord($in[$k]) & 0xff;
47 if ($ch == ORD_tilde) {
48 break;
50 if (preg_match('/^\s$/',chr($ch))) {
51 continue;
53 if ($ch == ORD_z && $state == 0) {
54 $out .= chr(0) . chr(0) . chr(0) . chr(0);
55 continue;
57 if ($ch < ORD_exclmark || $ch > ORD_u) {
58 return $this->error('Illegal character in ASCII85Decode.');
61 $chn[$state++] = $ch - ORD_exclmark;
63 if ($state == 5) {
64 $state = 0;
65 $r = 0;
66 for ($j = 0; $j < 5; ++$j)
67 $r = $r * 85 + $chn[$j];
68 $out .= chr($r >> 24);
69 $out .= chr($r >> 16);
70 $out .= chr($r >> 8);
71 $out .= chr($r);
74 $r = 0;
76 if ($state == 1)
77 return $this->error('Illegal length in ASCII85Decode.');
78 if ($state == 2) {
79 $r = $chn[0] * 85 * 85 * 85 * 85 + ($chn[1]+1) * 85 * 85 * 85;
80 $out .= chr($r >> 24);
82 else if ($state == 3) {
83 $r = $chn[0] * 85 * 85 * 85 * 85 + $chn[1] * 85 * 85 * 85 + ($chn[2]+1) * 85 * 85;
84 $out .= chr($r >> 24);
85 $out .= chr($r >> 16);
87 else if ($state == 4) {
88 $r = $chn[0] * 85 * 85 * 85 * 85 + $chn[1] * 85 * 85 * 85 + $chn[2] * 85 * 85 + ($chn[3]+1) * 85 ;
89 $out .= chr($r >> 24);
90 $out .= chr($r >> 16);
91 $out .= chr($r >> 8);
94 return $out;
97 function encode($in) {
98 return $this->error("ASCII85 encoding not implemented.");