| @@ -1,252 +1,250 @@ | ||
| 1 | -<?php | |
| 2 | - | |
| 3 | -/* This script prints out the Unicode coverage of all TrueType font files | |
| 4 | - in your font directory. | |
| 5 | - Point your browser to | |
| 6 | - http://your.domain/your_path_to _mpdf/utils/font_coverage.php | |
| 7 | - By default this will examine the folder /ttfonts/ (or the default font | |
| 8 | - directory defined by _MPDF_TTFONTPATH. | |
| 9 | - You can optionally define an alternative folder to examine by setting | |
| 10 | - the variable below (must be a relative path, or filesystem path): | |
| 11 | -*/ | |
| 12 | - | |
| 13 | - | |
| 14 | -$checkdir = ''; | |
| 15 | - | |
| 16 | -////////////////////////////////// | |
| 17 | - | |
| 18 | - | |
| 19 | -set_time_limit(600); | |
| 20 | -ini_set("memory_limit","256M"); | |
| 21 | - | |
| 22 | -//============================================================== | |
| 23 | -//============================================================== | |
| 24 | -include("../mpdf.php"); | |
| 25 | - | |
| 26 | -$mpdf=new mPDF('','A4-L','','',10,10,10,10); | |
| 27 | -$mpdf->SetDisplayMode('fullpage'); | |
| 28 | -$mpdf->useSubstitutions = true; | |
| 29 | -$mpdf->debug = true; | |
| 30 | -$mpdf->simpleTables = true; | |
| 31 | -if ($checkdir) { | |
| 32 | - $ttfdir = $checkdir; | |
| 33 | -} | |
| 34 | -else { $ttfdir = _MPDF_TTFONTPATH; } | |
| 35 | - | |
| 36 | - | |
| 37 | - | |
| 38 | -$mqr=ini_get("magic_quotes_runtime"); | |
| 39 | -if ($mqr) { set_magic_quotes_runtime(0); } | |
| 40 | -if (!class_exists('TTFontFile_Analysis', false)) { include(_MPDF_PATH .'classes/ttfontsuni_analysis.php'); } | |
| 41 | - | |
| 42 | -//============================================================== | |
| 43 | - $smp = true; | |
| 44 | - $maxt = 131071; | |
| 45 | -//============================================================== | |
| 46 | -//============================================================== | |
| 47 | -$unifile = file('UnicodeData.txt'); | |
| 48 | -$unichars = array(); | |
| 49 | -foreach($unifile AS $line) { | |
| 50 | - if (preg_match('/<control>/',$line,$m)) { | |
| 51 | - $rangename = ''; | |
| 52 | - continue; | |
| 53 | - } | |
| 54 | - else if (preg_match('/^([12]{0,1}[0-9A-Za-z]{4});<(.*?), Last>/',$line,$m)) { | |
| 55 | - if ($rangename && $rangename == $m[2]) { | |
| 56 | - $endrange = hexdec($m[1]); | |
| 57 | - for ($i=$startrange;$i<=$endrange; $i++) { | |
| 58 | - $unichars[$i] = $i; | |
| 59 | - } | |
| 60 | - } | |
| 61 | - $rangename = ''; | |
| 62 | - } | |
| 63 | - else if (preg_match('/^([12]{0,1}[0-9A-Za-z]{4});<(.*?), First>/',$line,$m)) { | |
| 64 | - $startrange = hexdec($m[1]); | |
| 65 | - $rangename = $m[2]; | |
| 66 | - } | |
| 67 | - else if (preg_match('/^([12]{0,1}[0-9A-Za-z]{4});/',$line,$m)) { | |
| 68 | - $unichars[hexdec($m[1])] = hexdec($m[1]); | |
| 69 | - $rangename = ''; | |
| 70 | - } | |
| 71 | -} | |
| 72 | - | |
| 73 | -// loads array $unicode_ranges | |
| 74 | -include('UnicodeRanges.php'); | |
| 75 | -//============================================================== | |
| 76 | -$html = '<html><head><style>td { border: 0.1mm solid #555555; } | |
| 77 | -body { font-weight: normal; font-family: helvetica;font-size:8pt; } | |
| 78 | -td { font-family: helvetica;font-size:8pt; vertical-align: top;} | |
| 79 | -</style></head><body>'; | |
| 80 | - | |
| 81 | -//============================================================== | |
| 82 | -$ff = scandir($ttfdir); | |
| 83 | -$tempfontdata = array(); | |
| 84 | -foreach($ff AS $f) { | |
| 85 | - $ttf = new TTFontFile_Analysis(); | |
| 86 | - $ret = array(); | |
| 87 | - $isTTC = false; | |
| 88 | - if (strtolower(substr($f,-4,4))=='.ttf' || strtolower(substr($f,-4,4))=='.otf') { | |
| 89 | - $ret[] = $ttf->extractCoreInfo($ttfdir.$f); | |
| 90 | - } | |
| 91 | - for ($i=0; $i<count($ret); $i++) { | |
| 92 | - if (is_array($ret[$i])) { | |
| 93 | - $tfname = $ret[$i][0]; | |
| 94 | - $bold = $ret[$i][1]; | |
| 95 | - $italic = $ret[$i][2]; | |
| 96 | - $fname = strtolower($tfname ); | |
| 97 | - $fname = preg_replace('/[ ()]/','',$fname ); | |
| 98 | - //$tempfonttrans[$tfname] = $fname; | |
| 99 | - $style = ''; | |
| 100 | - if ($bold) { $style .= 'B'; } | |
| 101 | - if ($italic) { $style .= 'I'; } | |
| 102 | - if (!$style) { | |
| 103 | - $tempfontdata[$fname]['file'] = $f; | |
| 104 | - if ($isTTC) { | |
| 105 | - $tempfontdata[$fname]['TTCfontID'] = $ret[$i][4]; | |
| 106 | - } | |
| 107 | - } | |
| 108 | - } | |
| 109 | - } | |
| 110 | - unset($ttf); | |
| 111 | - | |
| 112 | -} | |
| 113 | - | |
| 114 | -$fullcovers = array(); | |
| 115 | -$nearlycovers = array(); | |
| 116 | -ksort($tempfontdata); | |
| 117 | -$ningroup = 14; | |
| 118 | -$nofgroups = ceil(count($unicode_ranges)/$ningroup); | |
| 119 | - | |
| 120 | -//============================================================== | |
| 121 | - | |
| 122 | - | |
| 123 | -for ($urgp = 0; $urgp < $nofgroups; $urgp++) { | |
| 124 | - | |
| 125 | - | |
| 126 | - $html .= '<table cellpadding="2" cellspacing="0" style="page-break-inside:avoid; text-align:center; border-collapse: collapse; ">'; | |
| 127 | - $html .= '<thead><tr><td></td>'; | |
| 128 | - | |
| 129 | - foreach($unicode_ranges AS $urk => $ur) { | |
| 130 | - if ($urk >= ($urgp*$ningroup) && $urk < (($urgp+1)*$ningroup)) { | |
| 131 | - $rangekey = $urk; | |
| 132 | - $range = $ur['range']; | |
| 133 | - $rangestart = $ur['starthex']; | |
| 134 | - $rangeend = $ur['endhex']; | |
| 135 | - $html .= '<td style="font-family:helvetica;font-size:8pt;font-weight:bold;">'.strtoupper($range).' (U+'.$rangestart .'-U+'.$rangeend.')</td>'; | |
| 136 | - } | |
| 137 | - } | |
| 138 | - $html .= '</tr></thead>'; | |
| 139 | - | |
| 140 | - | |
| 141 | - foreach ($tempfontdata AS $fname => $v) { | |
| 142 | - $cw = ''; | |
| 143 | - if (file_exists((_MPDF_TTFONTDATAPATH.$fname.'.cw.dat'))) { $cw = file_get_contents(_MPDF_TTFONTDATAPATH.$fname.'.cw.dat'); } | |
| 144 | - else { | |
| 145 | - $mpdf->fontdata[$fname]['R'] = $tempfontdata[$fname]['file']; | |
| 146 | - $mpdf->AddFont($fname); | |
| 147 | - $cw = file_get_contents(_MPDF_TTFONTDATAPATH.$fname.'.cw.dat'); | |
| 148 | - } | |
| 149 | - if (!$cw) { | |
| 150 | - continue; | |
| 151 | - die("Font data not available for $fname"); | |
| 152 | - } | |
| 153 | - | |
| 154 | - $counter=0; | |
| 155 | - $max = $maxt; | |
| 156 | - | |
| 157 | - // create HTML content | |
| 158 | - $html .= '<tr>'; | |
| 159 | - $html .= '<td>'.$fname.'</td>'; | |
| 160 | - | |
| 161 | - foreach($unicode_ranges AS $urk => $ur) { | |
| 162 | - if ($urk >= ($urgp*$ningroup) && $urk < (($urgp+1)*$ningroup)) { | |
| 163 | - if ($ur['pua'] || $ur['reserved'] || $ur['control']) { | |
| 164 | - $html .= '<td style="background-color: #000000;"></td>'; | |
| 165 | - } | |
| 166 | - else { | |
| 167 | - $rangekey = $urk; | |
| 168 | - $range = $ur['range']; | |
| 169 | - $rangestart = $ur['starthex']; | |
| 170 | - $rangeend = $ur['endhex']; | |
| 171 | - $rangestartdec = $ur['startdec']; | |
| 172 | - $rangeenddec = $ur['enddec']; | |
| 173 | - $uniinrange = 0; | |
| 174 | - $fontinrange = 0; | |
| 175 | - for ($i=$rangestartdec; $i<=$rangeenddec; $i++) { | |
| 176 | - //if (isset($cw[$i])) { $fontinrange++; } | |
| 177 | - if ($mpdf->_charDefined($cw, $i)) { $fontinrange++; } | |
| 178 | - if (isset($unichars[$i])) { $uniinrange++; } | |
| 179 | - } | |
| 180 | - if ($uniinrange) { | |
| 181 | - if ($fontinrange) { | |
| 182 | - $pc = ($fontinrange/$uniinrange); | |
| 183 | - $str = '('.$fontinrange.'/'.$uniinrange.')'; | |
| 184 | - if ($pc==1) { | |
| 185 | - $fullcovers[$urk][] = $fname; | |
| 186 | - $html .= '<td style="background-color: #00FF00;"></td>'; | |
| 187 | - } | |
| 188 | - else if ($pc>1) { | |
| 189 | - $fullcovers[$urk][] = $fname; | |
| 190 | - $html .= '<td style="background-color: #00FF00;">'.$str.'</td>'; | |
| 191 | - } | |
| 192 | - else if ($pc>=0.9) { | |
| 193 | - $html .= '<td style="background-color: #AAFFAA;">'.$str.'</td>'; | |
| 194 | - $nearlycovers[$urk][] = $fname; | |
| 195 | - } | |
| 196 | - else if ($pc>0.75) { $html .= '<td style="background-color: #00FFAA;">'.$str.'</td>'; } | |
| 197 | - else if ($pc>0.5) { $html .= '<td style="background-color: #AAAAFF;">'.$str.'</td>'; } | |
| 198 | - else if ($pc>0.25) { $html .= '<td style="background-color: #FFFFAA;">'.$str.'</td>'; } | |
| 199 | - else { $html .= '<td style="background-color: #FFAAAA;">'.$str.'</td>'; } | |
| 200 | - } | |
| 201 | - else { $html .= '<td style="background-color: #555555;">(0/0)</td>'; } | |
| 202 | - } | |
| 203 | - else { $html .= '<td style="background-color: #000000;"></td>'; } | |
| 204 | - } | |
| 205 | - } | |
| 206 | - } | |
| 207 | - | |
| 208 | - | |
| 209 | - $html .= '</tr>'; | |
| 210 | - | |
| 211 | - } | |
| 212 | -//============================================================== | |
| 213 | - $html .= '</table><pagebreak />'; | |
| 214 | -} | |
| 215 | - | |
| 216 | -$html .= '<h4>Fonts with full coverage of Unicode Ranges</h4>'; | |
| 217 | -$html .= '<table>'; | |
| 218 | -//$html .= '<tr><td></td><td></td></tr>'; | |
| 219 | -foreach($unicode_ranges AS $urk => $ur) { | |
| 220 | - if ($ur['pua'] || $ur['reserved'] || $ur['control']) { continue; } | |
| 221 | - $rangekey = $urk; | |
| 222 | - $range = $ur['range']; | |
| 223 | - $rangestart = $ur['starthex']; | |
| 224 | - $rangeend = $ur['endhex']; | |
| 225 | - $ext = $ext2 = ''; | |
| 226 | - if ($ur['combining']) { $ext = 'background-color:#DDDDFF;'; $ext2 = '<br /><span style="color:#AA0000">Special positioning required</span>'; } | |
| 227 | - if ($ur['vertical']) { $ext = 'background-color:#FFDDDD;'; $ext2 = '<br /><span style="color:#AA0000">Vertical positioning required</span>'; } | |
| 228 | - if ($ur['special']) { $ext = 'background-color:#FFDDDD;'; $ext2 = '<br /><span style="color:#AA0000">Special processing required</span>'; } | |
| 229 | - | |
| 230 | - | |
| 231 | - $html .= '<tr><td style="font-family:helvetica;font-size:8pt;font-weight:bold;'.$ext.'">'.strtoupper($range).' (U+'.$rangestart .'-U+'.$rangeend.')'.$ext2.'</td>'; | |
| 232 | - $arr = $fullcovers[$urk]; | |
| 233 | - $narr = $nearlycovers[$urk]; | |
| 234 | - if (is_array($arr)) { $html .= '<td>'. implode(', ',$arr). '</td></tr>'; } | |
| 235 | - else if (is_array($narr)) { $html .= '<td style="background-color: #AAAAAA;">'. implode(', ',$narr). ' (>90%)</td></tr>'; } | |
| 236 | - else { $html .= '<td style="background-color: #555555;"> </td></tr>'; } | |
| 237 | -} | |
| 238 | -$html.= '</table>'; | |
| 239 | - | |
| 240 | - | |
| 241 | -//============================================================== | |
| 242 | -echo $html; | |
| 243 | - | |
| 244 | -exit; | |
| 245 | - | |
| 246 | -//============================================================== | |
| 247 | -//============================================================== | |
| 248 | -//============================================================== | |
| 249 | -//============================================================== | |
| 250 | - | |
| 251 | - | |
| 252 | -?> | |
| 1 | +<?php | |
| 2 | + | |
| 3 | +/* This script prints out the Unicode coverage of all TrueType font files | |
| 4 | + in your font directory. | |
| 5 | + Point your browser to | |
| 6 | + http://your.domain/your_path_to _mpdf/utils/font_coverage.php | |
| 7 | + By default this will examine the folder /ttfonts/ (or the default font | |
| 8 | + directory defined by _MPDF_TTFONTPATH. | |
| 9 | + You can optionally define an alternative folder to examine by setting | |
| 10 | + the variable below (must be a relative path, or filesystem path): | |
| 11 | +*/ | |
| 12 | + | |
| 13 | + | |
| 14 | +$checkdir = ''; | |
| 15 | + | |
| 16 | +////////////////////////////////// | |
| 17 | + | |
| 18 | + | |
| 19 | +set_time_limit(600); | |
| 20 | +ini_set("memory_limit","256M"); | |
| 21 | + | |
| 22 | +//============================================================== | |
| 23 | +//============================================================== | |
| 24 | +include("../mpdf.php"); | |
| 25 | + | |
| 26 | +$mpdf=new mPDF('','A4-L','','',10,10,10,10); | |
| 27 | +$mpdf->SetDisplayMode('fullpage'); | |
| 28 | +$mpdf->useSubstitutions = true; | |
| 29 | +$mpdf->debug = true; | |
| 30 | +$mpdf->simpleTables = true; | |
| 31 | +if ($checkdir) { | |
| 32 | + $ttfdir = $checkdir; | |
| 33 | +} else { | |
| 34 | + $ttfdir = _MPDF_TTFONTPATH; | |
| 35 | +} | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | +$mqr=ini_get("magic_quotes_runtime"); | |
| 40 | +if ($mqr) { set_magic_quotes_runtime(0); } | |
| 41 | +if (!class_exists('TTFontFile_Analysis', false)) { include(_MPDF_PATH .'classes/ttfontsuni_analysis.php'); } | |
| 42 | + | |
| 43 | +//============================================================== | |
| 44 | + $smp = true; | |
| 45 | + $maxt = 131071; | |
| 46 | +//============================================================== | |
| 47 | +//============================================================== | |
| 48 | +$unifile = file('UnicodeData.txt'); | |
| 49 | +$unichars = array(); | |
| 50 | +foreach($unifile AS $line) { | |
| 51 | + if (preg_match('/<control>/',$line,$m)) { | |
| 52 | + $rangename = ''; | |
| 53 | + continue; | |
| 54 | + } | |
| 55 | + else if (preg_match('/^([12]{0,1}[0-9A-Za-z]{4});<(.*?), Last>/',$line,$m)) { | |
| 56 | + if ($rangename && $rangename == $m[2]) { | |
| 57 | + $endrange = hexdec($m[1]); | |
| 58 | + for ($i=$startrange;$i<=$endrange; $i++) { | |
| 59 | + $unichars[$i] = $i; | |
| 60 | + } | |
| 61 | + } | |
| 62 | + $rangename = ''; | |
| 63 | + } | |
| 64 | + else if (preg_match('/^([12]{0,1}[0-9A-Za-z]{4});<(.*?), First>/',$line,$m)) { | |
| 65 | + $startrange = hexdec($m[1]); | |
| 66 | + $rangename = $m[2]; | |
| 67 | + } | |
| 68 | + else if (preg_match('/^([12]{0,1}[0-9A-Za-z]{4});/',$line,$m)) { | |
| 69 | + $unichars[hexdec($m[1])] = hexdec($m[1]); | |
| 70 | + $rangename = ''; | |
| 71 | + } | |
| 72 | +} | |
| 73 | + | |
| 74 | +// loads array $unicode_ranges | |
| 75 | +include('UnicodeRanges.php'); | |
| 76 | +//============================================================== | |
| 77 | +$html = '<html><head><style>td { border: 0.1mm solid #555555; } | |
| 78 | +body { font-weight: normal; font-family: helvetica;font-size:8pt; } | |
| 79 | +td { font-family: helvetica;font-size:8pt; vertical-align: top;} | |
| 80 | +</style></head><body>'; | |
| 81 | + | |
| 82 | +//============================================================== | |
| 83 | +$ff = scandir($ttfdir); | |
| 84 | +$tempfontdata = array(); | |
| 85 | +foreach($ff AS $f) { | |
| 86 | + $ttf = new TTFontFile_Analysis(); | |
| 87 | + $ret = array(); | |
| 88 | + $isTTC = false; | |
| 89 | + if (strtolower(substr($f,-4,4))=='.ttf' || strtolower(substr($f,-4,4))=='.otf') { | |
| 90 | + $ret[] = $ttf->extractCoreInfo($ttfdir.$f); | |
| 91 | + } | |
| 92 | + for ($i=0; $i<count($ret); $i++) { | |
| 93 | + if (is_array($ret[$i])) { | |
| 94 | + $tfname = $ret[$i][0]; | |
| 95 | + $bold = $ret[$i][1]; | |
| 96 | + $italic = $ret[$i][2]; | |
| 97 | + $fname = strtolower($tfname ); | |
| 98 | + $fname = preg_replace('/[ ()]/','',$fname ); | |
| 99 | + //$tempfonttrans[$tfname] = $fname; | |
| 100 | + $style = ''; | |
| 101 | + if ($bold) { $style .= 'B'; } | |
| 102 | + if ($italic) { $style .= 'I'; } | |
| 103 | + if (!$style) { | |
| 104 | + $tempfontdata[$fname]['file'] = $f; | |
| 105 | + if ($isTTC) { | |
| 106 | + $tempfontdata[$fname]['TTCfontID'] = $ret[$i][4]; | |
| 107 | + } | |
| 108 | + } | |
| 109 | + } | |
| 110 | + } | |
| 111 | + unset($ttf); | |
| 112 | + | |
| 113 | +} | |
| 114 | + | |
| 115 | +$fullcovers = array(); | |
| 116 | +$nearlycovers = array(); | |
| 117 | +ksort($tempfontdata); | |
| 118 | +$ningroup = 14; | |
| 119 | +$nofgroups = ceil(count($unicode_ranges)/$ningroup); | |
| 120 | + | |
| 121 | +//============================================================== | |
| 122 | + | |
| 123 | + | |
| 124 | +for ($urgp = 0; $urgp < $nofgroups; $urgp++) { | |
| 125 | + | |
| 126 | + | |
| 127 | + $html .= '<table cellpadding="2" cellspacing="0" style="page-break-inside:avoid; text-align:center; border-collapse: collapse; ">'; | |
| 128 | + $html .= '<thead><tr><td></td>'; | |
| 129 | + | |
| 130 | + foreach($unicode_ranges AS $urk => $ur) { | |
| 131 | + if ($urk >= ($urgp*$ningroup) && $urk < (($urgp+1)*$ningroup)) { | |
| 132 | + $rangekey = $urk; | |
| 133 | + $range = $ur['range']; | |
| 134 | + $rangestart = $ur['starthex']; | |
| 135 | + $rangeend = $ur['endhex']; | |
| 136 | + $html .= '<td style="font-family:helvetica;font-size:8pt;font-weight:bold;">'.strtoupper($range).' (U+'.$rangestart .'-U+'.$rangeend.')</td>'; | |
| 137 | + } | |
| 138 | + } | |
| 139 | + $html .= '</tr></thead>'; | |
| 140 | + | |
| 141 | + | |
| 142 | + foreach ($tempfontdata AS $fname => $v) { | |
| 143 | + $cw = ''; | |
| 144 | + if (file_exists((_MPDF_TTFONTDATAPATH.$fname.'.cw.dat'))) { $cw = file_get_contents(_MPDF_TTFONTDATAPATH.$fname.'.cw.dat'); } | |
| 145 | + else { | |
| 146 | + $mpdf->fontdata[$fname]['R'] = $tempfontdata[$fname]['file']; | |
| 147 | + $mpdf->AddFont($fname); | |
| 148 | + $cw = file_get_contents(_MPDF_TTFONTDATAPATH.$fname.'.cw.dat'); | |
| 149 | + } | |
| 150 | + if (!$cw) { | |
| 151 | + continue; | |
| 152 | + die("Font data not available for $fname"); | |
| 153 | + } | |
| 154 | + | |
| 155 | + $counter=0; | |
| 156 | + $max = $maxt; | |
| 157 | + | |
| 158 | + // create HTML content | |
| 159 | + $html .= '<tr>'; | |
| 160 | + $html .= '<td>'.$fname.'</td>'; | |
| 161 | + | |
| 162 | + foreach($unicode_ranges AS $urk => $ur) { | |
| 163 | + if ($urk >= ($urgp*$ningroup) && $urk < (($urgp+1)*$ningroup)) { | |
| 164 | + if ($ur['pua'] || $ur['reserved'] || $ur['control']) { | |
| 165 | + $html .= '<td style="background-color: #000000;"></td>'; | |
| 166 | + } | |
| 167 | + else { | |
| 168 | + $rangekey = $urk; | |
| 169 | + $range = $ur['range']; | |
| 170 | + $rangestart = $ur['starthex']; | |
| 171 | + $rangeend = $ur['endhex']; | |
| 172 | + $rangestartdec = $ur['startdec']; | |
| 173 | + $rangeenddec = $ur['enddec']; | |
| 174 | + $uniinrange = 0; | |
| 175 | + $fontinrange = 0; | |
| 176 | + for ($i=$rangestartdec; $i<=$rangeenddec; $i++) { | |
| 177 | + //if (isset($cw[$i])) { $fontinrange++; } | |
| 178 | + if ($mpdf->_charDefined($cw, $i)) { $fontinrange++; } | |
| 179 | + if (isset($unichars[$i])) { $uniinrange++; } | |
| 180 | + } | |
| 181 | + if ($uniinrange) { | |
| 182 | + if ($fontinrange) { | |
| 183 | + $pc = ($fontinrange/$uniinrange); | |
| 184 | + $str = '('.$fontinrange.'/'.$uniinrange.')'; | |
| 185 | + if ($pc==1) { | |
| 186 | + $fullcovers[$urk][] = $fname; | |
| 187 | + $html .= '<td style="background-color: #00FF00;"></td>'; | |
| 188 | + } | |
| 189 | + else if ($pc>1) { | |
| 190 | + $fullcovers[$urk][] = $fname; | |
| 191 | + $html .= '<td style="background-color: #00FF00;">'.$str.'</td>'; | |
| 192 | + } | |
| 193 | + else if ($pc>=0.9) { | |
| 194 | + $html .= '<td style="background-color: #AAFFAA;">'.$str.'</td>'; | |
| 195 | + $nearlycovers[$urk][] = $fname; | |
| 196 | + } | |
| 197 | + else if ($pc>0.75) { $html .= '<td style="background-color: #00FFAA;">'.$str.'</td>'; } | |
| 198 | + else if ($pc>0.5) { $html .= '<td style="background-color: #AAAAFF;">'.$str.'</td>'; } | |
| 199 | + else if ($pc>0.25) { $html .= '<td style="background-color: #FFFFAA;">'.$str.'</td>'; } | |
| 200 | + else { $html .= '<td style="background-color: #FFAAAA;">'.$str.'</td>'; } | |
| 201 | + } | |
| 202 | + else { $html .= '<td style="background-color: #555555;">(0/0)</td>'; } | |
| 203 | + } | |
| 204 | + else { $html .= '<td style="background-color: #000000;"></td>'; } | |
| 205 | + } | |
| 206 | + } | |
| 207 | + } | |
| 208 | + | |
| 209 | + | |
| 210 | + $html .= '</tr>'; | |
| 211 | + | |
| 212 | + } | |
| 213 | +//============================================================== | |
| 214 | + $html .= '</table><pagebreak />'; | |
| 215 | +} | |
| 216 | + | |
| 217 | +$html .= '<h4>Fonts with full coverage of Unicode Ranges</h4>'; | |
| 218 | +$html .= '<table>'; | |
| 219 | +//$html .= '<tr><td></td><td></td></tr>'; | |
| 220 | +foreach($unicode_ranges AS $urk => $ur) { | |
| 221 | + if ($ur['pua'] || $ur['reserved'] || $ur['control']) { continue; } | |
| 222 | + $rangekey = $urk; | |
| 223 | + $range = $ur['range']; | |
| 224 | + $rangestart = $ur['starthex']; | |
| 225 | + $rangeend = $ur['endhex']; | |
| 226 | + $ext = $ext2 = ''; | |
| 227 | + if ($ur['combining']) { $ext = 'background-color:#DDDDFF;'; $ext2 = '<br /><span style="color:#AA0000">Special positioning required</span>'; } | |
| 228 | + if ($ur['vertical']) { $ext = 'background-color:#FFDDDD;'; $ext2 = '<br /><span style="color:#AA0000">Vertical positioning required</span>'; } | |
| 229 | + if ($ur['special']) { $ext = 'background-color:#FFDDDD;'; $ext2 = '<br /><span style="color:#AA0000">Special processing required</span>'; } | |
| 230 | + | |
| 231 | + | |
| 232 | + $html .= '<tr><td style="font-family:helvetica;font-size:8pt;font-weight:bold;'.$ext.'">'.strtoupper($range).' (U+'.$rangestart .'-U+'.$rangeend.')'.$ext2.'</td>'; | |
| 233 | + $arr = $fullcovers[$urk]; | |
| 234 | + $narr = $nearlycovers[$urk]; | |
| 235 | + if (is_array($arr)) { $html .= '<td>'. implode(', ',$arr). '</td></tr>'; } | |
| 236 | + else if (is_array($narr)) { $html .= '<td style="background-color: #AAAAAA;">'. implode(', ',$narr). ' (>90%)</td></tr>'; } | |
| 237 | + else { $html .= '<td style="background-color: #555555;"> </td></tr>'; } | |
| 238 | +} | |
| 239 | +$html.= '</table>'; | |
| 240 | + | |
| 241 | + | |
| 242 | +//============================================================== | |
| 243 | +echo $html; | |
| 244 | + | |
| 245 | +exit; | |
| 246 | + | |
| 247 | +//============================================================== | |
| 248 | +//============================================================== | |
| 249 | +//============================================================== | |
| 250 | +//============================================================== | |