Supp: suppression de TCPF car il utilise un systme de police diffrent et cre des pdf de trop grosse taille.

Modif: Ajout des fonctions HTML de TCPF dans fpdf.php
Ajout: Ajout de format de papier dans fpdf.php
This commit is contained in:
Regis Houssin 2006-07-21 08:54:24 +00:00
parent 2c28036947
commit 3857741400
163 changed files with 826 additions and 28893 deletions

View File

@ -41,7 +41,7 @@ FCKConfig.AutoGrowMax = 400 ;
FCKConfig.ProtectedSource.Add( /<script[\s\S]*?\/script>/gi ) ; // <SCRIPT> tags.
// FCKConfig.ProtectedSource.Add( /<%[\s\S]*?%>/g ) ; // ASP style server side code <%...%>
// FCKConfig.ProtectedSource.Add( /<\?[\s\S]*?\?>/g ) ; // PHP style server side code
FCKConfig.ProtectedSource.Add( /<\?[\s\S]*?\?>/g ) ; // PHP style server side code
// FCKConfig.ProtectedSource.Add( /(<asp:[^\>]+>[\s|\S]*?<\/asp:[^\>]+>)|(<asp:[^\>]+\/>)/gi ) ; // ASP.Net style tags <asp:control>
FCKConfig.AutoDetectLanguage = true ;
@ -54,8 +54,8 @@ FCKConfig.IncludeGreekEntities = true ;
FCKConfig.FillEmptyBlocks = true ;
FCKConfig.FormatSource = true ;
FCKConfig.FormatOutput = true ;
FCKConfig.FormatSource = false ;
FCKConfig.FormatOutput = false ;
FCKConfig.FormatIndentator = ' ' ;
FCKConfig.ForceStrongEm = true ;

View File

@ -1,5 +1,6 @@
<?php
/*******************************************************************************
* Modifié par Régis Houssin *
* Logiciel : FPDF *
* Version : 1.53 *
* Date : 31/12/2004 *
@ -9,6 +10,16 @@
* Vous pouvez utiliser et modifier ce logiciel comme vous le souhaitez. *
*******************************************************************************/
/*
* $Id$
* $Source$
*/
/**
* height of cell repect font height
*/
define("K_CELL_HEIGHT_RATIO", 1.25);
if(!class_exists('FPDF'))
{
define('FPDF_VERSION','1.53');
@ -70,6 +81,105 @@ var $creator; //creator
var $AliasNbPages; //alias for total number of pages
var $PDFVersion; //PDF version number
// variables pour HTML PARSER
/**
* @var HTML PARSER: store current link.
* @access private
*/
var $HREF;
/**
* @var HTML PARSER: store font list.
* @access private
*/
var $fontList;
/**
* @var HTML PARSER: true when font attribute is set.
* @access private
*/
var $issetfont;
/**
* @var HTML PARSER: true when color attribute is set.
* @access private
*/
var $issetcolor;
/**
* @var HTML PARSER: true in case of ordered list (OL), false otherwise.
* @access private
*/
var $listordered = false;
/**
* @var HTML PARSER: count list items.
* @access private
*/
var $listcount = 0;
/**
* @var HTML PARSER: size of table border.
* @access private
*/
var $tableborder = 0;
/**
* @var HTML PARSER: true at the beginning of table.
* @access private
*/
var $tdbegin = false;
/**
* @var HTML PARSER: table width.
* @access private
*/
var $tdwidth = 0;
/**
* @var HTML PARSER: table height.
* @access private
*/
var $tdheight = 0;
/**
* @var HTML PARSER: table align.
* @access private
*/
var $tdalign = "L";
/**
* @var HTML PARSER: table background color.
* @access private
*/
var $tdbgcolor = false;
/**
* @var Bold font style status.
* @access private
*/
var $b;
/**
* @var Underlined font style status.
* @access private
*/
var $u;
/**
* @var Italic font style status.
* @access private
*/
var $i;
/**
* @var spacer for LI tags.
* @access private
*/
var $lispacer = "";
/*******************************************************************************
* *
* Public methods *
@ -77,6 +187,21 @@ var $PDFVersion; //PDF version number
*******************************************************************************/
function FPDF($orientation='P',$unit='mm',$format='A4')
{
// ajout pour HTML2PDF
$this->fontlist = array("arial", "times", "courier", "helvetica", "symbol");
$this->b = 0;
$this->i = 0;
$this->u = 0;
$this->HREF = '';
$this->issetfont = false;
$this->issetcolor = false;
$this->tableborder = 0;
$this->tdbegin = false;
$this->tdwidth= 0;
$this->tdheight = 0;
$this->tdalign = "L";
$this->tdbgcolor = false;
//Some checks
$this->_dochecks();
//Initialization of properties
@ -121,17 +246,107 @@ function FPDF($orientation='P',$unit='mm',$format='A4')
//Page format
if(is_string($format))
{
// Added new page formats (45 standard ISO paper formats and 4 american common formats).
// Paper cordinates are calculated in this way: (inches * 72) where (1 inch = 2.54 cm)
$format=strtolower($format);
if($format=='a3')
if($format=='4a0')
$format=array(4767.87,6740.79);
elseif($format=='2a0')
$format=array(3370.39,4767.87);
elseif($format=='a0')
$format=array(2383.94,3370.39);
elseif($format=='a1')
$format=array(1683.78,2383.94);
elseif($format=='a2')
$format=array(1190.55,1683.78);
elseif($format=='a3')
$format=array(841.89,1190.55);
elseif($format=='a4')
$format=array(595.28,841.89);
elseif($format=='a5')
$format=array(420.94,595.28);
elseif($format=='a6')
$format=array(297.64,419.53);
elseif($format=='a7')
$format=array(209.76,297.64);
elseif($format=='a8')
$format=array(147.40,209.76);
elseif($format=='a9')
$format=array(104.88,147.40);
elseif($format=='a10')
$format=array(73.70,104.88);
elseif($format=='b0')
$format=array(2834.65,4008.19);
elseif($format=='b1')
$format=array(2004.09,2834.65);
elseif($format=='b2')
$format=array(1417.32,2004.09);
elseif($format=='b3')
$format=array(1000.63,1417.32);
elseif($format=='b4')
$format=array(708.66,1000.63);
elseif($format=='b5')
$format=array(498.90,708.66);
elseif($format=='b6')
$format=array(354.33,498.90);
elseif($format=='b7')
$format=array(249.45,354.33);
elseif($format=='b8')
$format=array(175.75,249.45);
elseif($format=='b9')
$format=array(124.72,175.75);
elseif($format=='b10')
$format=array(87.87,124.72);
elseif($format=='c0')
$format=array(2599.37,3676.54);
elseif($format=='c1')
$format=array(1836.85,2599.37);
elseif($format=='c2')
$format=array(1298.27,1836.85);
elseif($format=='c3')
$format=array(918.43,1298.27);
elseif($format=='c4')
$format=array(649.13,918.43);
elseif($format=='c5')
$format=array(459.21,649.13);
elseif($format=='c6')
$format=array(323.15,459.21);
elseif($format=='c7')
$format=array(229.61,323.15);
elseif($format=='c8')
$format=array(161.57,229.61);
elseif($format=='c9')
$format=array(113.39,161.57);
elseif($format=='c10')
$format=array(79.37,113.39);
elseif($format=='ra0')
$format=array(2437.80,3458.27);
elseif($format=='ra1')
$format=array(1729.13,2437.80);
elseif($format=='ra2')
$format=array(1218.90,1729.13);
elseif($format=='ra3')
$format=array(864.57,1218.90);
elseif($format=='ra4')
$format=array(609.45,864.57);
elseif($format=='sra0')
$format=array(2551.18,3628.35);
elseif($format=='sra1')
$format=array(1814.17,2551.18);
elseif($format=='sra2')
$format=array(1275.59,1814.17);
elseif($format=='sra3')
$format=array(907.09,1275.59);
elseif($format=='sra4')
$format=array(637.80,907.09);
elseif($format=='letter')
$format=array(612,792);
elseif($format=='legal')
$format=array(612,1008);
elseif($format=='executive')
$format=array(521.86,756);
elseif($format=='folio')
$format=array(612,936);
else
$this->Error('Unknown page format: '.$format);
$this->fwPt=$format[0];
@ -1633,6 +1848,612 @@ function _out($s)
else
$this->buffer.=$s."\n";
}
// --- HTML PARSER FUNCTIONS ---
/**
* Allows to preserve some HTML formatting.<br />
* Supports: h1, h2, h3, h4, h5, h6, b, u, i, a, img, p, br, strong, em, font, blockquote, li, ul, ol, hr, td, th, tr, table, sup, sub, small
* @param string $html text to display
* @param boolean $ln if true add a new line after text (default = true)
* @param int $fill Indicates if the background must be painted (1) or transparent (0). Default value: 0.
*/
function writeHTML($html, $ln=true, $fill=0) {
// store some variables
$html=strip_tags($html,"<h1><h2><h3><h4><h5><h6><b><u><i><a><img><p><br><strong><em><font><blockquote><li><ul><ol><hr><td><th><tr><table><sup><sub><small>"); //remove all unsupported tags
//replace carriage returns, newlines and tabs
$repTable = array("\t" => " ", "\n" => "<br>", "\r" => " ", "\0" => " ", "\x0B" => " ");
$html = strtr($html, $repTable);
$pattern = '/(<[^>]+>)/Uu';
$a = preg_split($pattern, $html, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY); //explodes the string
if (empty($this->lasth)) {
//set row height
$this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
}
foreach($a as $key=>$element) {
if (!preg_match($pattern, $element)) {
//Text
if($this->HREF) {
$this->addHtmlLink($this->HREF, $element, $fill);
}
elseif($this->tdbegin) {
if((strlen(trim($element)) > 0) AND ($element != "&nbsp;")) {
// Cette version ne gère pas UTF8
//$this->Cell($this->tdwidth, $this->tdheight, $this->unhtmlentities($element), $this->tableborder, '', $this->tdalign, $this->tdbgcolor);
$this->Cell($this->tdwidth, $this->tdheight, utf8_decode($this->unhtmlentities($element)), $this->tableborder, '', $this->tdalign, $this->tdbgcolor);
}
elseif($element == "&nbsp;") {
$this->Cell($this->tdwidth, $this->tdheight, '', $this->tableborder, '', $this->tdalign, $this->tdbgcolor);
}
}
else {
// cette version ne gère pas UTF8
//$this->Write($this->lasth, stripslashes($this->unhtmlentities($element)), '', $fill);
$this->Write($this->lasth, stripslashes(utf8_decode($this->unhtmlentities($element))), '', $fill);
}
}
else {
$element = substr($element, 1, -1);
//Tag
if($element{0}=='/') {
$this->closedHTMLTagHandler(strtolower(substr($element, 1)));
}
else {
//Extract attributes
// get tag name
preg_match('/([a-zA-Z0-9]*)/', $element, $tag);
$tag = strtolower($tag[0]);
// get attributes
preg_match_all('/([^=\s]*)=["\']?([^"\']*)["\']?/', $element, $attr_array, PREG_PATTERN_ORDER);
$attr = array(); // reset attribute array
while(list($id,$name)=each($attr_array[1])) {
$attr[strtolower($name)] = $attr_array[2][$id];
}
$this->openHTMLTagHandler($tag, $attr, $fill);
}
}
}
if ($ln) {
$this->Ln($this->lasth);
}
}
/**
* Prints a cell (rectangular area) with optional borders, background color and html text string. The upper-left corner of the cell corresponds to the current position. After the call, the current position moves to the right or to the next line.<br />
* If automatic page breaking is enabled and the cell goes beyond the limit, a page break is done before outputting.
* @param float $w Cell width. If 0, the cell extends up to the right margin.
* @param float $h Cell minimum height. The cell extends automatically if needed.
* @param float $x upper-left corner X coordinate
* @param float $y upper-left corner Y coordinate
* @param string $html html text to print. Default value: empty string.
* @param mixed $border Indicates if borders must be drawn around the cell. The value can be either a number:<ul><li>0: no border (default)</li><li>1: frame</li></ul>or a string containing some or all of the following characters (in any order):<ul><li>L: left</li><li>T: top</li><li>R: right</li><li>B: bottom</li></ul>
* @param int $ln Indicates where the current position should go after the call. Possible values are:<ul><li>0: to the right</li><li>1: to the beginning of the next line</li><li>2: below</li></ul>
Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value: 0.
* @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
* @see Cell()
*/
function writeHTMLCell($w, $h, $x, $y, $html='', $border=0, $ln=0, $fill=0) {
if (empty($this->lasth)) {
//set row height
$this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
}
if (empty($x)) {
$x = $this->GetX();
}
if (empty($y)) {
$y = $this->GetY();
}
// get current page number
$pagenum = $this->page;
$this->SetX($x);
$this->SetY($y);
if(empty($w)) {
$w = $this->fw - $x - $this->rMargin;
}
// store original margin values
$lMargin = $this->lMargin;
$rMargin = $this->rMargin;
// set new margin values
$this->SetLeftMargin($x);
$this->SetRightMargin($this->fw - $x - $w);
// calculate remaining vertical space on page
$restspace = $this->getPageHeight() - $this->GetY() - $this->getBreakMargin();
$this->writeHTML($html, true, $fill); // write html text
$currentY = $this->GetY();
// check if a new page has been created
if ($this->page > $pagenum) {
// design a cell around the text on first page
$currentpage = $this->page;
$this->page = $pagenum;
$this->SetY($this->getPageHeight() - $restspace - $this->getBreakMargin());
$h = $restspace - 1;
$this->Cell($w, $h, "", $border, $ln, 'L', 0);
// design a cell around the text on last page
$this->page = $currentpage;
$h = $currentY - $this->tMargin;
$this->SetY($this->tMargin); // put cursor at the beginning of text
$this->Cell($w, $h, "", $border, $ln, 'L', 0);
} else {
$h = max($h, ($currentY - $y));
$this->SetY($y); // put cursor at the beginning of text
// design a cell around the text
$this->Cell($w, $h, "", $border, $ln, 'L', 0);
}
// restore original margin values
$this->SetLeftMargin($lMargin);
$this->SetRightMargin($rMargin);
if ($ln) {
$this->Ln(0);
}
}
/**
* Process opening tags.
* @param string $tag tag name (in uppercase)
* @param string $attr tag attribute (in uppercase)
* @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
* @access private
*/
function openHTMLTagHandler($tag, $attr, $fill=0) {
//Opening tag
switch($tag) {
case 'table': {
if ((isset($attr['border'])) AND ($attr['border'] != '')) {
$this->tableborder = $attr['border'];
}
else {
$this->tableborder = 0;
}
break;
}
case 'tr': {
break;
}
case 'td':
case 'th': {
if ((isset($attr['width'])) AND ($attr['width'] != '')) {
$this->tdwidth = ($attr['width']/4);
}
else {
$this->tdwidth = (($this->w - $this->lMargin - $this->rMargin) / $this->default_table_columns);
}
if ((isset($attr['height'])) AND ($attr['height'] != '')) {
$this->tdheight=($attr['height'] / $this->k);
}
else {
$this->tdheight = $this->lasth;
}
if ((isset($attr['align'])) AND ($attr['align'] != '')) {
switch ($attr['align']) {
case 'center': {
$this->tdalign = "C";
break;
}
case 'right': {
$this->tdalign = "R";
break;
}
default:
case 'left': {
$this->tdalign = "L";
break;
}
}
}
if ((isset($attr['bgcolor'])) AND ($attr['bgcolor'] != '')) {
$coul = $this->convertColorHexToDec($attr['bgcolor']);
$this->SetFillColor($coul['R'], $coul['G'], $coul['B']);
$this->tdbgcolor=true;
}
$this->tdbegin=true;
break;
}
case 'hr': {
$this->Ln();
if ((isset($attr['width'])) AND ($attr['width'] != '')) {
$hrWidth = $attr['width'];
}
else {
$hrWidth = $this->w - $this->lMargin - $this->rMargin;
}
$x = $this->GetX();
$y = $this->GetY();
$this->SetLineWidth(0.2);
$this->Line($x, $y, $x + $hrWidth, $y);
$this->SetLineWidth(0.2);
$this->Ln();
break;
}
case 'strong': {
$this->setStyle('b', true);
break;
}
case 'em': {
$this->setStyle('i', true);
break;
}
case 'b':
case 'i':
case 'u': {
$this->setStyle($tag, true);
break;
}
case 'a': {
$this->HREF = $attr['href'];
break;
}
case 'img': {
if(isset($attr['src'])) {
// replace relative path with real server path
$attr['src'] = str_replace(K_PATH_URL_CACHE, K_PATH_CACHE, $attr['src']);
if(!isset($attr['width'])) {
$attr['width'] = 0;
}
if(!isset($attr['height'])) {
$attr['height'] = 0;
}
$this->Image($attr['src'], $this->GetX(),$this->GetY(), $this->pixelsToMillimeters($attr['width']), $this->pixelsToMillimeters($attr['height']));
//$this->SetX($this->img_rb_x);
$this->SetY($this->img_rb_y);
}
break;
}
case 'ul': {
$this->listordered = false;
$this->listcount = 0;
break;
}
case 'ol': {
$this->listordered = true;
$this->listcount = 0;
break;
}
case 'li': {
$this->Ln();
if ($this->listordered) {
$this->lispacer = " ".(++$this->listcount).". ";
}
else {
//unordered list simbol
$this->lispacer = " - ";
}
$this->Write($this->lasth, $this->lispacer, '', $fill);
break;
}
case 'tr':
case 'blockquote':
case 'br': {
$this->Ln();
if(strlen($this->lispacer) > 0) {
$this->x += $this->GetStringWidth($this->lispacer);
}
break;
}
case 'p': {
$this->Ln();
$this->Ln();
break;
}
case 'sup': {
$currentFontSize = $this->FontSize;
$this->tempfontsize = $this->FontSizePt;
$this->SetFontSize($this->FontSizePt * K_SMALL_RATIO);
$this->SetXY($this->GetX(), $this->GetY() - (($currentFontSize - $this->FontSize)*(K_SMALL_RATIO)));
break;
}
case 'sub': {
$currentFontSize = $this->FontSize;
$this->tempfontsize = $this->FontSizePt;
$this->SetFontSize($this->FontSizePt * K_SMALL_RATIO);
$this->SetXY($this->GetX(), $this->GetY() + (($currentFontSize - $this->FontSize)*(K_SMALL_RATIO)));
break;
}
case 'small': {
$currentFontSize = $this->FontSize;
$this->tempfontsize = $this->FontSizePt;
$this->SetFontSize($this->FontSizePt * K_SMALL_RATIO);
$this->SetXY($this->GetX(), $this->GetY() + (($currentFontSize - $this->FontSize)/3));
break;
}
case 'font': {
if (isset($attr['color']) AND $attr['color']!='') {
$coul = $this->convertColorHexToDec($attr['color']);
$this->SetTextColor($coul['R'],$coul['G'],$coul['B']);
$this->issetcolor=true;
}
if (isset($attr['face']) and in_array(strtolower($attr['face']), $this->fontlist)) {
$this->SetFont(strtolower($attr['FACE']));
$this->issetfont=true;
}
if (isset($attr['size'])) {
$headsize = intval($attr['size']);
} else {
$headsize = 0;
}
$currentFontSize = $this->FontSize;
$this->tempfontsize = $this->FontSizePt;
$this->SetFontSize($this->FontSizePt + $headsize);
$this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
break;
}
case 'h1':
case 'h2':
case 'h3':
case 'h4':
case 'h5':
case 'h6': {
$headsize = (4 - substr($tag, 1)) * 2;
$currentFontSize = $this->FontSize;
$this->tempfontsize = $this->FontSizePt;
$this->SetFontSize($this->FontSizePt + $headsize);
$this->setStyle('b', true);
$this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
break;
}
}
}
/**
* Process closing tags.
* @param string $tag tag name (in uppercase)
* @access private
*/
function closedHTMLTagHandler($tag) {
//Closing tag
switch($tag) {
case 'td':
case 'th': {
$this->tdbegin = false;
$this->tdwidth = 0;
$this->tdheight = 0;
$this->tdalign = "L";
$this->tdbgcolor = false;
$this->SetFillColor($this->prevFillColor[0], $this->prevFillColor[1], $this->prevFillColor[2]);
break;
}
case 'tr': {
$this->Ln();
break;
}
case 'table': {
$this->tableborder=0;
break;
}
case 'strong': {
$this->setStyle('b', false);
}
case 'em': {
$this->setStyle('i', false);
}
case 'b':
case 'i':
case 'u': {
$this->setStyle($tag, false);
break;
}
case 'a': {
$this->HREF = '';
break;
}
case 'sup': {
$currentFontSize = $this->FontSize;
$this->SetFontSize($this->tempfontsize);
$this->tempfontsize = $this->FontSizePt;
$this->SetXY($this->GetX(), $this->GetY() - (($currentFontSize - $this->FontSize)*(K_SMALL_RATIO)));
break;
}
case 'sub': {
$currentFontSize = $this->FontSize;
$this->SetFontSize($this->tempfontsize);
$this->tempfontsize = $this->FontSizePt;
$this->SetXY($this->GetX(), $this->GetY() + (($currentFontSize - $this->FontSize)*(K_SMALL_RATIO)));
break;
}
case 'small': {
$currentFontSize = $this->FontSize;
$this->SetFontSize($this->tempfontsize);
$this->tempfontsize = $this->FontSizePt;
$this->SetXY($this->GetX(), $this->GetY() - (($this->FontSize - $currentFontSize)/3));
break;
}
case 'font': {
if ($this->issetcolor == true) {
$this->SetTextColor($this->prevTextColor[0], $this->prevTextColor[1], $this->prevTextColor[2]);
}
if ($this->issetfont) {
$this->FontFamily = $this->prevFontFamily;
$this->FontStyle = $this->prevFontStyle;
$this->SetFont($this->FontFamily);
$this->issetfont = false;
}
$currentFontSize = $this->FontSize;
$this->SetFontSize($this->tempfontsize);
$this->tempfontsize = $this->FontSizePt;
//$this->TextColor = $this->prevTextColor;
$this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
break;
}
case 'ul': {
$this->Ln();
break;
}
case 'ol': {
$this->Ln();
break;
}
case 'li': {
$this->lispacer = "";
break;
}
case 'h1':
case 'h2':
case 'h3':
case 'h4':
case 'h5':
case 'h6': {
$currentFontSize = $this->FontSize;
$this->SetFontSize($this->tempfontsize);
$this->tempfontsize = $this->FontSizePt;
$this->setStyle('b', false);
$this->Ln();
$this->lasth = $this->FontSize * K_CELL_HEIGHT_RATIO;
break;
}
default : {
break;
}
}
}
/**
* Sets font style.
* @param string $tag tag name (in lowercase)
* @param boolean $enable
* @access private
*/
function setStyle($tag, $enable) {
//Modify style and select corresponding font
$this->$tag += ($enable ? 1 : -1);
$style='';
foreach(array('b', 'i', 'u') as $s) {
if($this->$s > 0) {
$style .= $s;
}
}
$this->SetFont('', $style);
}
/**
* Output anchor link.
* @param string $url link URL
* @param string $name link name
* @param int $fill Indicates if the cell background must be painted (1) or transparent (0). Default value: 0.
* @access public
*/
function addHtmlLink($url, $name, $fill=0) {
//Put a hyperlink
$this->SetTextColor(0, 0, 255);
$this->setStyle('u', true);
$this->Write($this->lasth, $name, $url, $fill);
$this->setStyle('u', false);
$this->SetTextColor(0);
}
/**
* Returns an associative array (keys: R,G,B) from
* a hex html code (e.g. #3FE5AA).
* @param string $color hexadecimal html color [#rrggbb]
* @return array
* @access private
*/
function convertColorHexToDec($color = "#000000"){
$tbl_color = array();
$tbl_color['R'] = hexdec(substr($color, 1, 2));
$tbl_color['G'] = hexdec(substr($color, 3, 2));
$tbl_color['B'] = hexdec(substr($color, 5, 2));
return $tbl_color;
}
/**
* Converts pixels to millimeters in 72 dpi.
* @param int $px pixels
* @return float millimeters
* @access private
*/
function pixelsToMillimeters($px){
return $px * 25.4 / 72;
}
/**
* Reverse function for htmlentities.
* Convert entities in UTF-8.
*
* @param $text_to_convert Text to convert.
* @return string converted
*/
function unhtmlentities($text_to_convert) {
require_once(dirname(__FILE__).'/html_entity_decode_php4.php');
return html_entity_decode_php4($text_to_convert);
}
/**
* Set the image scale.
* @param float $scale image scale.
* @author Nicola Asuni
* @since 1.5.2
*/
function setImageScale($scale) {
$this->imgscale=$scale;
}
/**
* Returns the image scale.
* @return float image scale.
* @author Nicola Asuni
* @since 1.5.2
*/
function getImageScale() {
return $this->imgscale;
}
/**
* Returns the page width in units.
* @return int page width.
* @author Nicola Asuni
* @since 1.5.2
*/
function getPageWidth() {
return $this->w;
}
/**
* Returns the page height in units.
* @return int page height.
* @author Nicola Asuni
* @since 1.5.2
*/
function getPageHeight() {
return $this->fh;
}
/**
* Returns the page break margin.
* @return int page break margin.
* @author Nicola Asuni
* @since 1.5.2
*/
function getBreakMargin() {
return $this->bMargin;
}
/**
* Returns the scale factor (number of points in user unit).
* @return int scale factor.
* @author Nicola Asuni
* @since 1.5.2
*/
function getScaleFactor() {
return $this->k;
}
//End of class
}

View File

@ -1,67 +0,0 @@
1.53.0.TC021 (2006-07-01)
- HTML attributes with whitespaces are now supported (thanks to Nelson Benitez for his support)
1.53.0.TC020_PHP4 (2006-06-23)
- this version fixes the MBCS error on html_entity_decode
1.53.0.TC019_PHP4 (2006-06-08)
- this version were backported to PHP4
1.53.0.TC019 (2006-05-21)
- fixed <strong> and <em> closing tags.
1.53.0.TC018 (2006-05-18)
- fixed font names bug
1.53.0.TC017 (2006-05-18)
- the TTF2UFM utility to convert True Type fonts for TCPDF were included on fonts folder.
- new free unicode fonts were included on /fonts/freefont.
- test_unicode.php example were exended.
- parameter $fill were added on Write, writeHTML and writeHTMLCell functions.
- documentation were updated.
1.53.0.TC016 (2006-03-09)
- fixed closing <strong> tag on html parser.
1.53.0.TC016 (2005-08-28)
- fpdf.php and tcpdf.php files were joined in one single class (you can still extend TCPDF with your own class).
- fixed problem when mb_internal_encoding is set.
1.53.0.TC014 (2005-05-29)
- fixed WriteHTMLCell new page issue.
1.53.0.TC013 (2005-05-29)
- fixed WriteHTMLCell across pages.
1.53.0.TC012 (2005-05-29)
- font color attribute bug were fixed.
1.53.0.TC011 (2005-03-31)
- SetFont function were fixed (thank Sjaak Lauwers for bug notice).
1.53.0.TC010 (2005-03-22)
- the html functions were improved (thanks to Manfred Vervuert for bug reporting).
1.53.0.TC009 (2005-03-19)
- a wrong reference to convertColorHexToDec were fixed.
1.53.0.TC008 (2005-02-07)
- removed some extra bytes from PHP files.
1.53.0.TC007 (2005-01-08)
- fill attribute were removed from writeHTMLCell method.
1.53.0.TC006 (2005-01-08)
- the documentation were updated.
1.53.0.TC005 (2005-01-05)
- Steven Wittens's unicode methods were removed.
- All unicode methods were rewritten from scratch.
- TCPDF is now licensed as LGPL.
1.53.0.TC004 (2005-01-04)
- this changelog were added.
- removed comercial fonts for licensing issue.
- Bitstream Vera Fonts were added (http://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.

View File

@ -1,504 +0,0 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it. You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.
When we speak of free software, we are referring to freedom of use,
not price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.
To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights. These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.
To protect each distributor, we want to make it very clear that
there is no warranty for the free library. Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.
Finally, software patents pose a constant threat to the existence of
any free program. We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder. Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.
Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License. This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License. We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.
When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library. The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom. The Lesser General
Public License permits more lax criteria for linking other code with
the library.
We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License. It also provides other free software developers Less
of an advantage over competing non-free programs. These disadvantages
are the reason we use the ordinary General Public License for many
libraries. However, the Lesser license provides advantages in certain
special circumstances.
For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard. To achieve this, non-free programs must be
allowed to use the library. A more frequent case is that a free
library does the same job as widely used non-free libraries. In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.
In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software. For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.
Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.
GNU LESSER GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (1) uses at run time a
copy of the library already present on the user's computer system,
rather than copying library functions into the executable, and (2)
will operate properly with a modified version of the library, if
the user installs one, as long as the modified version is
interface-compatible with the version that the work was made with.
c) Accompany the work with a written offer, valid for at
least three years, to give the same user the materials
specified in Subsection 6a, above, for a charge no more
than the cost of performing this distribution.
d) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
e) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded. In such case, this License incorporates the limitation as if
written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Libraries
If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change. You can do so by permitting
redistribution under these terms (or, alternatively, under the terms of the
ordinary General Public License).
To apply these terms, attach the following notices to the library. It is
safest to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the library's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
<signature of Ty Coon>, 1 April 1990
Ty Coon, President of Vice
That's all there is to it!

View File

@ -1,61 +0,0 @@
TCPDF - README
============================================================
Name:
TCPDF
Version:
1.53.0.TC021_PHP4
Release date:
2006-07-01
Author:
Nicola Asuni
Copyright (c) 2001-2006:
Tecnick.com S.r.l.
Via Ugo Foscolo n.19
09045 Quartu Sant'Elena (CA)
ITALY
www.tecnick.com
URLs:
http://tcpdf.sourceforge.net/
http://tcpdf.sf.net/
Description:
TCPDF is a PHP4 class for generating PDF files on-the-fly without requiring external extensions.
TCPDF is an extension and improvement of the FPDF class by Olivier Plathey (http://www.fpdf.org).
Main Features:
- supports all ISO page formats;
- supports UTF-8 Unicode;
- includes methods to publish some xhtml code, supporting the following elements: h1, h2, h3, h4, h5, h6, b, u, i, a, img, p, br, strong, em, font, blockquote, li, ul, ol, hr, td, th, tr, table, sup, sub, small;
- includes a method to print various barcode formats using an improved version of "Generic Barcode Render Class" by Karim Mribti (http://www.mribti.com/barcode/) (require GD library: http://www.boutell.com/gd/)
- supports TrueTypeUnicode, TrueType, Type1 and encoding;
- supports custom page formats, margins and units of measure;
- includes methods for page header and footer management;
- supports automatic page break;
- supports automatic page numbering;
- supports automatic line break and text justification;
- supports JPEG and PNG images;
- supports colors;
- supports links;
- support page compression (require zlib extension: http://www.gzip.org/zlib/);
- the source code is full documented in PhpDocumentor Style (http://www.phpdoc.org).
Installation:
1. copy the folder on your Web server
2. set your installation path on the config/tcpdf_config.php
3. call the test_unicode.php page with your browser to see an example
NOTE: the test_old.php require proper font setup on tcpdf_config.
Source Code Documentation:
doc/index.html
License
GNU LESSER GENERAL PUBLIC LICENSE v.2.1
http://www.gnu.org/copyleft/lesser.html
============================================================

View File

@ -1,441 +0,0 @@
<?php
//============================================================+
// File name : barcode.php
// Begin : 2002-07-31
// Last Update : 2005-01-02
// Author : Karim Mribti [barcode@mribti.com]
// Version : 1.1 [0.0.8a (original code)]
// License : GNU LGPL (Lesser General Public License) 2.1
// http://www.gnu.org/copyleft/lesser.txt
// Source Code : http://www.mribti.com/barcode/
//
// Description : Generic Barcode Render Class for PHP using
// the GD graphics library.
//
// NOTE:
// This version contains changes by Nicola Asuni:
// - porting to PHP4
// - code style and formatting
// - automatic php documentation in PhpDocumentor Style
// (www.phpdoc.org)
// - minor bug fixing
// - $mCharSet and $mChars variables were added here
//============================================================+
/**
* Barcode Render Class for PHP using the GD graphics library.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
// Styles
// Global
/**
* option: generate barcode border
*/
define("BCS_BORDER", 1);
/**
* option: use transparent background
*/
define("BCS_TRANSPARENT", 2);
/**
* option: center barcode
*/
define("BCS_ALIGN_CENTER", 4);
/**
* option: align left
*/
define("BCS_ALIGN_LEFT", 8);
/**
* option: align right
*/
define("BCS_ALIGN_RIGHT", 16);
/**
* option: generate JPEG image
*/
define("BCS_IMAGE_JPEG", 32);
/**
* option: generate PNG image
*/
define("BCS_IMAGE_PNG", 64);
/**
* option: draw text
*/
define("BCS_DRAW_TEXT", 128);
/**
* option: stretch text
*/
define("BCS_STRETCH_TEXT", 256);
/**
* option: reverse color
*/
define("BCS_REVERSE_COLOR", 512);
/**
* option: draw check
* (only for I25 code)
*/
define("BCS_I25_DRAW_CHECK", 2048);
/**
* set default background color
*/
define("BCD_DEFAULT_BACKGROUND_COLOR", 0xFFFFFF);
/**
* set default foreground color
*/
define("BCD_DEFAULT_FOREGROUND_COLOR", 0x000000);
/**
* set default style options
*/
define("BCD_DEFAULT_STYLE", BCS_BORDER | BCS_ALIGN_CENTER | BCS_IMAGE_PNG);
/**
* set default width
*/
define("BCD_DEFAULT_WIDTH", 460);
/**
* set default height
*/
define("BCD_DEFAULT_HEIGHT", 120);
/**
* set default font
*/
define("BCD_DEFAULT_FONT", 5);
/**
* st default horizontal resolution
*/
define("BCD_DEFAULT_XRES", 2);
// Margins
/**
* set default margin
*/
define("BCD_DEFAULT_MAR_Y1", 0);
/**
* set default margin
*/
define("BCD_DEFAULT_MAR_Y2", 0);
/**
* set default text offset
*/
define("BCD_DEFAULT_TEXT_OFFSET", 2);
// For the I25 Only
/**
* narrow bar option
* (only for I25 code)
*/
define("BCD_I25_NARROW_BAR", 1);
/**
* wide bar option
* (only for I25 code)
*/
define("BCD_I25_WIDE_BAR", 2);
// For the C39 Only
/**
* narrow bar option
* (only for c39 code)
*/
define("BCD_C39_NARROW_BAR", 1);
/**
* wide bar option
* (only for c39 code)
*/
define("BCD_C39_WIDE_BAR", 2);
// For Code 128
/**
* set type 1 bar
* (only for c128 code)
*/
define("BCD_C128_BAR_1", 1);
/**
* set type 2 bar
* (only for c128 code)
*/
define("BCD_C128_BAR_2", 2);
/**
* set type 3 bar
* (only for c128 code)
*/
define("BCD_C128_BAR_3", 3);
/**
* set type 4 bar
* (only for c128 code)
*/
define("BCD_C128_BAR_4", 4);
/**
* Barcode Render Class for PHP using the GD graphics library.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
class BarcodeObject {
/**
* @var Image width in pixels.
* @access protected
*/
var $mWidth;
/**
* @var Image height in pixels.
* @access protected
*/
var $mHeight;
/**
* @var Numeric code for Barcode style.
* @access protected
*/
var $mStyle;
/**
* @var Background color.
* @access protected
*/
var $mBgcolor;
/**
* @var Brush color.
* @access protected
*/
var $mBrush;
/**
* @var Image object.
* @access protected
*/
var $mImg;
/**
* @var Numeric code for character font.
* @access protected
*/
var $mFont;
/**
* @var Error message.
* @access protected
*/
var $mError;
/**
* @var Character Set.
* @access protected
*/
var $mCharSet;
/**
* @var Allowed symbols.
* @access protected
*/
var $mChars;
/**
* Class Constructor.
* @param int $Width Image width in pixels.
* @param int $Height Image height in pixels.
* @param int $Style Barcode style.
*/
function BarcodeObject($Width=BCD_DEFAULT_WIDTH, $Height=BCD_DEFAULT_HEIGHT, $Style=BCD_DEFAULT_STYLE) {
$this->mWidth = $Width;
$this->mHeight = $Height;
$this->mStyle = $Style;
$this->mFont = BCD_DEFAULT_FONT;
$this->mImg = ImageCreate($this->mWidth, $this->mHeight);
$dbColor = $this->mStyle & BCS_REVERSE_COLOR ? BCD_DEFAULT_FOREGROUND_COLOR : BCD_DEFAULT_BACKGROUND_COLOR;
$dfColor = $this->mStyle & BCS_REVERSE_COLOR ? BCD_DEFAULT_BACKGROUND_COLOR : BCD_DEFAULT_FOREGROUND_COLOR;
$this->mBgcolor = ImageColorAllocate($this->mImg, ($dbColor & 0xFF0000) >> 16,
($dbColor & 0x00FF00) >> 8, $dbColor & 0x0000FF);
$this->mBrush = ImageColorAllocate($this->mImg, ($dfColor & 0xFF0000) >> 16,
($dfColor & 0x00FF00) >> 8, $dfColor & 0x0000FF);
if (!($this->mStyle & BCS_TRANSPARENT)) {
ImageFill($this->mImg, $this->mWidth, $this->mHeight, $this->mBgcolor);
}
}
/**
* Returns the image object.
* @return object image.
* @author Nicola Asuni
* @since 1.5.2
*/
function getImage() {
return $this->mImg;
}
/**
* Abstract method used to draw the barcode image.
* @param int $xres Horizontal resolution.
*/
function DrawObject($xres) {
/* there is not implementation neded, is simply the asbsract function. */
return false;
}
/**
* Draws the barcode border.
* @access protected
*/
function DrawBorder() {
ImageRectangle($this->mImg, 0, 0, $this->mWidth-1, $this->mHeight-1, $this->mBrush);
}
/**
* Draws the alphanumeric code.
* @param int $Font Font type.
* @param int $xPos Horiziontal position.
* @param int $yPos Vertical position.
* @param int $Char Alphanumeric code to write.
* @access protected
*/
function DrawChar($Font, $xPos, $yPos, $Char) {
ImageString($this->mImg,$Font,$xPos,$yPos,$Char,$this->mBrush);
}
/**
* Draws a character string.
* @param int $Font Font type.
* @param int $xPos Horiziontal position.
* @param int $yPos Vertical position.
* @param int $Char string to write.
* @access protected
*/
function DrawText($Font, $xPos, $yPos, $Char) {
ImageString($this->mImg,$Font,$xPos,$yPos,$Char,$this->mBrush);
}
/**
* Draws a single barcode bar.
* @param int $xPos Horiziontal position.
* @param int $yPos Vertical position.
* @param int $xSize Horizontal size.
* @param int $xSize Vertical size.
* @return bool trur in case of success, false otherwise.
* @access protected
*/
function DrawSingleBar($xPos, $yPos, $xSize, $ySize) {
if ($xPos>=0 && $xPos<=$this->mWidth && ($xPos+$xSize)<=$this->mWidth &&
$yPos>=0 && $yPos<=$this->mHeight && ($yPos+$ySize)<=$this->mHeight) {
for ($i=0;$i<$xSize;$i++) {
ImageLine($this->mImg, $xPos+$i, $yPos, $xPos+$i, $yPos+$ySize, $this->mBrush);
}
return true;
}
return false;
}
/**
* Returns the current error message.
* @return string error message.
*/
function GetError() {
return $this->mError;
}
/**
* Returns the font height.
* @param int $font font type.
* @return int font height.
*/
function GetFontHeight($font) {
return ImageFontHeight($font);
}
/**
* Returns the font width.
* @param int $font font type.
* @return int font width.
*/
function GetFontWidth($font) {
return ImageFontWidth($font);
}
/**
* Set font type.
* @param int $font font type.
*/
function SetFont($font) {
$this->mFont = $font;
}
/**
* Returns barcode style.
* @return int barcode style.
*/
function GetStyle() {
return $this->mStyle;
}
/**
* Set barcode style.
* @param int $Style barcode style.
*/
function SetStyle ($Style) {
$this->mStyle = $Style;
}
/**
* Flush the barcode image.
*/
function FlushObject() {
if (($this->mStyle & BCS_BORDER)) {
$this->DrawBorder();
}
if ($this->mStyle & BCS_IMAGE_PNG) {
Header("Content-Type: image/png");
ImagePng($this->mImg);
} else if ($this->mStyle & BCS_IMAGE_JPEG) {
Header("Content-Type: image/jpeg");
ImageJpeg($this->mImg);
}
}
/**
* Destroy the barcode image.
*/
function DestroyObject() {
ImageDestroy($this->mImg);
}
}
//============================================================+
// END OF FILE
//============================================================+
?>

View File

@ -1,399 +0,0 @@
<?php
//============================================================+
// File name : c128aobject.php
// Begin : 2002-07-31
// Last Update : 2004-12-29
// Author : Karim Mribti [barcode@mribti.com]
// Version : 0.0.8a 2001-04-01 (original code)
// License : GNU LGPL (Lesser General Public License) 2.1
// http://www.gnu.org/copyleft/lesser.txt
// Source Code : http://www.mribti.com/barcode/
//
// Description : Code 128-A Barcode Render Class for PHP using
// the GD graphics library.
// Code 128-A is a continuous, multilevel and
// include all upper case alphanumeric characters
// and ASCII control characters.
//
// NOTE:
// This version contains changes by Nicola Asuni:
// - porting to PHP4
// - code style and formatting
// - automatic php documentation in PhpDocumentor Style
// (www.phpdoc.org)
// - minor bug fixing
//============================================================+
/**
* Code 128-A Barcode Render Class for PHP using the GD graphics library.<br>
* Code 128-A is a continuous, multilevel and include all upper case alphanumeric characters and ASCII control characters.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
/**
* Code 128-A Barcode Render Class for PHP using the GD graphics library.<br>
* Code 128-A is a continuous, multilevel and include all upper case alphanumeric characters and ASCII control characters.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
class C128AObject extends BarcodeObject {
/**
* Class Constructor.
* @param int $Width Image width in pixels.
* @param int $Height Image height in pixels.
* @param int $Style Barcode style.
* @param int $Value value to print on barcode.
*/
function C128AObject($Width, $Height, $Style, $Value) {
$this->BarcodeObject($Width, $Height, $Style);
$this->mValue = $Value;
$this->mChars = " !\"#$%&'()*+<2B>-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_";
$this->mCharSet = array (
"212222", /* 00 */
"222122", /* 01 */
"222221", /* 02 */
"121223", /* 03 */
"121322", /* 04 */
"131222", /* 05 */
"122213", /* 06 */
"122312", /* 07 */
"132212", /* 08 */
"221213", /* 09 */
"221312", /* 10 */
"231212", /* 11 */
"112232", /* 12 */
"122132", /* 13 */
"122231", /* 14 */
"113222", /* 15 */
"123122", /* 16 */
"123221", /* 17 */
"223211", /* 18 */
"221132", /* 19 */
"221231", /* 20 */
"213212", /* 21 */
"223112", /* 22 */
"312131", /* 23 */
"311222", /* 24 */
"321122", /* 25 */
"321221", /* 26 */
"312212", /* 27 */
"322112", /* 28 */
"322211", /* 29 */
"212123", /* 30 */
"212321", /* 31 */
"232121", /* 32 */
"111323", /* 33 */
"131123", /* 34 */
"131321", /* 35 */
"112313", /* 36 */
"132113", /* 37 */
"132311", /* 38 */
"211313", /* 39 */
"231113", /* 40 */
"231311", /* 41 */
"112133", /* 42 */
"112331", /* 43 */
"132131", /* 44 */
"113123", /* 45 */
"113321", /* 46 */
"133121", /* 47 */
"313121", /* 48 */
"211331", /* 49 */
"231131", /* 50 */
"213113", /* 51 */
"213311", /* 52 */
"213131", /* 53 */
"311123", /* 54 */
"311321", /* 55 */
"331121", /* 56 */
"312113", /* 57 */
"312311", /* 58 */
"332111", /* 59 */
"314111", /* 60 */
"221411", /* 61 */
"431111", /* 62 */
"111224", /* 63 */
"111422", /* 64 */
"121124", /* 65 */
"121421", /* 66 */
"141122", /* 67 */
"141221", /* 68 */
"112214", /* 69 */
"112412", /* 70 */
"122114", /* 71 */
"122411", /* 72 */
"142112", /* 73 */
"142211", /* 74 */
"241211", /* 75 */
"221114", /* 76 */
"413111", /* 77 */
"241112", /* 78 */
"134111", /* 79 */
"111242", /* 80 */
"121142", /* 81 */
"121241", /* 82 */
"114212", /* 83 */
"124112", /* 84 */
"124211", /* 85 */
"411212", /* 86 */
"421112", /* 87 */
"421211", /* 88 */
"212141", /* 89 */
"214121", /* 90 */
"412121", /* 91 */
"111143", /* 92 */
"111341", /* 93 */
"131141", /* 94 */
"114113", /* 95 */
"114311", /* 96 */
"411113", /* 97 */
"411311", /* 98 */
"113141", /* 99 */
"114131", /* 100 */
"311141", /* 101 */
"411131" /* 102 */
);
}
/**
* Returns the character index.
* @param char $char character.
* @return int character index or -1 in case of error.
* @access private
*/
function GetCharIndex($char) {
for ($i=0;$i<64;$i++) {
if ($this->mChars[$i] == $char) {
return $i;
}
}
return -1;
}
/**
* Returns the bar size.
* @param int $xres Horizontal resolution.
* @param char $char Character.
* @return int barcode size.
* @access private
*/
function GetBarSize($xres, $char) {
switch ($char) {
case '1': {
$cVal = BCD_C128_BAR_1;
break;
}
case '2': {
$cVal = BCD_C128_BAR_2;
break;
}
case '3': {
$cVal = BCD_C128_BAR_3;
break;
}
case '4': {
$cVal = BCD_C128_BAR_4;
break;
}
default: {
$cVal = 0;
}
}
return $cVal * $xres;
}
/**
* Returns barcode size.
* @param int $xres Horizontal resolution.
* @return barcode size.
* @access private
*/
function GetSize($xres) {
$len = strlen($this->mValue);
if ($len == 0) {
$this->mError = "Null value";
return false;
}
$ret = 0;
for ($i=0;$i<$len;$i++) {
if (($id = $this->GetCharIndex($this->mValue[$i])) == -1) {
$this->mError = "C128A not include the char '".$this->mValue[$i]."'";
return false;
} else {
$cset = $this->mCharSet[$id];
$ret += $this->GetBarSize($xres, $cset[0]);
$ret += $this->GetBarSize($xres, $cset[1]);
$ret += $this->GetBarSize($xres, $cset[2]);
$ret += $this->GetBarSize($xres, $cset[3]);
$ret += $this->GetBarSize($xres, $cset[4]);
$ret += $this->GetBarSize($xres, $cset[5]);
}
}
/* length of Check character */
$cset = $this->GetCheckCharValue();
$CheckSize = 0;
for ($i=0;$i<6;$i++) {
$CheckSize += $this->GetBarSize($cset[$i], $xres);
}
$StartSize = 2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + BCD_C128_BAR_4*$xres;
$StopSize = 2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + 2*BCD_C128_BAR_3*$xres;
return $StartSize + $ret + $CheckSize + $StopSize;
}
/**
* Returns the check-char value.
* @return string.
* @access private
*/
function GetCheckCharValue() {
$len = strlen($this->mValue);
$sum = 103; // 'A' type;
for ($i=0;$i<$len;$i++) {
$sum += $this->GetCharIndex($this->mValue[$i]) * ($i+1);
}
$check = $sum % 103;
return $this->mCharSet[$check];
}
/**
* Draws the start code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawStart($DrawPos, $yPos, $ySize, $xres) {
/* Start code is '211412' */
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('2', $xres) , $ySize);
$DrawPos += $this->GetBarSize('2', $xres);
$DrawPos += $this->GetBarSize('1', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('1', $xres) , $ySize);
$DrawPos += $this->GetBarSize('1', $xres);
$DrawPos += $this->GetBarSize('4', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('1', $xres) , $ySize);
$DrawPos += $this->GetBarSize('1', $xres);
$DrawPos += $this->GetBarSize('2', $xres);
return $DrawPos;
}
/**
* Draws the stop code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawStop($DrawPos, $yPos, $ySize, $xres) {
/* Stop code is '2331112' */
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('2', $xres) , $ySize);
$DrawPos += $this->GetBarSize('2', $xres);
$DrawPos += $this->GetBarSize('3', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('3', $xres) , $ySize);
$DrawPos += $this->GetBarSize('3', $xres);
$DrawPos += $this->GetBarSize('1', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('1', $xres) , $ySize);
$DrawPos += $this->GetBarSize('1', $xres);
$DrawPos += $this->GetBarSize('1', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('2', $xres) , $ySize);
$DrawPos += $this->GetBarSize('2', $xres);
return $DrawPos;
}
/**
* Draws the check-char code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawCheckChar($DrawPos, $yPos, $ySize, $xres) {
$cset = $this->GetCheckCharValue();
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[0], $xres) , $ySize);
$DrawPos += $this->GetBarSize($cset[0], $xres);
$DrawPos += $this->GetBarSize($cset[1], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[2], $xres) , $ySize);
$DrawPos += $this->GetBarSize($cset[2], $xres);
$DrawPos += $this->GetBarSize($cset[3], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[4], $xres) , $ySize);
$DrawPos += $this->GetBarSize($cset[4], $xres);
$DrawPos += $this->GetBarSize($cset[5], $xres);
return $DrawPos;
}
/**
* Draws the barcode object.
* @param int $xres Horizontal resolution.
* @return bool true in case of success.
*/
function DrawObject($xres) {
$len = strlen($this->mValue);
if (($size = $this->GetSize($xres))==0) {
return false;
}
if ($this->mStyle & BCS_ALIGN_CENTER) $sPos = (integer)(($this->mWidth - $size ) / 2);
else if ($this->mStyle & BCS_ALIGN_RIGHT) $sPos = $this->mWidth - $size;
else $sPos = 0;
/* Total height of bar code -Bars only- */
if ($this->mStyle & BCS_DRAW_TEXT) $ysize = $this->mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2 - $this->GetFontHeight($this->mFont);
else $ysize = $this->mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2;
/* Draw text */
if ($this->mStyle & BCS_DRAW_TEXT) {
if ($this->mStyle & BCS_STRETCH_TEXT) {
for ($i=0;$i<$len;$i++) {
$this->DrawChar($this->mFont, $sPos+(2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + BCD_C128_BAR_4*$xres)+($size/$len)*$i,
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, $this->mValue[$i]);
}
} else {/* Center */
$text_width = $this->GetFontWidth($this->mFont) * strlen($this->mValue);
$this->DrawText($this->mFont, $sPos+(($size-$text_width)/2)+(2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + BCD_C128_BAR_4*$xres),
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, $this->mValue);
}
}
$cPos = 0;
$DrawPos = $this->DrawStart($sPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
do {
$c = $this->GetCharIndex($this->mValue[$cPos]);
$cset = $this->mCharSet[$c];
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[0], $xres) , $ysize);
$DrawPos += $this->GetBarSize($cset[0], $xres);
$DrawPos += $this->GetBarSize($cset[1], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[2], $xres) , $ysize);
$DrawPos += $this->GetBarSize($cset[2], $xres);
$DrawPos += $this->GetBarSize($cset[3], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[4], $xres) , $ysize);
$DrawPos += $this->GetBarSize($cset[4], $xres);
$DrawPos += $this->GetBarSize($cset[5], $xres);
$cPos++;
} while ($cPos<$len);
$DrawPos = $this->DrawCheckChar($DrawPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
$DrawPos = $this->DrawStop($DrawPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
return true;
}
}
//============================================================+
// END OF FILE
//============================================================+
?>

View File

@ -1,399 +0,0 @@
<?php
//============================================================+
// File name : c128bobject.php
// Begin : 2002-07-31
// Last Update : 2004-12-29
// Author : Karim Mribti [barcode@mribti.com]
// Version : 0.0.8a 2001-04-01 (original code)
// License : GNU LGPL (Lesser General Public License) 2.1
// http://www.gnu.org/copyleft/lesser.txt
// Source Code : http://www.mribti.com/barcode/
//
// Description : Code 128-B Barcode Render Class for PHP using
// the GD graphics library.
// Code 128-B is a continuous, multilevel and full
// ASCII code.
//
// NOTE:
// This version contains changes by Nicola Asuni:
// - porting to PHP4
// - code style and formatting
// - automatic php documentation in PhpDocumentor Style
// (www.phpdoc.org)
// - minor bug fixing
//============================================================+
/**
* Code 128-B Barcode Render Class for PHP using the GD graphics library.<br>
* Code 128-B is a continuous, multilevel and full ASCII code.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
/**
* Code 128-B Barcode Render Class for PHP using the GD graphics library.<br>
* Code 128-B is a continuous, multilevel and full ASCII code.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
class C128BObject extends BarcodeObject {
/**
* Class Constructor.
* @param int $Width Image width in pixels.
* @param int $Height Image height in pixels.
* @param int $Style Barcode style.
* @param int $Value value to print on barcode.
*/
function C128BObject($Width, $Height, $Style, $Value) {
$this->BarcodeObject($Width, $Height, $Style);
$this->mValue = $Value;
$this->mChars = " !\"#$%&'()*+<2B>-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{ }~";
$this->mCharSet = array (
"212222", /* 00 */
"222122", /* 01 */
"222221", /* 02 */
"121223", /* 03 */
"121322", /* 04 */
"131222", /* 05 */
"122213", /* 06 */
"122312", /* 07 */
"132212", /* 08 */
"221213", /* 09 */
"221312", /* 10 */
"231212", /* 11 */
"112232", /* 12 */
"122132", /* 13 */
"122231", /* 14 */
"113222", /* 15 */
"123122", /* 16 */
"123221", /* 17 */
"223211", /* 18 */
"221132", /* 19 */
"221231", /* 20 */
"213212", /* 21 */
"223112", /* 22 */
"312131", /* 23 */
"311222", /* 24 */
"321122", /* 25 */
"321221", /* 26 */
"312212", /* 27 */
"322112", /* 28 */
"322211", /* 29 */
"212123", /* 30 */
"212321", /* 31 */
"232121", /* 32 */
"111323", /* 33 */
"131123", /* 34 */
"131321", /* 35 */
"112313", /* 36 */
"132113", /* 37 */
"132311", /* 38 */
"211313", /* 39 */
"231113", /* 40 */
"231311", /* 41 */
"112133", /* 42 */
"112331", /* 43 */
"132131", /* 44 */
"113123", /* 45 */
"113321", /* 46 */
"133121", /* 47 */
"313121", /* 48 */
"211331", /* 49 */
"231131", /* 50 */
"213113", /* 51 */
"213311", /* 52 */
"213131", /* 53 */
"311123", /* 54 */
"311321", /* 55 */
"331121", /* 56 */
"312113", /* 57 */
"312311", /* 58 */
"332111", /* 59 */
"314111", /* 60 */
"221411", /* 61 */
"431111", /* 62 */
"111224", /* 63 */
"111422", /* 64 */
"121124", /* 65 */
"121421", /* 66 */
"141122", /* 67 */
"141221", /* 68 */
"112214", /* 69 */
"112412", /* 70 */
"122114", /* 71 */
"122411", /* 72 */
"142112", /* 73 */
"142211", /* 74 */
"241211", /* 75 */
"221114", /* 76 */
"413111", /* 77 */
"241112", /* 78 */
"134111", /* 79 */
"111242", /* 80 */
"121142", /* 81 */
"121241", /* 82 */
"114212", /* 83 */
"124112", /* 84 */
"124211", /* 85 */
"411212", /* 86 */
"421112", /* 87 */
"421211", /* 88 */
"212141", /* 89 */
"214121", /* 90 */
"412121", /* 91 */
"111143", /* 92 */
"111341", /* 93 */
"131141", /* 94 */
"114113", /* 95 */
"114311", /* 96 */
"411113", /* 97 */
"411311", /* 98 */
"113141", /* 99 */
"114131", /* 100 */
"311141", /* 101 */
"411131" /* 102 */
);
}
/**
* Returns the character index.
* @param char $char character.
* @return int character index or -1 in case of error.
* @access private
*/
function GetCharIndex($char) {
for ($i=0;$i<95;$i++) {
if ($this->mChars[$i] == $char) {
return $i;
}
}
return -1;
}
/**
* Returns the bar size.
* @param int $xres Horizontal resolution.
* @param char $char Character.
* @return int barcode size.
* @access private
*/
function GetBarSize($xres, $char) {
switch ($char) {
case '1': {
$cVal = BCD_C128_BAR_1;
break;
}
case '2': {
$cVal = BCD_C128_BAR_2;
break;
}
case '3': {
$cVal = BCD_C128_BAR_3;
break;
}
case '4': {
$cVal = BCD_C128_BAR_4;
break;
}
default: {
$cVal = 0;
}
}
return $cVal * $xres;
}
/**
* Returns barcode size.
* @param int $xres Horizontal resolution.
* @return barcode size.
* @access private
*/
function GetSize($xres) {
$len = strlen($this->mValue);
if ($len == 0) {
$this->mError = "Null value";
return false;
}
$ret = 0;
for ($i=0;$i<$len;$i++) {
if (($id = $this->GetCharIndex($this->mValue[$i])) == -1) {
$this->mError = "C128B not include the char '".$this->mValue[$i]."'";
return false;
} else {
$cset = $this->mCharSet[$id];
$ret += $this->GetBarSize($xres, $cset[0]);
$ret += $this->GetBarSize($xres, $cset[1]);
$ret += $this->GetBarSize($xres, $cset[2]);
$ret += $this->GetBarSize($xres, $cset[3]);
$ret += $this->GetBarSize($xres, $cset[4]);
$ret += $this->GetBarSize($xres, $cset[5]);
}
}
/* length of Check character */
$cset = $this->GetCheckCharValue();
$CheckSize = 0;
for ($i=0;$i<6;$i++) {
$CheckSize += $this->GetBarSize($cset[$i], $xres);
}
$StartSize = 2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + BCD_C128_BAR_4*$xres;
$StopSize = 2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + 2*BCD_C128_BAR_3*$xres;
return $StartSize + $ret + $CheckSize + $StopSize;
}
/**
* Returns the check-char value.
* @return string.
* @access private
*/
function GetCheckCharValue() {
$len = strlen($this->mValue);
$sum = 104; // 'B' type;
for ($i=0;$i<$len;$i++) {
$sum += $this->GetCharIndex($this->mValue[$i]) * ($i+1);
}
$check = $sum % 103;
return $this->mCharSet[$check];
}
/**
* Draws the start code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawStart($DrawPos, $yPos, $ySize, $xres) {
/* Start code is '211214' */
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('2', $xres), $ySize);
$DrawPos += $this->GetBarSize('2', $xres);
$DrawPos += $this->GetBarSize('1', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('1', $xres), $ySize);
$DrawPos += $this->GetBarSize('1', $xres);
$DrawPos += $this->GetBarSize('2', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('1', $xres), $ySize);
$DrawPos += $this->GetBarSize('1', $xres);
$DrawPos += $this->GetBarSize('4', $xres);
return $DrawPos;
}
/**
* Draws the stop code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawStop($DrawPos, $yPos, $ySize, $xres) {
/* Stop code is '2331112' */
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('2', $xres) , $ySize);
$DrawPos += $this->GetBarSize('2', $xres);
$DrawPos += $this->GetBarSize('3', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('3', $xres) , $ySize);
$DrawPos += $this->GetBarSize('3', $xres);
$DrawPos += $this->GetBarSize('1', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('1', $xres) , $ySize);
$DrawPos += $this->GetBarSize('1', $xres);
$DrawPos += $this->GetBarSize('1', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('2', $xres) , $ySize);
$DrawPos += $this->GetBarSize('2', $xres);
return $DrawPos;
}
/**
* Draws the check-char code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawCheckChar($DrawPos, $yPos, $ySize, $xres) {
$cset = $this->GetCheckCharValue();
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[0], $xres) , $ySize);
$DrawPos += $this->GetBarSize($cset[0], $xres);
$DrawPos += $this->GetBarSize($cset[1], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[2], $xres) , $ySize);
$DrawPos += $this->GetBarSize($cset[2], $xres);
$DrawPos += $this->GetBarSize($cset[3], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[4], $xres) , $ySize);
$DrawPos += $this->GetBarSize($cset[4], $xres);
$DrawPos += $this->GetBarSize($cset[5], $xres);
return $DrawPos;
}
/**
* Draws the barcode object.
* @param int $xres Horizontal resolution.
* @return bool true in case of success.
*/
function DrawObject($xres) {
$len = strlen($this->mValue);
if (($size = $this->GetSize($xres))==0) {
return false;
}
if ($this->mStyle & BCS_ALIGN_CENTER) $sPos = (integer)(($this->mWidth - $size ) / 2);
else if ($this->mStyle & BCS_ALIGN_RIGHT) $sPos = $this->mWidth - $size;
else $sPos = 0;
/* Total height of bar code -Bars only- */
if ($this->mStyle & BCS_DRAW_TEXT) $ysize = $this->mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2 - $this->GetFontHeight($this->mFont);
else $ysize = $this->mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2;
/* Draw text */
if ($this->mStyle & BCS_DRAW_TEXT) {
if ($this->mStyle & BCS_STRETCH_TEXT) {
for ($i=0;$i<$len;$i++) {
$this->DrawChar($this->mFont, $sPos+(2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + BCD_C128_BAR_4*$xres)+($size/$len)*$i,
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, $this->mValue[$i]);
}
} else {/* Center */
$text_width = $this->GetFontWidth($this->mFont) * strlen($this->mValue);
$this->DrawText($this->mFont, $sPos+(($size-$text_width)/2)+(2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + BCD_C128_BAR_4*$xres),
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, $this->mValue);
}
}
$cPos = 0;
$DrawPos = $this->DrawStart($sPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
do {
$c = $this->GetCharIndex($this->mValue[$cPos]);
$cset = $this->mCharSet[$c];
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[0], $xres) , $ysize);
$DrawPos += $this->GetBarSize($cset[0], $xres);
$DrawPos += $this->GetBarSize($cset[1], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[2], $xres) , $ysize);
$DrawPos += $this->GetBarSize($cset[2], $xres);
$DrawPos += $this->GetBarSize($cset[3], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[4], $xres) , $ysize);
$DrawPos += $this->GetBarSize($cset[4], $xres);
$DrawPos += $this->GetBarSize($cset[5], $xres);
$cPos++;
} while ($cPos<$len);
$DrawPos = $this->DrawCheckChar($DrawPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
$DrawPos = $this->DrawStop($DrawPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
return true;
}
}
//============================================================+
// END OF FILE
//============================================================+
?>

View File

@ -1,419 +0,0 @@
<?php
//============================================================+
// File name : c128cobject.php
// Begin : 2002-07-31
// Last Update : 2004-12-29
// Author : Karim Mribti [barcode@mribti.com]
// : Sam Michaels [swampgas@swampgas.org]
// : Nicola Asuni [info@tecnick.com]
// Version : 0.0.8a 2001-04-01 (original code)
// License : GNU LGPL (Lesser General Public License) 2.1
// http://www.gnu.org/copyleft/lesser.txt
// Source Code : http://www.mribti.com/barcode/
//
// Description : Code 128-C Barcode Render Class for PHP using
// the GD graphics library.
// Code 128-C is numeric only and provides the
// most efficiency.
//
// NOTE:
// This version contains changes by Nicola Asuni:
// - porting to PHP4
// - code style and formatting
// - automatic php documentation in PhpDocumentor Style
// (www.phpdoc.org)
// - minor bug fixing
//============================================================+
/**
* Code 128-C Barcode Render Class for PHP using the GD graphics library.<br>
* Code 128-C is numeric only and provides the most efficiency.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
/**
* Code 128-C Barcode Render Class for PHP using the GD graphics library.<br>
* Code 128-C is numeric only and provides the most efficiency.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
class C128CObject extends BarcodeObject {
/**
* Class Constructor.
* @param int $Width Image width in pixels.
* @param int $Height Image height in pixels.
* @param int $Style Barcode style.
* @param int $Value value to print on barcode.
*/
function C128CObject($Width, $Height, $Style, $Value) {
$this->BarcodeObject($Width, $Height, $Style);
$this->mValue = $Value;
$this->mChars = array (
"00", "01", "02", "03", "04", "05", "06", "07", "08", "09",
"10", "11", "12", "13", "14", "15", "16", "17", "18", "19",
"20", "21", "22", "23", "24", "25", "26", "27", "28", "29",
"30", "31", "32", "33", "34", "35", "36", "37", "38", "39",
"40", "41", "42", "43", "44", "45", "46", "47", "48", "49",
"50", "51", "52", "53", "54", "55", "56", "57", "58", "59",
"60", "61", "62", "63", "64", "65", "66", "67", "68", "69",
"70", "71", "72", "73", "74", "75", "76", "77", "78", "79",
"80", "81", "82", "83", "84", "85", "86", "87", "88", "89",
"90", "91", "92", "93", "94", "95", "96", "97", "98", "99",
);
$this->mCharSet = array (
"212222", /* 00 */
"222122", /* 01 */
"222221", /* 02 */
"121223", /* 03 */
"121322", /* 04 */
"131222", /* 05 */
"122213", /* 06 */
"122312", /* 07 */
"132212", /* 08 */
"221213", /* 09 */
"221312", /* 10 */
"231212", /* 11 */
"112232", /* 12 */
"122132", /* 13 */
"122231", /* 14 */
"113222", /* 15 */
"123122", /* 16 */
"123221", /* 17 */
"223211", /* 18 */
"221132", /* 19 */
"221231", /* 20 */
"213212", /* 21 */
"223112", /* 22 */
"312131", /* 23 */
"311222", /* 24 */
"321122", /* 25 */
"321221", /* 26 */
"312212", /* 27 */
"322112", /* 28 */
"322211", /* 29 */
"212123", /* 30 */
"212321", /* 31 */
"232121", /* 32 */
"111323", /* 33 */
"131123", /* 34 */
"131321", /* 35 */
"112313", /* 36 */
"132113", /* 37 */
"132311", /* 38 */
"211313", /* 39 */
"231113", /* 40 */
"231311", /* 41 */
"112133", /* 42 */
"112331", /* 43 */
"132131", /* 44 */
"113123", /* 45 */
"113321", /* 46 */
"133121", /* 47 */
"313121", /* 48 */
"211331", /* 49 */
"231131", /* 50 */
"213113", /* 51 */
"213311", /* 52 */
"213131", /* 53 */
"311123", /* 54 */
"311321", /* 55 */
"331121", /* 56 */
"312113", /* 57 */
"312311", /* 58 */
"332111", /* 59 */
"314111", /* 60 */
"221411", /* 61 */
"431111", /* 62 */
"111224", /* 63 */
"111422", /* 64 */
"121124", /* 65 */
"121421", /* 66 */
"141122", /* 67 */
"141221", /* 68 */
"112214", /* 69 */
"112412", /* 70 */
"122114", /* 71 */
"122411", /* 72 */
"142112", /* 73 */
"142211", /* 74 */
"241211", /* 75 */
"221114", /* 76 */
"413111", /* 77 */
"241112", /* 78 */
"134111", /* 79 */
"111242", /* 80 */
"121142", /* 81 */
"121241", /* 82 */
"114212", /* 83 */
"124112", /* 84 */
"124211", /* 85 */
"411212", /* 86 */
"421112", /* 87 */
"421211", /* 88 */
"212141", /* 89 */
"214121", /* 90 */
"412121", /* 91 */
"111143", /* 92 */
"111341", /* 93 */
"131141", /* 94 */
"114113", /* 95 */
"114311", /* 96 */
"411113", /* 97 */
"411311", /* 98 */
"113141", /* 99 */
);
}
/**
* Returns the character index.
* @param char $char character.
* @return int character index or -1 in case of error.
* @access private
*/
function GetCharIndex($char) {
for ($i=0;$i<100;$i++) {
if ($this->mChars[$i] == $char) {
return $i;
}
}
return -1;
}
/**
* Returns the bar size.
* @param int $xres Horizontal resolution.
* @param char $char Character.
* @return int barcode size.
* @access private
*/
function GetBarSize($xres, $char) {
switch ($char) {
case '1': {
$cVal = BCD_C128_BAR_1;
break;
}
case '2': {
$cVal = BCD_C128_BAR_2;
break;
}
case '3': {
$cVal = BCD_C128_BAR_3;
break;
}
case '4': {
$cVal = BCD_C128_BAR_4;
break;
}
default: {
$cVal = 0;
}
}
return $cVal * $xres;
}
/**
* Returns barcode size.
* @param int $xres Horizontal resolution.
* @return barcode size.
* @access private
*/
function GetSize($xres) {
$len = strlen($this->mValue);
if ($len == 0) {
$this->mError = "Null value";
return false;
}
$ret = 0;
for ($i=0;$i<$len;$i++) {
if ((ord($this->mValue[$i])<48) || (ord($this->mValue[$i])>57)) {
$this->mError = "Code-128C is numeric only";
return false;
}
}
if (($len%2) != 0) {
$this->mError = "The length of barcode value must be even. You must pad the number with zeros.";
return false;
}
for ($i=0;$i<$len;$i+=2) {
$id = $this->GetCharIndex($this->mValue[$i].$this->mValue[$i+1]);
$cset = $this->mCharSet[$id];
$ret += $this->GetBarSize($xres, $cset[0]);
$ret += $this->GetBarSize($xres, $cset[1]);
$ret += $this->GetBarSize($xres, $cset[2]);
$ret += $this->GetBarSize($xres, $cset[3]);
$ret += $this->GetBarSize($xres, $cset[4]);
$ret += $this->GetBarSize($xres, $cset[5]);
}
/* length of Check character */
$cset = $this->GetCheckCharValue();
$CheckSize = 0;
for ($i=0;$i<6;$i++) {
$CheckSize += $this->GetBarSize($cset[$i], $xres);
}
$StartSize = 2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + BCD_C128_BAR_4*$xres;
$StopSize = 2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + 2*BCD_C128_BAR_3*$xres;
return $StartSize + $ret + $CheckSize + $StopSize;
}
/**
* Returns the check-char value.
* @return string.
* @access private
*/
function GetCheckCharValue() {
$len = strlen($this->mValue);
$sum = 105; // 'C' type;
$m = 0;
for ($i=0;$i<$len;$i+=2) {
$m++;
$sum += $this->GetCharIndex($this->mValue[$i].$this->mValue[$i+1]) * $m;
}
$check = $sum % 103;
return $this->mCharSet[$check];
}
/**
* Draws the start code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawStart($DrawPos, $yPos, $ySize, $xres) {
/* Start code is '211232' */
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('2', $xres) , $ySize);
$DrawPos += $this->GetBarSize('2', $xres);
$DrawPos += $this->GetBarSize('1', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('1', $xres) , $ySize);
$DrawPos += $this->GetBarSize('1', $xres);
$DrawPos += $this->GetBarSize('2', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('3', $xres) , $ySize);
$DrawPos += $this->GetBarSize('3', $xres);
$DrawPos += $this->GetBarSize('2', $xres);
return $DrawPos;
}
/**
* Draws the stop code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawStop($DrawPos, $yPos, $ySize, $xres) {
/* Stop code is '2331112' */
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('2', $xres) , $ySize);
$DrawPos += $this->GetBarSize('2', $xres);
$DrawPos += $this->GetBarSize('3', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('3', $xres) , $ySize);
$DrawPos += $this->GetBarSize('3', $xres);
$DrawPos += $this->GetBarSize('1', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('1', $xres) , $ySize);
$DrawPos += $this->GetBarSize('1', $xres);
$DrawPos += $this->GetBarSize('1', $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize('2', $xres) , $ySize);
$DrawPos += $this->GetBarSize('2', $xres);
return $DrawPos;
}
/**
* Draws the check-char code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawCheckChar($DrawPos, $yPos, $ySize, $xres) {
$cset = $this->GetCheckCharValue();
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[0], $xres) , $ySize);
$DrawPos += $this->GetBarSize($cset[0], $xres);
$DrawPos += $this->GetBarSize($cset[1], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[2], $xres) , $ySize);
$DrawPos += $this->GetBarSize($cset[2], $xres);
$DrawPos += $this->GetBarSize($cset[3], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[4], $xres) , $ySize);
$DrawPos += $this->GetBarSize($cset[4], $xres);
$DrawPos += $this->GetBarSize($cset[5], $xres);
return $DrawPos;
}
/**
* Draws the barcode object.
* @param int $xres Horizontal resolution.
* @return bool true in case of success.
*/
function DrawObject($xres) {
$len = strlen($this->mValue);
if (($size = $this->GetSize($xres))==0) {
return false;
}
if ($this->mStyle & BCS_ALIGN_CENTER) $sPos = (integer)(($this->mWidth - $size ) / 2);
else if ($this->mStyle & BCS_ALIGN_RIGHT) $sPos = $this->mWidth - $size;
else $sPos = 0;
/* Total height of bar code -Bars only- */
if ($this->mStyle & BCS_DRAW_TEXT) $ysize = $this->mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2 - $this->GetFontHeight($this->mFont);
else $ysize = $this->mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2;
/* Draw text */
if ($this->mStyle & BCS_DRAW_TEXT) {
if ($this->mStyle & BCS_STRETCH_TEXT) {
for ($i=0;$i<$len;$i++) {
$this->DrawChar($this->mFont, $sPos+(2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + BCD_C128_BAR_4*$xres)+($size/$len)*$i,
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, $this->mValue[$i]);
}
} else {/* Center */
$text_width = $this->GetFontWidth($this->mFont) * strlen($this->mValue);
$this->DrawText($this->mFont, $sPos+(($size-$text_width)/2)+(2*BCD_C128_BAR_2*$xres + 3*BCD_C128_BAR_1*$xres + BCD_C128_BAR_4*$xres),
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, $this->mValue);
}
}
$cPos = 0;
$DrawPos = $this->DrawStart($sPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
do {
$c = $this->GetCharIndex($this->mValue[$cPos].$this->mValue[$cPos+1]);
$cset = $this->mCharSet[$c];
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[0], $xres) , $ysize);
$DrawPos += $this->GetBarSize($cset[0], $xres);
$DrawPos += $this->GetBarSize($cset[1], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[2], $xres) , $ysize);
$DrawPos += $this->GetBarSize($cset[2], $xres);
$DrawPos += $this->GetBarSize($cset[3], $xres);
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, $this->GetBarSize($cset[4], $xres) , $ysize);
$DrawPos += $this->GetBarSize($cset[4], $xres);
$DrawPos += $this->GetBarSize($cset[5], $xres);
$cPos += 2;
} while ($cPos<$len);
$DrawPos = $this->DrawCheckChar($DrawPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
$DrawPos = $this->DrawStop($DrawPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
return true;
}
}
//============================================================+
// END OF FILE
//============================================================+
?>

View File

@ -1,283 +0,0 @@
<?php
//============================================================+
// File name : c39object.php
// Begin : 2002-07-31
// Last Update : 2004-12-29
// Author : Karim Mribti [barcode@mribti.com]
// : Nicola Asuni [info@tecnick.com]
// Version : 0.0.8a 2001-04-01 (original code)
// License : GNU LGPL (Lesser General Public License) 2.1
// http://www.gnu.org/copyleft/lesser.txt
// Source Code : http://www.mribti.com/barcode/
//
// Description : Code 39 Barcode Render Class for PHP using
// the GD graphics library.
// Code 39 is an alphanumeric bar code that can
// encode decimal number, case alphabet and some
// special symbols.
//
// NOTE:
// This version contains changes by Nicola Asuni:
// - porting to PHP4
// - code style and formatting
// - automatic php documentation in PhpDocumentor Style
// (www.phpdoc.org)
// - minor bug fixing
//============================================================+
/**
* Code 39 Barcode Render Class.<br>
* Code 39 is an alphanumeric bar code that can encode decimal number, case alphabet and some special symbols.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
/**
* Code 39 Barcode Render Class.<br>
* Code 39 is an alphanumeric bar code that can encode decimal number, case alphabet and some special symbols.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
class C39Object extends BarcodeObject {
/**
* Class Constructor.
* @param int $Width Image width in pixels.
* @param int $Height Image height in pixels.
* @param int $Style Barcode style.
* @param int $Value value to print on barcode.
*/
function C39Object($Width, $Height, $Style, $Value) {
$this->BarcodeObject($Width, $Height, $Style);
$this->mValue = $Value;
$this->mChars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. *$/+%";
$this->mCharSet = array (
/* 0 */ "000110100",
/* 1 */ "100100001",
/* 2 */ "001100001",
/* 3 */ "101100000",
/* 4 */ "000110001",
/* 5 */ "100110000",
/* 6 */ "001110000",
/* 7 */ "000100101",
/* 8 */ "100100100",
/* 9 */ "001100100",
/* A */ "100001001",
/* B */ "001001001",
/* C */ "101001000",
/* D */ "000011001",
/* E */ "100011000",
/* F */ "001011000",
/* G */ "000001101",
/* H */ "100001100",
/* I */ "001001100",
/* J */ "000011100",
/* K */ "100000011",
/* L */ "001000011",
/* M */ "101000010",
/* N */ "000010011",
/* O */ "100010010",
/* P */ "001010010",
/* Q */ "000000111",
/* R */ "100000110",
/* S */ "001000110",
/* T */ "000010110",
/* U */ "110000001",
/* V */ "011000001",
/* W */ "111000000",
/* X */ "010010001",
/* Y */ "110010000",
/* Z */ "011010000",
/* - */ "010000101",
/* . */ "110000100",
/* SP */ "011000100",
/* * */ "010010100",
/* $ */ "010101000",
/* / */ "010100010",
/* + */ "010001010",
/* % */ "000101010"
);
}
/**
* Returns the character index.
* @param char $char character.
* @return int character index or -1 in case of error.
* @access private
*/
function GetCharIndex($char) {
for ($i=0;$i<44;$i++) {
if ($this->mChars[$i] == $char) {
return $i;
}
}
return -1;
}
/**
* Returns barcode size.
* @param int $xres Horizontal resolution.
* @return barcode size.
* @access private
*/
function GetSize($xres) {
$len = strlen($this->mValue);
if ($len == 0) {
$this->mError = "Null value";
return false;
}
for ($i=0;$i<$len;$i++) {
if ($this->GetCharIndex($this->mValue[$i]) == -1 || $this->mValue[$i] == '*') {
/* The asterisk is only used as a start and stop code */
$this->mError = "C39 not include the char '".$this->mValue[$i]."'";
return false;
}
}
/* Start, Stop is 010010100 == '*' */
$StartSize = BCD_C39_NARROW_BAR * $xres * 6 + BCD_C39_WIDE_BAR * $xres * 3;
$StopSize = BCD_C39_NARROW_BAR * $xres * 6 + BCD_C39_WIDE_BAR * $xres * 3;
$CharSize = BCD_C39_NARROW_BAR * $xres * 6 + BCD_C39_WIDE_BAR * $xres * 3; /* Same for all chars */
return $CharSize * $len + $StartSize + $StopSize + /* Space between chars */ BCD_C39_NARROW_BAR * $xres * ($len-1);
}
/**
* Draws the start code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawStart($DrawPos, $yPos, $ySize, $xres) {
/* Start code is '*' */
$narrow = BCD_C39_NARROW_BAR * $xres;
$wide = BCD_C39_WIDE_BAR * $xres;
$this->DrawSingleBar($DrawPos, $yPos, $narrow , $ySize);
$DrawPos += $narrow;
$DrawPos += $wide;
$this->DrawSingleBar($DrawPos, $yPos, $narrow , $ySize);
$DrawPos += $narrow;
$DrawPos += $narrow;
$this->DrawSingleBar($DrawPos, $yPos, $wide , $ySize);
$DrawPos += $wide;
$DrawPos += $narrow;
$this->DrawSingleBar($DrawPos, $yPos, $wide , $ySize);
$DrawPos += $wide;
$DrawPos += $narrow;
$this->DrawSingleBar($DrawPos, $yPos, $narrow, $ySize);
$DrawPos += $narrow;
$DrawPos += $narrow; /* Space between chars */
return $DrawPos;
}
/**
* Draws the stop code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawStop($DrawPos, $yPos, $ySize, $xres) {
/* Stop code is '*' */
$narrow = BCD_C39_NARROW_BAR * $xres;
$wide = BCD_C39_WIDE_BAR * $xres;
$this->DrawSingleBar($DrawPos, $yPos, $narrow , $ySize);
$DrawPos += $narrow;
$DrawPos += $wide;
$this->DrawSingleBar($DrawPos, $yPos, $narrow , $ySize);
$DrawPos += $narrow;
$DrawPos += $narrow;
$this->DrawSingleBar($DrawPos, $yPos, $wide , $ySize);
$DrawPos += $wide;
$DrawPos += $narrow;
$this->DrawSingleBar($DrawPos, $yPos, $wide , $ySize);
$DrawPos += $wide;
$DrawPos += $narrow;
$this->DrawSingleBar($DrawPos, $yPos, $narrow, $ySize);
$DrawPos += $narrow;
return $DrawPos;
}
/**
* Draws the barcode object.
* @param int $xres Horizontal resolution.
* @return bool true in case of success.
*/
function DrawObject($xres) {
$len = strlen($this->mValue);
$narrow = BCD_C39_NARROW_BAR * $xres;
$wide = BCD_C39_WIDE_BAR * $xres;
if (($size = $this->GetSize($xres))==0) {
return false;
}
$cPos = 0;
if ($this->mStyle & BCS_ALIGN_CENTER) $sPos = (integer)(($this->mWidth - $size ) / 2);
else if ($this->mStyle & BCS_ALIGN_RIGHT) $sPos = $this->mWidth - $size;
else $sPos = 0;
/* Total height of bar code -Bars only- */
if ($this->mStyle & BCS_DRAW_TEXT) $ysize = $this->mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2 - $this->GetFontHeight($this->mFont);
else $ysize = $this->mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2;
/* Draw text */
if ($this->mStyle & BCS_DRAW_TEXT) {
if ($this->mStyle & BCS_STRETCH_TEXT) {
for ($i=0;$i<$len;$i++) {
$this->DrawChar($this->mFont, $sPos+($narrow*6+$wide*3)+($size/$len)*$i,
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, $this->mValue[$i]);
}
} else {/* Center */
$text_width = $this->GetFontWidth($this->mFont) * strlen($this->mValue);
$this->DrawText($this->mFont, $sPos+(($size-$text_width)/2)+($narrow*6+$wide*3),
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, $this->mValue);
}
}
$DrawPos = $this->DrawStart($sPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
do {
$c = $this->GetCharIndex($this->mValue[$cPos]);
$cset = $this->mCharSet[$c];
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, ($cset[0] == '0') ? $narrow : $wide , $ysize);
$DrawPos += ($cset[0] == '0') ? $narrow : $wide;
$DrawPos += ($cset[1] == '0') ? $narrow : $wide;
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, ($cset[2] == '0') ? $narrow : $wide , $ysize);
$DrawPos += ($cset[2] == '0') ? $narrow : $wide;
$DrawPos += ($cset[3] == '0') ? $narrow : $wide;
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, ($cset[4] == '0') ? $narrow : $wide , $ysize);
$DrawPos += ($cset[4] == '0') ? $narrow : $wide;
$DrawPos += ($cset[5] == '0') ? $narrow : $wide;
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, ($cset[6] == '0') ? $narrow : $wide , $ysize);
$DrawPos += ($cset[6] == '0') ? $narrow : $wide;
$DrawPos += ($cset[7] == '0') ? $narrow : $wide;
$this->DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, ($cset[8] == '0') ? $narrow : $wide , $ysize);
$DrawPos += ($cset[8] == '0') ? $narrow : $wide;
$DrawPos += $narrow; /* Space between chars */
$cPos++;
} while ($cPos<$len);
$DrawPos = $this->DrawStop($DrawPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
return true;
}
}
//============================================================+
// END OF FILE
//============================================================+
?>

View File

@ -1,217 +0,0 @@
<?php
//============================================================+
// File name : i25aobject.php
// Begin : 2002-07-31
// Last Update : 2004-12-29
// Author : Karim Mribti [barcode@mribti.com]
// : Nicola Asuni [info@tecnick.com]
// Version : 0.0.8a 2001-04-01 (original code)
// License : GNU LGPL (Lesser General Public License) 2.1
// http://www.gnu.org/copyleft/lesser.txt
// Source Code : http://www.mribti.com/barcode/
//
// Description : I25 Barcode Render Class for PHP using
// the GD graphics library.
// Interleaved 2 of 5 is a numeric only bar code
// with a optional check number.
//
// NOTE:
// This version contains changes by Nicola Asuni:
// - porting to PHP4
// - code style and formatting
// - automatic php documentation in PhpDocumentor Style
// (www.phpdoc.org)
// - minor bug fixing
//============================================================+
/**
* I25 Barcode Render Class for PHP using the GD graphics library.<br<
* Interleaved 2 of 5 is a numeric only bar code with a optional check number.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
/**
* I25 Barcode Render Class for PHP using the GD graphics library.<br<
* Interleaved 2 of 5 is a numeric only bar code with a optional check number.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
class I25Object extends BarcodeObject {
/**
* Class Constructor.
* @param int $Width Image width in pixels.
* @param int $Height Image height in pixels.
* @param int $Style Barcode style.
* @param int $Value value to print on barcode.
*/
function I25Object($Width, $Height, $Style, $Value) {
$this->BarcodeObject($Width, $Height, $Style);
$this->mValue = $Value;
$this->mCharSet = array (
/* 0 */ "00110",
/* 1 */ "10001",
/* 2 */ "01001",
/* 3 */ "11000",
/* 4 */ "00101",
/* 5 */ "10100",
/* 6 */ "01100",
/* 7 */ "00011",
/* 8 */ "10010",
/* 9 */ "01010"
);
}
/**
* Returns barcode size.
* @param int $xres Horizontal resolution.
* @return barcode size.
* @access private
*/
function GetSize($xres) {
$len = strlen($this->mValue);
if ($len == 0) {
$this->mError = "Null value";
return false;
}
for ($i=0;$i<$len;$i++) {
if ((ord($this->mValue[$i])<48) || (ord($this->mValue[$i])>57)) {
$this->mError = "I25 is numeric only";
return false;
}
}
if (($len%2) != 0) {
$this->mError = "The length of barcode value must be even";
return false;
}
$StartSize = BCD_I25_NARROW_BAR * 4 * $xres;
$StopSize = BCD_I25_WIDE_BAR * $xres + 2 * BCD_I25_NARROW_BAR * $xres;
$cPos = 0;
$sPos = 0;
do {
$c1 = $this->mValue[$cPos];
$c2 = $this->mValue[$cPos+1];
$cset1 = $this->mCharSet[$c1];
$cset2 = $this->mCharSet[$c2];
for ($i=0;$i<5;$i++) {
$type1 = ($cset1[$i]==0) ? (BCD_I25_NARROW_BAR * $xres) : (BCD_I25_WIDE_BAR * $xres);
$type2 = ($cset2[$i]==0) ? (BCD_I25_NARROW_BAR * $xres) : (BCD_I25_WIDE_BAR * $xres);
$sPos += ($type1 + $type2);
}
$cPos+=2;
} while ($cPos<$len);
return $sPos + $StartSize + $StopSize;
}
/**
* Draws the start code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawStart($DrawPos, $yPos, $ySize, $xres) {
/* Start code is "0000" */
$this->DrawSingleBar($DrawPos, $yPos, BCD_I25_NARROW_BAR * $xres , $ySize);
$DrawPos += BCD_I25_NARROW_BAR * $xres;
$DrawPos += BCD_I25_NARROW_BAR * $xres;
$this->DrawSingleBar($DrawPos, $yPos, BCD_I25_NARROW_BAR * $xres , $ySize);
$DrawPos += BCD_I25_NARROW_BAR * $xres;
$DrawPos += BCD_I25_NARROW_BAR * $xres;
return $DrawPos;
}
/**
* Draws the stop code.
* @param int $DrawPos Drawing position.
* @param int $yPos Vertical position.
* @param int $ySize Vertical size.
* @param int $xres Horizontal resolution.
* @return int drawing position.
* @access private
*/
function DrawStop($DrawPos, $yPos, $ySize, $xres) {
/* Stop code is "100" */
$this->DrawSingleBar($DrawPos, $yPos, BCD_I25_WIDE_BAR * $xres , $ySize);
$DrawPos += BCD_I25_WIDE_BAR * $xres;
$DrawPos += BCD_I25_NARROW_BAR * $xres;
$this->DrawSingleBar($DrawPos, $yPos, BCD_I25_NARROW_BAR * $xres , $ySize);
$DrawPos += BCD_I25_NARROW_BAR * $xres;
return $DrawPos;
}
/**
* Draws the barcode object.
* @param int $xres Horizontal resolution.
* @return bool true in case of success.
*/
function DrawObject($xres) {
$len = strlen($this->mValue);
if (($size = $this->GetSize($xres))==0) {
return false;
}
$cPos = 0;
if ($this->mStyle & BCS_DRAW_TEXT) $ysize = $this->mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2 - $this->GetFontHeight($this->mFont);
else $ysize = $this->mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2;
if ($this->mStyle & BCS_ALIGN_CENTER) $sPos = (integer)(($this->mWidth - $size ) / 2);
else if ($this->mStyle & BCS_ALIGN_RIGHT) $sPos = $this->mWidth - $size;
else $sPos = 0;
if ($this->mStyle & BCS_DRAW_TEXT) {
if ($this->mStyle & BCS_STRETCH_TEXT) {
/* Stretch */
for ($i=0;$i<$len;$i++) {
$this->DrawChar($this->mFont, $sPos+BCD_I25_NARROW_BAR*4*$xres+($size/$len)*$i,
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET , $this->mValue[$i]);
}
}else {/* Center */
$text_width = $this->GetFontWidth($this->mFont) * strlen($this->mValue);
$this->DrawText($this->mFont, $sPos+(($size-$text_width)/2)+(BCD_I25_NARROW_BAR*4*$xres),
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, $this->mValue);
}
}
$sPos = $this->DrawStart($sPos, BCD_DEFAULT_MAR_Y1, $ysize, $xres);
do {
$c1 = $this->mValue[$cPos];
$c2 = $this->mValue[$cPos+1];
$cset1 = $this->mCharSet[$c1];
$cset2 = $this->mCharSet[$c2];
for ($i=0;$i<5;$i++) {
$type1 = ($cset1[$i]==0) ? (BCD_I25_NARROW_BAR * $xres) : (BCD_I25_WIDE_BAR * $xres);
$type2 = ($cset2[$i]==0) ? (BCD_I25_NARROW_BAR * $xres) : (BCD_I25_WIDE_BAR * $xres);
$this->DrawSingleBar($sPos, BCD_DEFAULT_MAR_Y1, $type1 , $ysize);
$sPos += ($type1 + $type2);
}
$cPos+=2;
} while ($cPos<$len);
$sPos = $this->DrawStop($sPos, BCD_DEFAULT_MAR_Y1, $ysize, $xres);
return true;
}
}
//============================================================+
// END OF FILE
//============================================================+
?>

View File

@ -1,88 +0,0 @@
<?php
//============================================================+
// File name : image.php
// Begin : 2002-07-31
// Last Update : 2005-01-08
// Author : Karim Mribti [barcode@mribti.com]
// : Nicola Asuni [info@tecnick.com]
// Version : 0.0.8a 2001-04-01 (original code)
// License : GNU LGPL (Lesser General Public License) 2.1
// http://www.gnu.org/copyleft/lesser.txt
// Source Code : http://www.mribti.com/barcode/
//
// Description : Barcode Image Rendering.
//
// NOTE:
// This version contains changes by Nicola Asuni:
// - porting to PHP5
// - code style and formatting
// - automatic php documentation in PhpDocumentor Style
// (www.phpdoc.org)
// - minor bug fixing
//============================================================+
/**
* Barcode Image Rendering.
* @author Karim Mribti, Nicola Asuni
* @name BarcodeObject
* @package com.tecnick.tcpdf
* @version 0.0.8a 2001-04-01 (original code)
* @since 2001-03-25
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
/**
*
*/
require("../../shared/barcode/barcode.php");
require("../../shared/barcode/i25object.php");
require("../../shared/barcode/c39object.php");
require("../../shared/barcode/c128aobject.php");
require("../../shared/barcode/c128bobject.php");
require("../../shared/barcode/c128cobject.php");
if (!isset($_REQUEST['style'])) $_REQUEST['style'] = BCD_DEFAULT_STYLE;
if (!isset($_REQUEST['width'])) $_REQUEST['width'] = BCD_DEFAULT_WIDTH;
if (!isset($_REQUEST['height'])) $_REQUEST['height'] = BCD_DEFAULT_HEIGHT;
if (!isset($_REQUEST['xres'])) $_REQUEST['xres'] = BCD_DEFAULT_XRES;
if (!isset($_REQUEST['font'])) $_REQUEST['font'] = BCD_DEFAULT_FONT;
if (!isset($_REQUEST['type'])) $_REQUEST['type'] = "C39";
if (!isset($_REQUEST['code'])) $_REQUEST['code'] = "";
switch (strtoupper($_REQUEST['type'])) {
case "I25": {
$obj = new I25Object($_REQUEST['width'], $_REQUEST['height'], $_REQUEST['style'], $_REQUEST['code']);
break;
}
case "C128A": {
$obj = new C128AObject($_REQUEST['width'], $_REQUEST['height'], $_REQUEST['style'], $_REQUEST['code']);
break;
}
case "C128B": {
$obj = new C128BObject($_REQUEST['width'], $_REQUEST['height'], $_REQUEST['style'], $_REQUEST['code']);
break;
}
case "C128C": {
$obj = new C128CObject($_REQUEST['width'], $_REQUEST['height'], $_REQUEST['style'], $_REQUEST['code']);
break;
}
case "C39":
default: {
$obj = new C39Object($_REQUEST['width'], $_REQUEST['height'], $_REQUEST['style'], $_REQUEST['code']);
break;
}
}
if ($obj) {
$obj->SetFont($_REQUEST['font']);
$obj->DrawObject($_REQUEST['xres']);
$obj->FlushObject();
$obj->DestroyObject();
unset($obj); /* clean */
}
//============================================================+
// END OF FILE
//============================================================+
?>

View File

@ -1,504 +0,0 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it. You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.
When we speak of free software, we are referring to freedom of use,
not price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.
To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights. These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.
To protect each distributor, we want to make it very clear that
there is no warranty for the free library. Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.
Finally, software patents pose a constant threat to the existence of
any free program. We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder. Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.
Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License. This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License. We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.
When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library. The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom. The Lesser General
Public License permits more lax criteria for linking other code with
the library.
We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License. It also provides other free software developers Less
of an advantage over competing non-free programs. These disadvantages
are the reason we use the ordinary General Public License for many
libraries. However, the Lesser license provides advantages in certain
special circumstances.
For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard. To achieve this, non-free programs must be
allowed to use the library. A more frequent case is that a free
library does the same job as widely used non-free libraries. In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.
In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software. For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.
Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.
GNU LESSER GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (1) uses at run time a
copy of the library already present on the user's computer system,
rather than copying library functions into the executable, and (2)
will operate properly with a modified version of the library, if
the user installs one, as long as the modified version is
interface-compatible with the version that the work was made with.
c) Accompany the work with a written offer, valid for at
least three years, to give the same user the materials
specified in Subsection 6a, above, for a charge no more
than the cost of performing this distribution.
d) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
e) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded. In such case, this License incorporates the limitation as if
written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Libraries
If you develop a new library, and you want it to be of the greatest
possible use to the public, we recommend making it free software that
everyone can redistribute and change. You can do so by permitting
redistribution under these terms (or, alternatively, under the terms of the
ordinary General Public License).
To apply these terms, attach the following notices to the library. It is
safest to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least the
"copyright" line and a pointer to where the full notice is found.
<one line to give the library's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the library, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
<signature of Ty Coon>, 1 April 1990
Ty Coon, President of Vice
That's all there is to it!

View File

@ -1,49 +0,0 @@
<?php
//============================================================+
// File name : eng.php
// Begin : 2004-03-03
// Last Update : 2005-03-19
//
// Description : Language module for TCPDF
// (contains translated texts)
//
//
// Author: Nicola Asuni
//
// (c) Copyright:
// Tecnick.com S.r.l.
// Via Ugo Foscolo n.19
// 09045 Quartu Sant'Elena (CA)
// ITALY
// www.tecnick.com
// info@tecnick.com
//============================================================+
/**
* TCPDF language file (contains translated texts).
* @package com.tecnick.tcpdf
* @abstract TCPDF language file.
* @author Nicola Asuni
* @copyright 2004 Tecnick.com S.r.l (www.tecnick.com) Via Ugo Foscolo n.19 - 09045 Quartu Sant'Elena (CA) - ITALY - www.tecnick.com - info@tecnick.com
* @link http://tcpdf.sourceforge.net
* @license http://www.gnu.org/copyleft/lesser.html LGPL
* @since 2004-03-03
*/
// ENGLISH
$l = Array();
// PAGE META DESCRIPTORS --------------------------------------
$l['a_meta_charset'] = "UTF-8";
$l['a_meta_dir'] = "ltr";
$l['a_meta_language'] = "en";
// TRANSLATIONS --------------------------------------
$l['w_page'] = "page";
//============================================================+
// END OF FILE
//============================================================+
?>

View File

@ -1,191 +0,0 @@
<?php
//============================================================+
// File name : tcpdf_config.php
// Begin : 2004-06-11
// Last Update : 2006-05-18
//
// Description : Congiguration file for TCPDF.
//
// Author: Nicola Asuni
//
// (c) Copyright:
// Tecnick.com S.r.l.
// Via Ugo Foscolo n.19
// 09045 Quartu Sant'Elena (CA)
// ITALY
// www.tecnick.com
// info@tecnick.com
//============================================================+
/**
* Congiguration file for TCPDF.
* @author Nicola Asuni
* @copyright Copyright &copy; 2004, Tecnick.com S.r.l. - Via Ugo Foscolo n.19 - 09045 Quartu Sant'Elena (CA) - ITALY - www.tecnick.com - info@tecnick.com
* @package com.tecnick.tcpdf
* @version 1.53.0.TC017
* @link http://tcpdf.sourceforge.net
* @license http://www.gnu.org/copyleft/lesser.html LGPL
* @since 2004-06-11
*/
// PLEASE SET THE FOLLOWING CONSTANTS:
/**
* installation path
*/
define ("K_PATH_MAIN", DOL_DOCUMENT_ROOT ."/includes/fpdf/tcpdf/");
/**
* url path
*/
define ("K_PATH_URL", DOL_URL_ROOT ."/includes/fpdf/tcpdf/");
/**
* path for PDF fonts
*/
define ("FPDF_FONTPATH", K_PATH_MAIN."fonts/");
/**
* cache directory for temporary files (full path)
*/
define ("K_PATH_CACHE", K_PATH_MAIN."cache/");
/**
* cache directory for temporary files (url path)
*/
define ("K_PATH_URL_CACHE", K_PATH_URL."cache/");
/**
*images directory
*/
define ("K_PATH_IMAGES", K_PATH_MAIN."images/");
/**
* blank image
*/
define ("K_BLANK_IMAGE", K_PATH_IMAGES."_blank.png");
/**
* page format
*/
define ("PDF_PAGE_FORMAT", "A4");
/**
* page orientation (P=portrait, L=landscape)
*/
define ("PDF_PAGE_ORIENTATION", "P");
/**
* document creator
*/
define ("PDF_CREATOR", "pdf creator");
/**
* document author
*/
define ("PDF_AUTHOR", "pdf author");
/**
* header title
*/
define ("PDF_HEADER_TITLE", "header title");
/**
* header description string
*/
define ("PDF_HEADER_STRING", "first row\nsecond row\nthird row");
/**
* image logo
*/
define ("PDF_HEADER_LOGO", "logo_example.png");
/**
* header logo image width [mm]
*/
define ("PDF_HEADER_LOGO_WIDTH", 20);
/**
* document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]
*/
define ("PDF_UNIT", "mm");
/**
* header margin
*/
define ("PDF_MARGIN_HEADER", 5);
/**
* footer margin
*/
define ("PDF_MARGIN_FOOTER", 10);
/**
* top margin
*/
define ("PDF_MARGIN_TOP", 27);
/**
* bottom margin
*/
define ("PDF_MARGIN_BOTTOM", 25);
/**
* left margin
*/
define ("PDF_MARGIN_LEFT", 15);
/**
* right margin
*/
define ("PDF_MARGIN_RIGHT", 15);
/**
* main font name
*/
define ("PDF_FONT_NAME_MAIN", "FreeSans"); //vera
/**
* main font size
*/
define ("PDF_FONT_SIZE_MAIN", 10);
/**
* data font name
*/
define ("PDF_FONT_NAME_DATA", "FreeSerif"); //verase
/**
* data font size
*/
define ("PDF_FONT_SIZE_DATA", 8);
/**
* scale factor for images (number of points in user unit)
*/
define ("PDF_IMAGE_SCALE_RATIO", 4);
/**
* magnification factor for titles
*/
define("HEAD_MAGNIFICATION", 1.1);
/**
* height of cell repect font height
*/
define("K_CELL_HEIGHT_RATIO", 1.25);
/**
* title magnification respect main font size
*/
define("K_TITLE_MAGNIFICATION", 1.3);
/**
* reduction factor for small font
*/
define("K_SMALL_RATIO", 2/3);
//============================================================+
// END OF FILE
//============================================================+
?>

View File

@ -1,13 +0,0 @@
<html>
<head>
<title>TCPDF Documentation</title>
<link rel="stylesheet" href="media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div align="center"><h1>TCPDF Documentation</h1></div>
<b>Welcome to com.tecnick.com.tcpdf!</b><br />
<br />
This documentation was generated by <a href="http://www.phpdoc.org">phpDocumentor v1.3.0RC3</a><br />
</body>
</html>

View File

@ -1,30 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title></title>
<link rel="stylesheet" href="media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<!-- Start of Class Data -->
<H2>
</H2>
<h2>Root class BarcodeObject</h2>
<ul>
<li><a href="com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a><ul>
<li><a href="com.tecnick.tcpdf/C39Object.html">C39Object</a></li><li><a href="com.tecnick.tcpdf/C128AObject.html">C128AObject</a></li><li><a href="com.tecnick.tcpdf/C128BObject.html">C128BObject</a></li><li><a href="com.tecnick.tcpdf/C128CObject.html">C128CObject</a></li><li><a href="com.tecnick.tcpdf/I25Object.html">I25Object</a></li></ul></li>
</ul>
<h2>Root class TCPDF</h2>
<ul>
<li><a href="com.tecnick.tcpdf/TCPDF.html">TCPDF</a></li></ul>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:50 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</body>
</html>

View File

@ -1,961 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs For Class BarcodeObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="class-name">Class BarcodeObject</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-descendents">Descendents</a>
| <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>)
| <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Barcode Render Class for PHP using the GD graphics library.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
<p class="notes">
Located in <a class="field" href="_tcpdf_php4_barcode_barcode_php.html">/barcode/barcode.php</a> (line <span class="field">209</span>)
</p>
<pre></pre>
</div>
</div>
<a name="sec-descendents"></a>
<div class="info-box">
<div class="info-box-title">Direct descendents</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Descendents</span>
| <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>)
| <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<table cellpadding="2" cellspacing="0" class="class-table">
<tr>
<th class="class-table-header">Class</th>
<th class="class-table-header">Description</th>
</tr>
<tr>
<td style="padding-right: 2em"><a href="../com.tecnick.tcpdf/C39Object.html">C39Object</a></td>
<td>
Code 39 Barcode Render Class.<br /> Code 39 is an alphanumeric bar code that can encode decimal number, case alphabet and some special symbols.
</td>
</tr>
<tr>
<td style="padding-right: 2em"><a href="../com.tecnick.tcpdf/C128AObject.html">C128AObject</a></td>
<td>
Code 128-A Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-A is a continuous, multilevel and include all upper case alphanumeric characters and ASCII control characters.
</td>
</tr>
<tr>
<td style="padding-right: 2em"><a href="../com.tecnick.tcpdf/C128BObject.html">C128BObject</a></td>
<td>
Code 128-B Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-B is a continuous, multilevel and full ASCII code.
</td>
</tr>
<tr>
<td style="padding-right: 2em"><a href="../com.tecnick.tcpdf/C128CObject.html">C128CObject</a></td>
<td>
Code 128-C Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-C is numeric only and provides the most efficiency.
</td>
</tr>
<tr>
<td style="padding-right: 2em"><a href="../com.tecnick.tcpdf/I25Object.html">I25Object</a></td>
<td>
I25 Barcode Render Class for PHP using the GD graphics library.
</td>
</tr>
</table>
</div>
</div>
<a name="sec-var-summary"></a>
<div class="info-box">
<div class="info-box-title">Variable Summary</span></div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-descendents">Descendents</a> |
<span class="disabled">Vars</span> (<a href="#sec-vars">details</a>)
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<div class="var-summary">
<div class="var-title">
<span class="var-type">Background</span>
<a href="#$mBgcolor" title="details" class="var-name">$mBgcolor</a>
</div>
<div class="var-title">
<span class="var-type">Brush</span>
<a href="#$mBrush" title="details" class="var-name">$mBrush</a>
</div>
<div class="var-title">
<span class="var-type">Allowed</span>
<a href="#$mChars" title="details" class="var-name">$mChars</a>
</div>
<div class="var-title">
<span class="var-type">Character</span>
<a href="#$mCharSet" title="details" class="var-name">$mCharSet</a>
</div>
<div class="var-title">
<span class="var-type">Error</span>
<a href="#$mError" title="details" class="var-name">$mError</a>
</div>
<div class="var-title">
<span class="var-type">Numeric</span>
<a href="#$mFont" title="details" class="var-name">$mFont</a>
</div>
<div class="var-title">
<span class="var-type">Image</span>
<a href="#$mHeight" title="details" class="var-name">$mHeight</a>
</div>
<div class="var-title">
<span class="var-type">Image</span>
<a href="#$mImg" title="details" class="var-name">$mImg</a>
</div>
<div class="var-title">
<span class="var-type">Numeric</span>
<a href="#$mStyle" title="details" class="var-name">$mStyle</a>
</div>
<div class="var-title">
<span class="var-type">Image</span>
<a href="#$mWidth" title="details" class="var-name">$mWidth</a>
</div>
</div>
</div>
</div>
<a name="sec-method-summary"></a>
<div class="info-box">
<div class="info-box-title">Method Summary</span></div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-descendents">Descendents</a> |
<a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>)
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<div class="method-summary">
<div class="method-definition">
<span class="method-result">BarcodeObject</span>
<a href="#BarcodeObject" title="details" class="method-name">BarcodeObject</a>
([<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span> = <span class="var-default">BCD_DEFAULT_WIDTH</span>], [<span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span> = <span class="var-default">BCD_DEFAULT_HEIGHT</span>], [<span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span> = <span class="var-default">BCD_DEFAULT_STYLE</span>])
</div>
<div class="method-definition">
<span class="method-result">void</span>
<a href="#DestroyObject" title="details" class="method-name">DestroyObject</a>
()
</div>
<div class="method-definition">
<span class="method-result">void</span>
<a href="#DrawBorder" title="details" class="method-name">DrawBorder</a>
()
</div>
<div class="method-definition">
<span class="method-result">void</span>
<a href="#DrawChar" title="details" class="method-name">DrawChar</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Font</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Char</span>)
</div>
<div class="method-definition">
<span class="method-result">void</span>
<a href="#DrawObject" title="details" class="method-name">DrawObject</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">bool</span>
<a href="#DrawSingleBar" title="details" class="method-name">DrawSingleBar</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xSize</span>, <span class="var-type">mixed</span>&nbsp;<span class="var-name">$ySize</span>)
</div>
<div class="method-definition">
<span class="method-result">void</span>
<a href="#DrawText" title="details" class="method-name">DrawText</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Font</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Char</span>)
</div>
<div class="method-definition">
<span class="method-result">void</span>
<a href="#FlushObject" title="details" class="method-name">FlushObject</a>
()
</div>
<div class="method-definition">
<span class="method-result">string</span>
<a href="#GetError" title="details" class="method-name">GetError</a>
()
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#GetFontHeight" title="details" class="method-name">GetFontHeight</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$font</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#GetFontWidth" title="details" class="method-name">GetFontWidth</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$font</span>)
</div>
<div class="method-definition">
<span class="method-result">object image.</span>
<a href="#getImage" title="details" class="method-name">getImage</a>
()
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#GetStyle" title="details" class="method-name">GetStyle</a>
()
</div>
<div class="method-definition">
<span class="method-result">void</span>
<a href="#SetFont" title="details" class="method-name">SetFont</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$font</span>)
</div>
<div class="method-definition">
<span class="method-result">void</span>
<a href="#SetStyle" title="details" class="method-name">SetStyle</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>)
</div>
</div>
</div>
</div>
<a name="sec-vars"></a>
<div class="info-box">
<div class="info-box-title">Variables</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-descendents">Descendents</a> |
<a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>)
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<a name="var$mBgcolor" id="$mBgcolor"><!-- --></A>
<div class="evenrow">
<div class="var-header">
<span class="var-title">
<span class="var-type">Background</span>
<span class="var-name">$mBgcolor</span>
(line <span class="line-number">232</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<ul class="tags">
<li><span class="field">var:</span> color.</li>
<li><span class="field">access:</span> protected</li>
</ul>
</div>
<a name="var$mBrush" id="$mBrush"><!-- --></A>
<div class="oddrow">
<div class="var-header">
<span class="var-title">
<span class="var-type">Brush</span>
<span class="var-name">$mBrush</span>
(line <span class="line-number">238</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<ul class="tags">
<li><span class="field">var:</span> color.</li>
<li><span class="field">access:</span> protected</li>
</ul>
</div>
<a name="var$mChars" id="$mChars"><!-- --></A>
<div class="evenrow">
<div class="var-header">
<span class="var-title">
<span class="var-type">Allowed</span>
<span class="var-name">$mChars</span>
(line <span class="line-number">268</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<ul class="tags">
<li><span class="field">var:</span> symbols.</li>
<li><span class="field">access:</span> protected</li>
</ul>
</div>
<a name="var$mCharSet" id="$mCharSet"><!-- --></A>
<div class="oddrow">
<div class="var-header">
<span class="var-title">
<span class="var-type">Character</span>
<span class="var-name">$mCharSet</span>
(line <span class="line-number">262</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<ul class="tags">
<li><span class="field">var:</span> Set.</li>
<li><span class="field">access:</span> protected</li>
</ul>
</div>
<a name="var$mError" id="$mError"><!-- --></A>
<div class="evenrow">
<div class="var-header">
<span class="var-title">
<span class="var-type">Error</span>
<span class="var-name">$mError</span>
(line <span class="line-number">256</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<ul class="tags">
<li><span class="field">var:</span> message.</li>
<li><span class="field">access:</span> protected</li>
</ul>
</div>
<a name="var$mFont" id="$mFont"><!-- --></A>
<div class="oddrow">
<div class="var-header">
<span class="var-title">
<span class="var-type">Numeric</span>
<span class="var-name">$mFont</span>
(line <span class="line-number">250</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<ul class="tags">
<li><span class="field">var:</span> code for character font.</li>
<li><span class="field">access:</span> protected</li>
</ul>
</div>
<a name="var$mHeight" id="$mHeight"><!-- --></A>
<div class="evenrow">
<div class="var-header">
<span class="var-title">
<span class="var-type">Image</span>
<span class="var-name">$mHeight</span>
(line <span class="line-number">220</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<ul class="tags">
<li><span class="field">var:</span> height in pixels.</li>
<li><span class="field">access:</span> protected</li>
</ul>
</div>
<a name="var$mImg" id="$mImg"><!-- --></A>
<div class="oddrow">
<div class="var-header">
<span class="var-title">
<span class="var-type">Image</span>
<span class="var-name">$mImg</span>
(line <span class="line-number">244</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<ul class="tags">
<li><span class="field">var:</span> object.</li>
<li><span class="field">access:</span> protected</li>
</ul>
</div>
<a name="var$mStyle" id="$mStyle"><!-- --></A>
<div class="evenrow">
<div class="var-header">
<span class="var-title">
<span class="var-type">Numeric</span>
<span class="var-name">$mStyle</span>
(line <span class="line-number">226</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<ul class="tags">
<li><span class="field">var:</span> code for Barcode style.</li>
<li><span class="field">access:</span> protected</li>
</ul>
</div>
<a name="var$mWidth" id="$mWidth"><!-- --></A>
<div class="oddrow">
<div class="var-header">
<span class="var-title">
<span class="var-type">Image</span>
<span class="var-name">$mWidth</span>
(line <span class="line-number">214</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<ul class="tags">
<li><span class="field">var:</span> width in pixels.</li>
<li><span class="field">access:</span> protected</li>
</ul>
</div>
</div>
</div>
<a name="sec-methods"></a>
<div class="info-box">
<div class="info-box-title">Methods</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-descendents">Descendents</a> |
<a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>)
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
</div>
<div class="info-box-body">
<A NAME='method_detail'></A>
<a name="methodBarcodeObject" id="BarcodeObject"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">Constructor BarcodeObject</span> (line <span class="line-number">276</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Class Constructor.</p>
<div class="method-signature">
<span class="method-result">BarcodeObject</span>
<span class="method-name">
BarcodeObject
</span>
([<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span> = <span class="var-default">BCD_DEFAULT_WIDTH</span>], [<span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span> = <span class="var-default">BCD_DEFAULT_HEIGHT</span>], [<span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span> = <span class="var-default">BCD_DEFAULT_STYLE</span>])
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$Width</span><span class="var-description">: Image width in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Height</span><span class="var-description">: Image height in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Style</span><span class="var-description">: Barcode style.</span> </li>
</ul>
</div>
<a name="methodDestroyObject" id="DestroyObject"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DestroyObject</span> (line <span class="line-number">433</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Destroy the barcode image.</p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
DestroyObject
</span>
()
</div>
</div>
<a name="methodDrawBorder" id="DrawBorder"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawBorder</span> (line <span class="line-number">316</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the barcode border.</p>
<ul class="tags">
<li><span class="field">access:</span> protected</li>
</ul>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
DrawBorder
</span>
()
</div>
</div>
<a name="methodDrawChar" id="DrawChar"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawChar</span> (line <span class="line-number">328</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the alphanumeric code.</p>
<ul class="tags">
<li><span class="field">access:</span> protected</li>
</ul>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
DrawChar
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Font</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Char</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$Font</span><span class="var-description">: Font type.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xPos</span><span class="var-description">: Horiziontal position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Char</span><span class="var-description">: Alphanumeric code to write.</span> </li>
</ul>
</div>
<a name="methodDrawObject" id="DrawObject"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawObject</span> (line <span class="line-number">307</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Abstract method used to draw the barcode image.</p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
DrawObject
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
<hr class="separator" />
<div class="notes">Redefined in descendants as:</div>
<ul class="redefinitions">
<li>
<a href="../com.tecnick.tcpdf/C39Object.html#methodDrawObject">C39Object::DrawObject()</a>
: Draws the barcode object.
</li>
<li>
<a href="../com.tecnick.tcpdf/C128AObject.html#methodDrawObject">C128AObject::DrawObject()</a>
: Draws the barcode object.
</li>
<li>
<a href="../com.tecnick.tcpdf/C128BObject.html#methodDrawObject">C128BObject::DrawObject()</a>
: Draws the barcode object.
</li>
<li>
<a href="../com.tecnick.tcpdf/C128CObject.html#methodDrawObject">C128CObject::DrawObject()</a>
: Draws the barcode object.
</li>
<li>
<a href="../com.tecnick.tcpdf/I25Object.html#methodDrawObject">I25Object::DrawObject()</a>
: Draws the barcode object.
</li>
</ul>
</div>
<a name="methodDrawSingleBar" id="DrawSingleBar"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawSingleBar</span> (line <span class="line-number">353</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws a single barcode bar.</p>
<ul class="tags">
<li><span class="field">return:</span> trur in case of success, false otherwise.</li>
<li><span class="field">access:</span> protected</li>
</ul>
<div class="method-signature">
<span class="method-result">bool</span>
<span class="method-name">
DrawSingleBar
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xSize</span>, <span class="var-type">mixed</span>&nbsp;<span class="var-name">$ySize</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xPos</span><span class="var-description">: Horiziontal position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xSize</span><span class="var-description">: Vertical size.</span> </li>
</ul>
</div>
<a name="methodDrawText" id="DrawText"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawText</span> (line <span class="line-number">340</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws a character string.</p>
<ul class="tags">
<li><span class="field">access:</span> protected</li>
</ul>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
DrawText
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Font</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Char</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$Font</span><span class="var-description">: Font type.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xPos</span><span class="var-description">: Horiziontal position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Char</span><span class="var-description">: string to write.</span> </li>
</ul>
</div>
<a name="methodFlushObject" id="FlushObject"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">FlushObject</span> (line <span class="line-number">417</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Flush the barcode image.</p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
FlushObject
</span>
()
</div>
</div>
<a name="methodGetError" id="GetError"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">GetError</span> (line <span class="line-number">368</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the current error message.</p>
<ul class="tags">
<li><span class="field">return:</span> error message.</li>
</ul>
<div class="method-signature">
<span class="method-result">string</span>
<span class="method-name">
GetError
</span>
()
</div>
</div>
<a name="methodGetFontHeight" id="GetFontHeight"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">GetFontHeight</span> (line <span class="line-number">377</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the font height.</p>
<ul class="tags">
<li><span class="field">return:</span> font height.</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
GetFontHeight
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$font</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$font</span><span class="var-description">: font type.</span> </li>
</ul>
</div>
<a name="methodGetFontWidth" id="GetFontWidth"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">GetFontWidth</span> (line <span class="line-number">386</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the font width.</p>
<ul class="tags">
<li><span class="field">return:</span> font width.</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
GetFontWidth
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$font</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$font</span><span class="var-description">: font type.</span> </li>
</ul>
</div>
<a name="methodgetImage" id="getImage"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">getImage</span> (line <span class="line-number">299</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the image object.</p>
<ul class="tags">
<li><span class="field">since:</span> 1.5.2</li>
<li><span class="field">author:</span> Nicola Asuni</li>
</ul>
<div class="method-signature">
<span class="method-result">object image.</span>
<span class="method-name">
getImage
</span>
()
</div>
</div>
<a name="methodGetStyle" id="GetStyle"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">GetStyle</span> (line <span class="line-number">402</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns barcode style.</p>
<ul class="tags">
<li><span class="field">return:</span> barcode style.</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
GetStyle
</span>
()
</div>
</div>
<a name="methodSetFont" id="SetFont"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">SetFont</span> (line <span class="line-number">394</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Set font type.</p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
SetFont
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$font</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$font</span><span class="var-description">: font type.</span> </li>
</ul>
</div>
<a name="methodSetStyle" id="SetStyle"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">SetStyle</span> (line <span class="line-number">410</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Set barcode style.</p>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
SetStyle
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$Style</span><span class="var-description">: barcode style.</span> </li>
</ul>
</div>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:50 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,516 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs For Class C128AObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="class-name">Class C128AObject</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-vars">Vars</a>
| <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Code 128-A Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-A is a continuous, multilevel and include all upper case alphanumeric characters and ASCII control characters.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
<p class="notes">
Located in <a class="field" href="_tcpdf_php4_barcode_c128aobject_php.html">/barcode/c128aobject.php</a> (line <span class="field">48</span>)
</p>
<pre><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a>
|
--C128AObject</pre>
</div>
</div>
<a name="sec-method-summary"></a>
<div class="info-box">
<div class="info-box-title">Method Summary</span></div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<div class="method-summary">
<div class="method-definition">
<span class="method-result">C128AObject</span>
<a href="#C128AObject" title="details" class="method-name">C128AObject</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Value</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawCheckChar" title="details" class="method-name">DrawCheckChar</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">bool</span>
<a href="#DrawObject" title="details" class="method-name">DrawObject</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawStart" title="details" class="method-name">DrawStart</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawStop" title="details" class="method-name">DrawStop</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#GetBarSize" title="details" class="method-name">GetBarSize</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>, <span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#GetCharIndex" title="details" class="method-name">GetCharIndex</a>
(<span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<div class="method-definition">
<span class="method-result">string.</span>
<a href="#GetCheckCharValue" title="details" class="method-name">GetCheckCharValue</a>
()
</div>
<div class="method-definition">
<span class="method-result">barcode</span>
<a href="#GetSize" title="details" class="method-name">GetSize</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
</div>
</div>
</div>
<a name="sec-vars"></a>
<div class="info-box">
<div class="info-box-title">Variables</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>)
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<h4>Inherited Variables</h4>
<A NAME='inherited_vars'><!-- --></A>
<p>Inherited from <span class="classname"><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a></span></p>
<blockquote>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mBgcolor">BarcodeObject::$mBgcolor</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mBrush">BarcodeObject::$mBrush</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mChars">BarcodeObject::$mChars</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mCharSet">BarcodeObject::$mCharSet</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mError">BarcodeObject::$mError</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mFont">BarcodeObject::$mFont</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mHeight">BarcodeObject::$mHeight</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mImg">BarcodeObject::$mImg</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mStyle">BarcodeObject::$mStyle</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mWidth">BarcodeObject::$mWidth</a></span><br>
</span>
</blockquote>
</div>
</div>
<a name="sec-methods"></a>
<div class="info-box">
<div class="info-box-title">Methods</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
</div>
<div class="info-box-body">
<A NAME='method_detail'></A>
<a name="methodC128AObject" id="C128AObject"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">Constructor C128AObject</span> (line <span class="line-number">57</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Class Constructor.</p>
<div class="method-signature">
<span class="method-result">C128AObject</span>
<span class="method-name">
C128AObject
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Value</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$Width</span><span class="var-description">: Image width in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Height</span><span class="var-description">: Image height in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Style</span><span class="var-description">: Barcode style.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Value</span><span class="var-description">: value to print on barcode.</span> </li>
</ul>
</div>
<a name="methodDrawCheckChar" id="DrawCheckChar"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawCheckChar</span> (line <span class="line-number">327</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the check-char code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawCheckChar
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodDrawObject" id="DrawObject"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawObject</span> (line <span class="line-number">346</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the barcode object.</p>
<ul class="tags">
<li><span class="field">return:</span> true in case of success.</li>
</ul>
<div class="method-signature">
<span class="method-result">bool</span>
<span class="method-name">
DrawObject
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
<hr class="separator" />
<div class="notes">Redefinition of:</div>
<dl>
<dt><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawObject">BarcodeObject::DrawObject()</a></dt>
<dd>Abstract method used to draw the barcode image.</dd>
</dl>
</div>
<a name="methodDrawStart" id="DrawStart"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawStart</span> (line <span class="line-number">279</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the start code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawStart
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodDrawStop" id="DrawStop"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawStop</span> (line <span class="line-number">302</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the stop code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawStop
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodGetBarSize" id="GetBarSize"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">GetBarSize</span> (line <span class="line-number">190</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the bar size.</p>
<ul class="tags">
<li><span class="field">return:</span> barcode size.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
GetBarSize
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>, <span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
<li>
<span class="var-type">char</span>
<span class="var-name">$char</span><span class="var-description">: Character.</span> </li>
</ul>
</div>
<a name="methodGetCharIndex" id="GetCharIndex"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">GetCharIndex</span> (line <span class="line-number">174</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the character index.</p>
<ul class="tags">
<li><span class="field">return:</span> character index or -1 in case of error.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
GetCharIndex
</span>
(<span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">char</span>
<span class="var-name">$char</span><span class="var-description">: character.</span> </li>
</ul>
</div>
<a name="methodGetCheckCharValue" id="GetCheckCharValue"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">GetCheckCharValue</span> (line <span class="line-number">260</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the check-char value.</p>
<ul class="tags">
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">string.</span>
<span class="method-name">
GetCheckCharValue
</span>
()
</div>
</div>
<a name="methodGetSize" id="GetSize"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">GetSize</span> (line <span class="line-number">221</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns barcode size.</p>
<ul class="tags">
<li><span class="field">return:</span> size.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">barcode</span>
<span class="method-name">
GetSize
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<h4>Inherited Methods</h4>
<a name='inherited_methods'><!-- --></a>
<!-- =========== Summary =========== -->
<p>Inherited From <span class="classname"><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a></span></p>
<blockquote>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodBarcodeObject">BarcodeObject::BarcodeObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDestroyObject">BarcodeObject::DestroyObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawBorder">BarcodeObject::DrawBorder()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawChar">BarcodeObject::DrawChar()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawObject">BarcodeObject::DrawObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawSingleBar">BarcodeObject::DrawSingleBar()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawText">BarcodeObject::DrawText()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodFlushObject">BarcodeObject::FlushObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetError">BarcodeObject::GetError()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetFontHeight">BarcodeObject::GetFontHeight()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetFontWidth">BarcodeObject::GetFontWidth()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodgetImage">BarcodeObject::getImage()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetStyle">BarcodeObject::GetStyle()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodSetFont">BarcodeObject::SetFont()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodSetStyle">BarcodeObject::SetStyle()</a></span><br>
</blockquote>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:52 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,516 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs For Class C128BObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="class-name">Class C128BObject</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-vars">Vars</a>
| <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Code 128-B Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-B is a continuous, multilevel and full ASCII code.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
<p class="notes">
Located in <a class="field" href="_tcpdf_php4_barcode_c128bobject_php.html">/barcode/c128bobject.php</a> (line <span class="field">47</span>)
</p>
<pre><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a>
|
--C128BObject</pre>
</div>
</div>
<a name="sec-method-summary"></a>
<div class="info-box">
<div class="info-box-title">Method Summary</span></div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<div class="method-summary">
<div class="method-definition">
<span class="method-result">C128BObject</span>
<a href="#C128BObject" title="details" class="method-name">C128BObject</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Value</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawCheckChar" title="details" class="method-name">DrawCheckChar</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">bool</span>
<a href="#DrawObject" title="details" class="method-name">DrawObject</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawStart" title="details" class="method-name">DrawStart</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawStop" title="details" class="method-name">DrawStop</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#GetBarSize" title="details" class="method-name">GetBarSize</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>, <span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#GetCharIndex" title="details" class="method-name">GetCharIndex</a>
(<span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<div class="method-definition">
<span class="method-result">string.</span>
<a href="#GetCheckCharValue" title="details" class="method-name">GetCheckCharValue</a>
()
</div>
<div class="method-definition">
<span class="method-result">barcode</span>
<a href="#GetSize" title="details" class="method-name">GetSize</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
</div>
</div>
</div>
<a name="sec-vars"></a>
<div class="info-box">
<div class="info-box-title">Variables</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>)
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<h4>Inherited Variables</h4>
<A NAME='inherited_vars'><!-- --></A>
<p>Inherited from <span class="classname"><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a></span></p>
<blockquote>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mBgcolor">BarcodeObject::$mBgcolor</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mBrush">BarcodeObject::$mBrush</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mChars">BarcodeObject::$mChars</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mCharSet">BarcodeObject::$mCharSet</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mError">BarcodeObject::$mError</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mFont">BarcodeObject::$mFont</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mHeight">BarcodeObject::$mHeight</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mImg">BarcodeObject::$mImg</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mStyle">BarcodeObject::$mStyle</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mWidth">BarcodeObject::$mWidth</a></span><br>
</span>
</blockquote>
</div>
</div>
<a name="sec-methods"></a>
<div class="info-box">
<div class="info-box-title">Methods</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
</div>
<div class="info-box-body">
<A NAME='method_detail'></A>
<a name="methodC128BObject" id="C128BObject"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">Constructor C128BObject</span> (line <span class="line-number">56</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Class Constructor.</p>
<div class="method-signature">
<span class="method-result">C128BObject</span>
<span class="method-name">
C128BObject
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Value</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$Width</span><span class="var-description">: Image width in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Height</span><span class="var-description">: Image height in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Style</span><span class="var-description">: Barcode style.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Value</span><span class="var-description">: value to print on barcode.</span> </li>
</ul>
</div>
<a name="methodDrawCheckChar" id="DrawCheckChar"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawCheckChar</span> (line <span class="line-number">327</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the check-char code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawCheckChar
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodDrawObject" id="DrawObject"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawObject</span> (line <span class="line-number">346</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the barcode object.</p>
<ul class="tags">
<li><span class="field">return:</span> true in case of success.</li>
</ul>
<div class="method-signature">
<span class="method-result">bool</span>
<span class="method-name">
DrawObject
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
<hr class="separator" />
<div class="notes">Redefinition of:</div>
<dl>
<dt><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawObject">BarcodeObject::DrawObject()</a></dt>
<dd>Abstract method used to draw the barcode image.</dd>
</dl>
</div>
<a name="methodDrawStart" id="DrawStart"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawStart</span> (line <span class="line-number">279</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the start code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawStart
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodDrawStop" id="DrawStop"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawStop</span> (line <span class="line-number">302</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the stop code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawStop
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodGetBarSize" id="GetBarSize"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">GetBarSize</span> (line <span class="line-number">189</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the bar size.</p>
<ul class="tags">
<li><span class="field">return:</span> barcode size.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
GetBarSize
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>, <span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
<li>
<span class="var-type">char</span>
<span class="var-name">$char</span><span class="var-description">: Character.</span> </li>
</ul>
</div>
<a name="methodGetCharIndex" id="GetCharIndex"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">GetCharIndex</span> (line <span class="line-number">173</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the character index.</p>
<ul class="tags">
<li><span class="field">return:</span> character index or -1 in case of error.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
GetCharIndex
</span>
(<span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">char</span>
<span class="var-name">$char</span><span class="var-description">: character.</span> </li>
</ul>
</div>
<a name="methodGetCheckCharValue" id="GetCheckCharValue"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">GetCheckCharValue</span> (line <span class="line-number">260</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the check-char value.</p>
<ul class="tags">
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">string.</span>
<span class="method-name">
GetCheckCharValue
</span>
()
</div>
</div>
<a name="methodGetSize" id="GetSize"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">GetSize</span> (line <span class="line-number">220</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns barcode size.</p>
<ul class="tags">
<li><span class="field">return:</span> size.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">barcode</span>
<span class="method-name">
GetSize
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<h4>Inherited Methods</h4>
<a name='inherited_methods'><!-- --></a>
<!-- =========== Summary =========== -->
<p>Inherited From <span class="classname"><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a></span></p>
<blockquote>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodBarcodeObject">BarcodeObject::BarcodeObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDestroyObject">BarcodeObject::DestroyObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawBorder">BarcodeObject::DrawBorder()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawChar">BarcodeObject::DrawChar()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawObject">BarcodeObject::DrawObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawSingleBar">BarcodeObject::DrawSingleBar()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawText">BarcodeObject::DrawText()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodFlushObject">BarcodeObject::FlushObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetError">BarcodeObject::GetError()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetFontHeight">BarcodeObject::GetFontHeight()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetFontWidth">BarcodeObject::GetFontWidth()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodgetImage">BarcodeObject::getImage()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetStyle">BarcodeObject::GetStyle()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodSetFont">BarcodeObject::SetFont()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodSetStyle">BarcodeObject::SetStyle()</a></span><br>
</blockquote>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:53 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,516 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs For Class C128CObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="class-name">Class C128CObject</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-vars">Vars</a>
| <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Code 128-C Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-C is numeric only and provides the most efficiency.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
<p class="notes">
Located in <a class="field" href="_tcpdf_php4_barcode_c128cobject_php.html">/barcode/c128cobject.php</a> (line <span class="field">49</span>)
</p>
<pre><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a>
|
--C128CObject</pre>
</div>
</div>
<a name="sec-method-summary"></a>
<div class="info-box">
<div class="info-box-title">Method Summary</span></div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<div class="method-summary">
<div class="method-definition">
<span class="method-result">C128CObject</span>
<a href="#C128CObject" title="details" class="method-name">C128CObject</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Value</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawCheckChar" title="details" class="method-name">DrawCheckChar</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">bool</span>
<a href="#DrawObject" title="details" class="method-name">DrawObject</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawStart" title="details" class="method-name">DrawStart</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawStop" title="details" class="method-name">DrawStop</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#GetBarSize" title="details" class="method-name">GetBarSize</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>, <span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#GetCharIndex" title="details" class="method-name">GetCharIndex</a>
(<span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<div class="method-definition">
<span class="method-result">string.</span>
<a href="#GetCheckCharValue" title="details" class="method-name">GetCheckCharValue</a>
()
</div>
<div class="method-definition">
<span class="method-result">barcode</span>
<a href="#GetSize" title="details" class="method-name">GetSize</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
</div>
</div>
</div>
<a name="sec-vars"></a>
<div class="info-box">
<div class="info-box-title">Variables</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>)
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<h4>Inherited Variables</h4>
<A NAME='inherited_vars'><!-- --></A>
<p>Inherited from <span class="classname"><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a></span></p>
<blockquote>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mBgcolor">BarcodeObject::$mBgcolor</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mBrush">BarcodeObject::$mBrush</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mChars">BarcodeObject::$mChars</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mCharSet">BarcodeObject::$mCharSet</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mError">BarcodeObject::$mError</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mFont">BarcodeObject::$mFont</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mHeight">BarcodeObject::$mHeight</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mImg">BarcodeObject::$mImg</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mStyle">BarcodeObject::$mStyle</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mWidth">BarcodeObject::$mWidth</a></span><br>
</span>
</blockquote>
</div>
</div>
<a name="sec-methods"></a>
<div class="info-box">
<div class="info-box-title">Methods</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
</div>
<div class="info-box-body">
<A NAME='method_detail'></A>
<a name="methodC128CObject" id="C128CObject"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">Constructor C128CObject</span> (line <span class="line-number">58</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Class Constructor.</p>
<div class="method-signature">
<span class="method-result">C128CObject</span>
<span class="method-name">
C128CObject
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Value</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$Width</span><span class="var-description">: Image width in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Height</span><span class="var-description">: Image height in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Style</span><span class="var-description">: Barcode style.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Value</span><span class="var-description">: value to print on barcode.</span> </li>
</ul>
</div>
<a name="methodDrawCheckChar" id="DrawCheckChar"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawCheckChar</span> (line <span class="line-number">347</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the check-char code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawCheckChar
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodDrawObject" id="DrawObject"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawObject</span> (line <span class="line-number">366</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the barcode object.</p>
<ul class="tags">
<li><span class="field">return:</span> true in case of success.</li>
</ul>
<div class="method-signature">
<span class="method-result">bool</span>
<span class="method-name">
DrawObject
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
<hr class="separator" />
<div class="notes">Redefinition of:</div>
<dl>
<dt><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawObject">BarcodeObject::DrawObject()</a></dt>
<dd>Abstract method used to draw the barcode image.</dd>
</dl>
</div>
<a name="methodDrawStart" id="DrawStart"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawStart</span> (line <span class="line-number">299</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the start code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawStart
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodDrawStop" id="DrawStop"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawStop</span> (line <span class="line-number">322</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the stop code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawStop
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodGetBarSize" id="GetBarSize"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">GetBarSize</span> (line <span class="line-number">199</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the bar size.</p>
<ul class="tags">
<li><span class="field">return:</span> barcode size.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
GetBarSize
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>, <span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
<li>
<span class="var-type">char</span>
<span class="var-name">$char</span><span class="var-description">: Character.</span> </li>
</ul>
</div>
<a name="methodGetCharIndex" id="GetCharIndex"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">GetCharIndex</span> (line <span class="line-number">183</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the character index.</p>
<ul class="tags">
<li><span class="field">return:</span> character index or -1 in case of error.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
GetCharIndex
</span>
(<span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">char</span>
<span class="var-name">$char</span><span class="var-description">: character.</span> </li>
</ul>
</div>
<a name="methodGetCheckCharValue" id="GetCheckCharValue"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">GetCheckCharValue</span> (line <span class="line-number">278</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the check-char value.</p>
<ul class="tags">
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">string.</span>
<span class="method-name">
GetCheckCharValue
</span>
()
</div>
</div>
<a name="methodGetSize" id="GetSize"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">GetSize</span> (line <span class="line-number">230</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns barcode size.</p>
<ul class="tags">
<li><span class="field">return:</span> size.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">barcode</span>
<span class="method-name">
GetSize
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<h4>Inherited Methods</h4>
<a name='inherited_methods'><!-- --></a>
<!-- =========== Summary =========== -->
<p>Inherited From <span class="classname"><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a></span></p>
<blockquote>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodBarcodeObject">BarcodeObject::BarcodeObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDestroyObject">BarcodeObject::DestroyObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawBorder">BarcodeObject::DrawBorder()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawChar">BarcodeObject::DrawChar()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawObject">BarcodeObject::DrawObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawSingleBar">BarcodeObject::DrawSingleBar()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawText">BarcodeObject::DrawText()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodFlushObject">BarcodeObject::FlushObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetError">BarcodeObject::GetError()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetFontHeight">BarcodeObject::GetFontHeight()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetFontWidth">BarcodeObject::GetFontWidth()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodgetImage">BarcodeObject::getImage()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetStyle">BarcodeObject::GetStyle()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodSetFont">BarcodeObject::SetFont()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodSetStyle">BarcodeObject::SetStyle()</a></span><br>
</blockquote>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:51 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,402 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs For Class C39Object</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="class-name">Class C39Object</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-vars">Vars</a>
| <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Code 39 Barcode Render Class.<br /> Code 39 is an alphanumeric bar code that can encode decimal number, case alphabet and some special symbols.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
<p class="notes">
Located in <a class="field" href="_tcpdf_php4_barcode_c39object_php.html">/barcode/c39object.php</a> (line <span class="field">49</span>)
</p>
<pre><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a>
|
--C39Object</pre>
</div>
</div>
<a name="sec-method-summary"></a>
<div class="info-box">
<div class="info-box-title">Method Summary</span></div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<div class="method-summary">
<div class="method-definition">
<span class="method-result">C39Object</span>
<a href="#C39Object" title="details" class="method-name">C39Object</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Value</span>)
</div>
<div class="method-definition">
<span class="method-result">bool</span>
<a href="#DrawObject" title="details" class="method-name">DrawObject</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawStart" title="details" class="method-name">DrawStart</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawStop" title="details" class="method-name">DrawStop</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#GetCharIndex" title="details" class="method-name">GetCharIndex</a>
(<span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<div class="method-definition">
<span class="method-result">barcode</span>
<a href="#GetSize" title="details" class="method-name">GetSize</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
</div>
</div>
</div>
<a name="sec-vars"></a>
<div class="info-box">
<div class="info-box-title">Variables</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>)
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<h4>Inherited Variables</h4>
<A NAME='inherited_vars'><!-- --></A>
<p>Inherited from <span class="classname"><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a></span></p>
<blockquote>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mBgcolor">BarcodeObject::$mBgcolor</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mBrush">BarcodeObject::$mBrush</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mChars">BarcodeObject::$mChars</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mCharSet">BarcodeObject::$mCharSet</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mError">BarcodeObject::$mError</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mFont">BarcodeObject::$mFont</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mHeight">BarcodeObject::$mHeight</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mImg">BarcodeObject::$mImg</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mStyle">BarcodeObject::$mStyle</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mWidth">BarcodeObject::$mWidth</a></span><br>
</span>
</blockquote>
</div>
</div>
<a name="sec-methods"></a>
<div class="info-box">
<div class="info-box-title">Methods</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
</div>
<div class="info-box-body">
<A NAME='method_detail'></A>
<a name="methodC39Object" id="C39Object"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">Constructor C39Object</span> (line <span class="line-number">58</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Class Constructor.</p>
<div class="method-signature">
<span class="method-result">C39Object</span>
<span class="method-name">
C39Object
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Value</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$Width</span><span class="var-description">: Image width in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Height</span><span class="var-description">: Image height in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Style</span><span class="var-description">: Barcode style.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Value</span><span class="var-description">: value to print on barcode.</span> </li>
</ul>
</div>
<a name="methodDrawObject" id="DrawObject"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawObject</span> (line <span class="line-number">221</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the barcode object.</p>
<ul class="tags">
<li><span class="field">return:</span> true in case of success.</li>
</ul>
<div class="method-signature">
<span class="method-result">bool</span>
<span class="method-name">
DrawObject
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
<hr class="separator" />
<div class="notes">Redefinition of:</div>
<dl>
<dt><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawObject">BarcodeObject::DrawObject()</a></dt>
<dd>Abstract method used to draw the barcode image.</dd>
</dl>
</div>
<a name="methodDrawStart" id="DrawStart"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawStart</span> (line <span class="line-number">164</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the start code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawStart
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodDrawStop" id="DrawStop"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawStop</span> (line <span class="line-number">195</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the stop code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawStop
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodGetCharIndex" id="GetCharIndex"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">GetCharIndex</span> (line <span class="line-number">116</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the character index.</p>
<ul class="tags">
<li><span class="field">return:</span> character index or -1 in case of error.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
GetCharIndex
</span>
(<span class="var-type">char</span>&nbsp;<span class="var-name">$char</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">char</span>
<span class="var-name">$char</span><span class="var-description">: character.</span> </li>
</ul>
</div>
<a name="methodGetSize" id="GetSize"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">GetSize</span> (line <span class="line-number">131</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns barcode size.</p>
<ul class="tags">
<li><span class="field">return:</span> size.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">barcode</span>
<span class="method-name">
GetSize
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<h4>Inherited Methods</h4>
<a name='inherited_methods'><!-- --></a>
<!-- =========== Summary =========== -->
<p>Inherited From <span class="classname"><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a></span></p>
<blockquote>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodBarcodeObject">BarcodeObject::BarcodeObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDestroyObject">BarcodeObject::DestroyObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawBorder">BarcodeObject::DrawBorder()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawChar">BarcodeObject::DrawChar()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawObject">BarcodeObject::DrawObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawSingleBar">BarcodeObject::DrawSingleBar()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawText">BarcodeObject::DrawText()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodFlushObject">BarcodeObject::FlushObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetError">BarcodeObject::GetError()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetFontHeight">BarcodeObject::GetFontHeight()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetFontWidth">BarcodeObject::GetFontWidth()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodgetImage">BarcodeObject::getImage()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetStyle">BarcodeObject::GetStyle()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodSetFont">BarcodeObject::SetFont()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodSetStyle">BarcodeObject::SetStyle()</a></span><br>
</blockquote>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:52 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,366 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs For Class I25Object</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="class-name">Class I25Object</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-vars">Vars</a>
| <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">I25 Barcode Render Class for PHP using the GD graphics library.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
<p class="notes">
Located in <a class="field" href="_tcpdf_php4_barcode_i25object_php.html">/barcode/i25object.php</a> (line <span class="field">48</span>)
</p>
<pre><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a>
|
--I25Object</pre>
</div>
</div>
<a name="sec-method-summary"></a>
<div class="info-box">
<div class="info-box-title">Method Summary</span></div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<div class="method-summary">
<div class="method-definition">
<span class="method-result">I25Object</span>
<a href="#I25Object" title="details" class="method-name">I25Object</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Value</span>)
</div>
<div class="method-definition">
<span class="method-result">bool</span>
<a href="#DrawObject" title="details" class="method-name">DrawObject</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawStart" title="details" class="method-name">DrawStart</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">int</span>
<a href="#DrawStop" title="details" class="method-name">DrawStop</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<div class="method-definition">
<span class="method-result">barcode</span>
<a href="#GetSize" title="details" class="method-name">GetSize</a>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
</div>
</div>
</div>
<a name="sec-vars"></a>
<div class="info-box">
<div class="info-box-title">Variables</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>)
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<h4>Inherited Variables</h4>
<A NAME='inherited_vars'><!-- --></A>
<p>Inherited from <span class="classname"><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a></span></p>
<blockquote>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mBgcolor">BarcodeObject::$mBgcolor</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mBrush">BarcodeObject::$mBrush</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mChars">BarcodeObject::$mChars</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mCharSet">BarcodeObject::$mCharSet</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mError">BarcodeObject::$mError</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mFont">BarcodeObject::$mFont</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mHeight">BarcodeObject::$mHeight</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mImg">BarcodeObject::$mImg</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mStyle">BarcodeObject::$mStyle</a></span><br>
</span>
<span class="var-title">
<span class="var-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#var$mWidth">BarcodeObject::$mWidth</a></span><br>
</span>
</blockquote>
</div>
</div>
<a name="sec-methods"></a>
<div class="info-box">
<div class="info-box-title">Methods</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
</div>
<div class="info-box-body">
<A NAME='method_detail'></A>
<a name="methodI25Object" id="I25Object"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">Constructor I25Object</span> (line <span class="line-number">57</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Class Constructor.</p>
<div class="method-signature">
<span class="method-result">I25Object</span>
<span class="method-name">
I25Object
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$Width</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Height</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Style</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$Value</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$Width</span><span class="var-description">: Image width in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Height</span><span class="var-description">: Image height in pixels.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Style</span><span class="var-description">: Barcode style.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$Value</span><span class="var-description">: value to print on barcode.</span> </li>
</ul>
</div>
<a name="methodDrawObject" id="DrawObject"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawObject</span> (line <span class="line-number">164</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the barcode object.</p>
<ul class="tags">
<li><span class="field">return:</span> true in case of success.</li>
</ul>
<div class="method-signature">
<span class="method-result">bool</span>
<span class="method-name">
DrawObject
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
<hr class="separator" />
<div class="notes">Redefinition of:</div>
<dl>
<dt><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawObject">BarcodeObject::DrawObject()</a></dt>
<dd>Abstract method used to draw the barcode image.</dd>
</dl>
</div>
<a name="methodDrawStart" id="DrawStart"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">DrawStart</span> (line <span class="line-number">129</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the start code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawStart
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodDrawStop" id="DrawStop"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<span class="method-title">DrawStop</span> (line <span class="line-number">149</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Draws the stop code.</p>
<ul class="tags">
<li><span class="field">return:</span> drawing position.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">int</span>
<span class="method-name">
DrawStop
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$DrawPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$yPos</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$ySize</span>, <span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$DrawPos</span><span class="var-description">: Drawing position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$yPos</span><span class="var-description">: Vertical position.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$ySize</span><span class="var-description">: Vertical size.</span> </li>
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<a name="methodGetSize" id="GetSize"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<span class="method-title">GetSize</span> (line <span class="line-number">80</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns barcode size.</p>
<ul class="tags">
<li><span class="field">return:</span> size.</li>
<li><span class="field">access:</span> private</li>
</ul>
<div class="method-signature">
<span class="method-result">barcode</span>
<span class="method-name">
GetSize
</span>
(<span class="var-type">int</span>&nbsp;<span class="var-name">$xres</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">int</span>
<span class="var-name">$xres</span><span class="var-description">: Horizontal resolution.</span> </li>
</ul>
</div>
<h4>Inherited Methods</h4>
<a name='inherited_methods'><!-- --></a>
<!-- =========== Summary =========== -->
<p>Inherited From <span class="classname"><a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a></span></p>
<blockquote>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodBarcodeObject">BarcodeObject::BarcodeObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDestroyObject">BarcodeObject::DestroyObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawBorder">BarcodeObject::DrawBorder()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawChar">BarcodeObject::DrawChar()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawObject">BarcodeObject::DrawObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawSingleBar">BarcodeObject::DrawSingleBar()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodDrawText">BarcodeObject::DrawText()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodFlushObject">BarcodeObject::FlushObject()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetError">BarcodeObject::GetError()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetFontHeight">BarcodeObject::GetFontHeight()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetFontWidth">BarcodeObject::GetFontWidth()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodgetImage">BarcodeObject::getImage()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodGetStyle">BarcodeObject::GetStyle()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodSetFont">BarcodeObject::SetFont()</a></span><br>
<span class="method-name"><a href="../com.tecnick.tcpdf/BarcodeObject.html#methodSetStyle">BarcodeObject::SetStyle()</a></span><br>
</blockquote>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:52 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -1,525 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page BarcodeObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/barcode/barcode.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-classes">Classes</a>
| <a href="#sec-constants">Constants</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Barcode Render Class for PHP using the GD graphics library.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
</div>
</div>
<a name="sec-classes"></a>
<div class="info-box">
<div class="info-box-title">Classes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Classes</span>
| <a href="#sec-constants">Constants</a>
</div>
<div class="info-box-body">
<table cellpadding="2" cellspacing="0" class="class-table">
<tr>
<th class="class-table-header">Class</th>
<th class="class-table-header">Description</th>
</tr>
<tr>
<td style="padding-right: 2em; vertical-align: top">
<a href="../com.tecnick.tcpdf/BarcodeObject.html">BarcodeObject</a>
</td>
<td>
Barcode Render Class for PHP using the GD graphics library.
</td>
</tr>
</table>
</div>
</div>
<a name="sec-constants"></a>
<div class="info-box">
<div class="info-box-title">Constants</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-classes">Classes</a>
| <span class="disabled">Constants</span>
</div>
<div class="info-box-body">
<a name="defineBCD_C39_NARROW_BAR"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCD_C39_NARROW_BAR</span> = 1
(line <span class="line-number">166</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">narrow bar option</p>
<p class="description"><p>(only for c39 code)</p></p>
</div>
<a name="defineBCD_C39_WIDE_BAR"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCD_C39_WIDE_BAR</span> = 2
(line <span class="line-number">172</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">wide bar option</p>
<p class="description"><p>(only for c39 code)</p></p>
</div>
<a name="defineBCD_C128_BAR_1"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCD_C128_BAR_1</span> = 1
(line <span class="line-number">180</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set type 1 bar</p>
<p class="description"><p>(only for c128 code)</p></p>
</div>
<a name="defineBCD_C128_BAR_2"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCD_C128_BAR_2</span> = 2
(line <span class="line-number">186</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set type 2 bar</p>
<p class="description"><p>(only for c128 code)</p></p>
</div>
<a name="defineBCD_C128_BAR_3"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCD_C128_BAR_3</span> = 3
(line <span class="line-number">192</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set type 3 bar</p>
<p class="description"><p>(only for c128 code)</p></p>
</div>
<a name="defineBCD_C128_BAR_4"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCD_C128_BAR_4</span> = 4
(line <span class="line-number">198</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set type 4 bar</p>
<p class="description"><p>(only for c128 code)</p></p>
</div>
<a name="defineBCD_DEFAULT_BACKGROUND_COLOR"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCD_DEFAULT_BACKGROUND_COLOR</span> = 0xFFFFFF
(line <span class="line-number">97</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set default background color</p>
</div>
<a name="defineBCD_DEFAULT_FONT"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCD_DEFAULT_FONT</span> = 5
(line <span class="line-number">122</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set default font</p>
</div>
<a name="defineBCD_DEFAULT_FOREGROUND_COLOR"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCD_DEFAULT_FOREGROUND_COLOR</span> = 0x000000
(line <span class="line-number">102</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set default foreground color</p>
</div>
<a name="defineBCD_DEFAULT_HEIGHT"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCD_DEFAULT_HEIGHT</span> = 120
(line <span class="line-number">117</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set default height</p>
</div>
<a name="defineBCD_DEFAULT_MAR_Y1"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCD_DEFAULT_MAR_Y1</span> =
(line <span class="line-number">134</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set default margin</p>
</div>
<a name="defineBCD_DEFAULT_MAR_Y2"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCD_DEFAULT_MAR_Y2</span> =
(line <span class="line-number">139</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set default margin</p>
</div>
<a name="defineBCD_DEFAULT_STYLE"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCD_DEFAULT_STYLE</span> = BCS_BORDER|BCS_ALIGN_CENTER|BCS_IMAGE_PNG
(line <span class="line-number">107</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set default style options</p>
</div>
<a name="defineBCD_DEFAULT_TEXT_OFFSET"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCD_DEFAULT_TEXT_OFFSET</span> = 2
(line <span class="line-number">144</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set default text offset</p>
</div>
<a name="defineBCD_DEFAULT_WIDTH"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCD_DEFAULT_WIDTH</span> = 460
(line <span class="line-number">112</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">set default width</p>
</div>
<a name="defineBCD_DEFAULT_XRES"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCD_DEFAULT_XRES</span> = 2
(line <span class="line-number">127</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">st default horizontal resolution</p>
</div>
<a name="defineBCD_I25_NARROW_BAR"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCD_I25_NARROW_BAR</span> = 1
(line <span class="line-number">152</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">narrow bar option</p>
<p class="description"><p>(only for I25 code)</p></p>
</div>
<a name="defineBCD_I25_WIDE_BAR"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCD_I25_WIDE_BAR</span> = 2
(line <span class="line-number">158</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">wide bar option</p>
<p class="description"><p>(only for I25 code)</p></p>
</div>
<a name="defineBCS_ALIGN_CENTER"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCS_ALIGN_CENTER</span> = 4
(line <span class="line-number">51</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: center barcode</p>
</div>
<a name="defineBCS_ALIGN_LEFT"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCS_ALIGN_LEFT</span> = 8
(line <span class="line-number">56</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: align left</p>
</div>
<a name="defineBCS_ALIGN_RIGHT"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCS_ALIGN_RIGHT</span> = 16
(line <span class="line-number">61</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: align right</p>
</div>
<a name="defineBCS_BORDER"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCS_BORDER</span> = 1
(line <span class="line-number">41</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: generate barcode border</p>
</div>
<a name="defineBCS_DRAW_TEXT"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCS_DRAW_TEXT</span> = 128
(line <span class="line-number">76</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: draw text</p>
</div>
<a name="defineBCS_I25_DRAW_CHECK"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCS_I25_DRAW_CHECK</span> = 2048
(line <span class="line-number">92</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: draw check</p>
<p class="description"><p>(only for I25 code)</p></p>
</div>
<a name="defineBCS_IMAGE_JPEG"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCS_IMAGE_JPEG</span> = 32
(line <span class="line-number">66</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: generate JPEG image</p>
</div>
<a name="defineBCS_IMAGE_PNG"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCS_IMAGE_PNG</span> = 64
(line <span class="line-number">71</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: generate PNG image</p>
</div>
<a name="defineBCS_REVERSE_COLOR"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCS_REVERSE_COLOR</span> = 512
(line <span class="line-number">86</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: reverse color</p>
</div>
<a name="defineBCS_STRETCH_TEXT"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">BCS_STRETCH_TEXT</span> = 256
(line <span class="line-number">81</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: stretch text</p>
</div>
<a name="defineBCS_TRANSPARENT"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">BCS_TRANSPARENT</span> = 2
(line <span class="line-number">46</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">option: use transparent background</p>
</div>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:50 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,68 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page BarcodeObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/barcode/c128aobject.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-classes">Classes</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Code 128-A Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-A is a continuous, multilevel and include all upper case alphanumeric characters and ASCII control characters.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
</div>
</div>
<a name="sec-classes"></a>
<div class="info-box">
<div class="info-box-title">Classes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Classes</span>
</div>
<div class="info-box-body">
<table cellpadding="2" cellspacing="0" class="class-table">
<tr>
<th class="class-table-header">Class</th>
<th class="class-table-header">Description</th>
</tr>
<tr>
<td style="padding-right: 2em; vertical-align: top">
<a href="../com.tecnick.tcpdf/C128AObject.html">C128AObject</a>
</td>
<td>
Code 128-A Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-A is a continuous, multilevel and include all upper case alphanumeric characters and ASCII control characters.
</td>
</tr>
</table>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:52 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,68 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page BarcodeObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/barcode/c128bobject.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-classes">Classes</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Code 128-B Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-B is a continuous, multilevel and full ASCII code.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
</div>
</div>
<a name="sec-classes"></a>
<div class="info-box">
<div class="info-box-title">Classes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Classes</span>
</div>
<div class="info-box-body">
<table cellpadding="2" cellspacing="0" class="class-table">
<tr>
<th class="class-table-header">Class</th>
<th class="class-table-header">Description</th>
</tr>
<tr>
<td style="padding-right: 2em; vertical-align: top">
<a href="../com.tecnick.tcpdf/C128BObject.html">C128BObject</a>
</td>
<td>
Code 128-B Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-B is a continuous, multilevel and full ASCII code.
</td>
</tr>
</table>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:53 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,68 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page BarcodeObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/barcode/c128cobject.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-classes">Classes</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Code 128-C Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-C is numeric only and provides the most efficiency.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
</div>
</div>
<a name="sec-classes"></a>
<div class="info-box">
<div class="info-box-title">Classes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Classes</span>
</div>
<div class="info-box-body">
<table cellpadding="2" cellspacing="0" class="class-table">
<tr>
<th class="class-table-header">Class</th>
<th class="class-table-header">Description</th>
</tr>
<tr>
<td style="padding-right: 2em; vertical-align: top">
<a href="../com.tecnick.tcpdf/C128CObject.html">C128CObject</a>
</td>
<td>
Code 128-C Barcode Render Class for PHP using the GD graphics library.<br /> Code 128-C is numeric only and provides the most efficiency.
</td>
</tr>
</table>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:51 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,68 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page BarcodeObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/barcode/c39object.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-classes">Classes</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Code 39 Barcode Render Class.<br /> Code 39 is an alphanumeric bar code that can encode decimal number, case alphabet and some special symbols.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
</div>
</div>
<a name="sec-classes"></a>
<div class="info-box">
<div class="info-box-title">Classes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Classes</span>
</div>
<div class="info-box-body">
<table cellpadding="2" cellspacing="0" class="class-table">
<tr>
<th class="class-table-header">Class</th>
<th class="class-table-header">Description</th>
</tr>
<tr>
<td style="padding-right: 2em; vertical-align: top">
<a href="../com.tecnick.tcpdf/C39Object.html">C39Object</a>
</td>
<td>
Code 39 Barcode Render Class.<br /> Code 39 is an alphanumeric bar code that can encode decimal number, case alphabet and some special symbols.
</td>
</tr>
</table>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:52 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,68 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page BarcodeObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/barcode/i25object.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-classes">Classes</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">I25 Barcode Render Class for PHP using the GD graphics library.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
</div>
</div>
<a name="sec-classes"></a>
<div class="info-box">
<div class="info-box-title">Classes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Classes</span>
</div>
<div class="info-box-body">
<table cellpadding="2" cellspacing="0" class="class-table">
<tr>
<th class="class-table-header">Class</th>
<th class="class-table-header">Description</th>
</tr>
<tr>
<td style="padding-right: 2em; vertical-align: top">
<a href="../com.tecnick.tcpdf/I25Object.html">I25Object</a>
</td>
<td>
I25 Barcode Render Class for PHP using the GD graphics library.
</td>
</tr>
</table>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:52 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,138 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page BarcodeObject</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/barcode/image.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-includes">Includes</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Barcode Image Rendering.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2001-03-25</li>
<li><span class="field">version:</span> 0.0.8a 2001-04-01 (original code)</li>
<li><span class="field">name:</span> BarcodeObject</li>
<li><span class="field">author:</span> Karim Mribti, Nicola Asuni</li>
</ul>
</div>
</div>
<a name="sec-includes"></a>
<div class="info-box">
<div class="info-box-title">Includes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Includes</span>
</div>
<div class="info-box-body">
<a name="___/__/shared/barcode/i25object_php"><!-- --></a>
<div class="evenrow">
<div>
<span class="include-title">
<span class="include-type">require</span>
(<span class="include-name">"../../shared/barcode/i25object.php"</span>)
(line <span class="line-number">39</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
</div>
<a name="___/__/shared/barcode/barcode_php"><!-- --></a>
<div class="oddrow">
<div>
<span class="include-title">
<span class="include-type">require</span>
(<span class="include-name">"../../shared/barcode/barcode.php"</span>)
(line <span class="line-number">38</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
</div>
<a name="___/__/shared/barcode/c39object_php"><!-- --></a>
<div class="evenrow">
<div>
<span class="include-title">
<span class="include-type">require</span>
(<span class="include-name">"../../shared/barcode/c39object.php"</span>)
(line <span class="line-number">40</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
</div>
<a name="___/__/shared/barcode/c128aobject_php"><!-- --></a>
<div class="oddrow">
<div>
<span class="include-title">
<span class="include-type">require</span>
(<span class="include-name">"../../shared/barcode/c128aobject.php"</span>)
(line <span class="line-number">41</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
</div>
<a name="___/__/shared/barcode/c128cobject_php"><!-- --></a>
<div class="evenrow">
<div>
<span class="include-title">
<span class="include-type">require</span>
(<span class="include-name">"../../shared/barcode/c128cobject.php"</span>)
(line <span class="line-number">43</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
</div>
<a name="___/__/shared/barcode/c128bobject_php"><!-- --></a>
<div class="oddrow">
<div>
<span class="include-title">
<span class="include-type">require</span>
(<span class="include-name">"../../shared/barcode/c128bobject.php"</span>)
(line <span class="line-number">42</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
</div>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:51 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page eng.php</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/config/lang/eng.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">TCPDF language file (contains translated texts).</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2004-03-03</li>
<li><span class="field">link:</span> <a href="http://tcpdf.sourceforge.net">http://tcpdf.sourceforge.net</a></li>
<li><span class="field">copyright:</span> 2004 Tecnick.com S.r.l (www.tecnick.com) Via Ugo Foscolo n.19 - 09045 Quartu Sant'Elena (CA) - ITALY - www.tecnick.com - info@tecnick.com</li>
<li><span class="field">author:</span> Nicola Asuni</li>
<li><span class="field">abstract:</span> TCPDF language file.</li>
</ul>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:53 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,520 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page tcpdf_config.php</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/config/tcpdf_config.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-constants">Constants</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Congiguration file for TCPDF.</p>
<ul class="tags">
<li><span class="field">license:</span> <a href="http://www.gnu.org/copyleft/lesser.html">LGPL</a></li>
<li><span class="field">since:</span> 2004-06-11</li>
<li><span class="field">link:</span> <a href="http://tcpdf.sourceforge.net">http://tcpdf.sourceforge.net</a></li>
<li><span class="field">version:</span> 1.53.0.TC017</li>
<li><span class="field">copyright:</span> Copyright &amp;copy; 2004, Tecnick.com S.r.l. - Via Ugo Foscolo n.19 - 09045 Quartu Sant'Elena (CA) - ITALY - www.tecnick.com - info@tecnick.com</li>
<li><span class="field">author:</span> Nicola Asuni</li>
</ul>
</div>
</div>
<a name="sec-constants"></a>
<div class="info-box">
<div class="info-box-title">Constants</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Constants</span>
</div>
<div class="info-box-body">
<a name="defineFPDF_FONTPATH"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">FPDF_FONTPATH</span> = K_PATH_MAIN.&quot;fonts/&quot;
(line <span class="line-number">46</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">path for PDF fonts</p>
</div>
<a name="defineHEAD_MAGNIFICATION"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">HEAD_MAGNIFICATION</span> = 1.1
(line <span class="line-number">171</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">magnification factor for titles</p>
</div>
<a name="defineK_BLANK_IMAGE"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">K_BLANK_IMAGE</span> = K_PATH_IMAGES.&quot;_blank.png&quot;
(line <span class="line-number">66</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">blank image</p>
</div>
<a name="defineK_CELL_HEIGHT_RATIO"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">K_CELL_HEIGHT_RATIO</span> = 1.25
(line <span class="line-number">176</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">height of cell repect font height</p>
</div>
<a name="defineK_PATH_CACHE"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">K_PATH_CACHE</span> = K_PATH_MAIN.&quot;cache/&quot;
(line <span class="line-number">51</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">cache directory for temporary files (full path)</p>
</div>
<a name="defineK_PATH_IMAGES"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">K_PATH_IMAGES</span> = K_PATH_MAIN.&quot;images/&quot;
(line <span class="line-number">61</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">images directory</p>
</div>
<a name="defineK_PATH_MAIN"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">K_PATH_MAIN</span> = &quot;D:/Inetpub/wwwroot/_OPENSOURCE/tcpdf/&quot;
(line <span class="line-number">36</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">installation path</p>
</div>
<a name="defineK_PATH_URL"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">K_PATH_URL</span> = &quot;http://localhost/_OPENSOURCE/tcpdf/&quot;
(line <span class="line-number">41</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">url path</p>
</div>
<a name="defineK_PATH_URL_CACHE"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">K_PATH_URL_CACHE</span> = K_PATH_URL.&quot;cache/&quot;
(line <span class="line-number">56</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">cache directory for temporary files (url path)</p>
</div>
<a name="defineK_SMALL_RATIO"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">K_SMALL_RATIO</span> = 2/3
(line <span class="line-number">186</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">reduction factor for small font</p>
</div>
<a name="defineK_TITLE_MAGNIFICATION"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">K_TITLE_MAGNIFICATION</span> = 1.3
(line <span class="line-number">181</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">title magnification respect main font size</p>
</div>
<a name="definePDF_AUTHOR"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_AUTHOR</span> = &quot;pdf author&quot;
(line <span class="line-number">86</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">document author</p>
</div>
<a name="definePDF_CREATOR"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">PDF_CREATOR</span> = &quot;pdf creator&quot;
(line <span class="line-number">81</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">document creator</p>
</div>
<a name="definePDF_FONT_NAME_DATA"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_FONT_NAME_DATA</span> = &quot;FreeSerif&quot;
(line <span class="line-number">156</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">data font name</p>
</div>
<a name="definePDF_FONT_NAME_MAIN"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">PDF_FONT_NAME_MAIN</span> = &quot;FreeSans&quot;
(line <span class="line-number">146</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">main font name</p>
</div>
<a name="definePDF_FONT_SIZE_DATA"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_FONT_SIZE_DATA</span> = 8
(line <span class="line-number">161</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">data font size</p>
</div>
<a name="definePDF_FONT_SIZE_MAIN"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">PDF_FONT_SIZE_MAIN</span> = 10
(line <span class="line-number">151</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">main font size</p>
</div>
<a name="definePDF_HEADER_LOGO"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_HEADER_LOGO</span> = &quot;logo_example.png&quot;
(line <span class="line-number">101</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">image logo</p>
</div>
<a name="definePDF_HEADER_LOGO_WIDTH"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">PDF_HEADER_LOGO_WIDTH</span> = 20
(line <span class="line-number">106</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">header logo image width [mm]</p>
</div>
<a name="definePDF_HEADER_STRING"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_HEADER_STRING</span> = &quot;first row\nsecond row\nthird row&quot;
(line <span class="line-number">96</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">header description string</p>
</div>
<a name="definePDF_HEADER_TITLE"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">PDF_HEADER_TITLE</span> = &quot;header title&quot;
(line <span class="line-number">91</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">header title</p>
</div>
<a name="definePDF_IMAGE_SCALE_RATIO"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_IMAGE_SCALE_RATIO</span> = 4
(line <span class="line-number">166</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">scale factor for images (number of points in user unit)</p>
</div>
<a name="definePDF_MARGIN_BOTTOM"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">PDF_MARGIN_BOTTOM</span> = 25
(line <span class="line-number">131</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">bottom margin</p>
</div>
<a name="definePDF_MARGIN_FOOTER"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_MARGIN_FOOTER</span> = 10
(line <span class="line-number">121</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">footer margin</p>
</div>
<a name="definePDF_MARGIN_HEADER"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">PDF_MARGIN_HEADER</span> = 5
(line <span class="line-number">116</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">header margin</p>
</div>
<a name="definePDF_MARGIN_LEFT"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_MARGIN_LEFT</span> = 15
(line <span class="line-number">136</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">left margin</p>
</div>
<a name="definePDF_MARGIN_RIGHT"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">PDF_MARGIN_RIGHT</span> = 15
(line <span class="line-number">141</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">right margin</p>
</div>
<a name="definePDF_MARGIN_TOP"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_MARGIN_TOP</span> = 27
(line <span class="line-number">126</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">top margin</p>
</div>
<a name="definePDF_PAGE_FORMAT"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">PDF_PAGE_FORMAT</span> = &quot;A4&quot;
(line <span class="line-number">71</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">page format</p>
</div>
<a name="definePDF_PAGE_ORIENTATION"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_PAGE_ORIENTATION</span> = &quot;P&quot;
(line <span class="line-number">76</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">page orientation (P=portrait, L=landscape)</p>
</div>
<a name="definePDF_UNIT"><!-- --></a>
<div class="oddrow">
<div>
<span class="const-title">
<span class="const-name">PDF_UNIT</span> = &quot;mm&quot;
(line <span class="line-number">111</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]</p>
</div>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:56 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,106 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page html_entity_decode_php4.php</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/html_entity_decode_php4.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-functions">Functions</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">TCPDF Class.</p>
</div>
</div>
<a name="sec-functions"></a>
<div class="info-box">
<div class="info-box-title">Functions</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Functions</span>
</div>
<div class="info-box-body">
<a name="functioncode_to_utf8" id="functioncode_to_utf8"><!-- --></a>
<div class="evenrow">
<div>
<span class="method-title">code_to_utf8</span> (line <span class="line-number">27</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Returns the UTF-8 string corresponding to unicode value.</p>
<ul class="tags">
<li><span class="field">return:</span> converted</li>
</ul>
<div class="method-signature">
<span class="method-result">string</span>
<span class="method-name">
code_to_utf8
</span>
(<span class="var-type">$num</span>&nbsp;<span class="var-name">$num</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">$num</span>
<span class="var-name">$num</span><span class="var-description">: unicode value to convert.</span> </li>
</ul>
</div>
<a name="functionhtml_entity_decode_php4" id="functionhtml_entity_decode_php4"><!-- --></a>
<div class="oddrow">
<div>
<span class="method-title">html_entity_decode_php4</span> (line <span class="line-number">46</span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Reverse function for htmlentities.</p>
<p class="description"><p>Convert entities in UTF-8.</p></p>
<ul class="tags">
<li><span class="field">return:</span> converted</li>
</ul>
<div class="method-signature">
<span class="method-result">string</span>
<span class="method-name">
html_entity_decode_php4
</span>
(<span class="var-type">$text_to_convert</span>&nbsp;<span class="var-name">$text_to_convert</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">$text_to_convert</span>
<span class="var-name">$text_to_convert</span><span class="var-description">: Text to convert.</span> </li>
</ul>
</div>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:53 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

View File

@ -1,118 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page tcpdf.php</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/tcpdf.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-classes">Classes</a>
| <a href="#sec-includes">Includes</a>
| <a href="#sec-constants">Constants</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
</div>
</div>
<a name="sec-classes"></a>
<div class="info-box">
<div class="info-box-title">Classes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Classes</span>
| <a href="#sec-includes">Includes</a>
| <a href="#sec-constants">Constants</a>
</div>
<div class="info-box-body">
<table cellpadding="2" cellspacing="0" class="class-table">
<tr>
<th class="class-table-header">Class</th>
<th class="class-table-header">Description</th>
</tr>
<tr>
<td style="padding-right: 2em; vertical-align: top">
<a href="../com.tecnick.tcpdf/TCPDF.html">TCPDF</a>
</td>
<td>
This is a PHP4 class for generating PDF files on-the-fly without requiring external extensions.<br />
</td>
</tr>
</table>
</div>
</div>
<a name="sec-includes"></a>
<div class="info-box">
<div class="info-box-title">Includes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-classes">Classes</a>
| <span class="disabled">Includes</span>
| <a href="#sec-constants">Constants</a>
</div>
<div class="info-box-body">
<a name="_dirname(__FILE__)_/config/tcpdf_config_php"><!-- --></a>
<div class="oddrow">
<div>
<span class="include-title">
<span class="include-type">require_once</span>
(<span class="include-name">dirname(__FILE__).'/config/tcpdf_config.php'</span>)
(line <span class="line-number">35</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">include configuration file</p>
</div>
</div>
</div>
<a name="sec-constants"></a>
<div class="info-box">
<div class="info-box-title">Constants</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-classes">Classes</a>
| <a href="#sec-includes">Includes</a>
| <span class="disabled">Constants</span>
</div>
<div class="info-box-body">
<a name="definePDF_PRODUCER"><!-- --></a>
<div class="evenrow">
<div>
<span class="const-title">
<span class="const-name">PDF_PRODUCER</span> = 'TCPDF 1.53.0.TC020_PHP4 (http://tcpdf.sourceforge.net)'
(line <span class="line-number">73</span>)
</span>
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">define default PDF document producer</p>
</div>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:54 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</div></body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>phpDocumentor Parser Errors and Warnings</title>
<link rel="stylesheet" href="media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<a href="#Post-parsing">Post-parsing</a><br>
<a name="tcpdf.php"></a>
<h1>tcpdf.php</h1>
<h2>Warnings:</h2><br>
<b>Warning on line 4134</b> - File "D:\Inetpub\wwwroot\_OPENSOURCE\tcpdf_php4\tcpdf.php" has no page-level DocBlock, use @package in the first DocBlock to create one<br>
<p class="notes" id="credit">
Documentation generated on Fri, 23 Jun 2006 10:11:57 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.3.0RC3</a>
</p>
</body>
</html>

View File

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- Generated by phpDocumentor on Fri, 23 Jun 2006 10:11:50 +0200 -->
<title>TCPDF Documentation</title>
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<FRAMESET rows='120,*'>
<FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999">
<FRAMESET cols='25%,*'>
<FRAME src='li_com.tecnick.tcpdf.html' name='left_bottom' frameborder="1" bordercolor="#999999">
<FRAME src='blank.html' name='right' frameborder="1" bordercolor="#999999">
</FRAMESET>
<NOFRAMES>
<H2>Frame Alert</H2>
<P>This document is designed to be viewed using the frames feature.
If you see this message, you are using a non-frame-capable web client.</P>
</NOFRAMES>
</FRAMESET>
</HTML>

View File

@ -1,54 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title></title>
<link rel="stylesheet" href="media/stylesheet.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="package-title">com.tecnick.tcpdf</div>
<div class="package-details">
<dl class="tree">
<dt class="folder-title">Description</dt>
<dd>
<a href='classtrees_com.tecnick.tcpdf.html' target='right'>Class trees</a><br />
<a href='elementindex_com.tecnick.tcpdf.html' target='right'>Index of elements</a><br />
</dd>
<dt class="folder-title">Classes</dt>
<dd><a href='com.tecnick.tcpdf/BarcodeObject.html' target='right'>BarcodeObject</a></dd>
<dd><a href='com.tecnick.tcpdf/C39Object.html' target='right'>C39Object</a></dd>
<dd><a href='com.tecnick.tcpdf/C128AObject.html' target='right'>C128AObject</a></dd>
<dd><a href='com.tecnick.tcpdf/C128BObject.html' target='right'>C128BObject</a></dd>
<dd><a href='com.tecnick.tcpdf/C128CObject.html' target='right'>C128CObject</a></dd>
<dd><a href='com.tecnick.tcpdf/I25Object.html' target='right'>I25Object</a></dd>
<dd><a href='com.tecnick.tcpdf/TCPDF.html' target='right'>TCPDF</a></dd>
<dt class="folder-title">Functions</dt>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_html_entity_decode_php4_php.html#functioncode_to_utf8' target='right'>code_to_utf8</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_html_entity_decode_php4_php.html#functionhtml_entity_decode_php4' target='right'>html_entity_decode_php4</a></dd>
<dt class="folder-title">Files</dt>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_barcode_barcode_php.html' target='right'>BarcodeObject</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_barcode_c128bobject_php.html' target='right'>BarcodeObject</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_barcode_c39object_php.html' target='right'>BarcodeObject</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_barcode_c128aobject_php.html' target='right'>BarcodeObject</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_barcode_image_php.html' target='right'>BarcodeObject</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_barcode_c128cobject_php.html' target='right'>BarcodeObject</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_barcode_i25object_php.html' target='right'>BarcodeObject</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_config_lang_eng_php.html' target='right'>eng.php</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_html_entity_decode_php4_php.html' target='right'>html_entity_decode_php4.php</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_tcpdf_php.html' target='right'>tcpdf.php</a></dd>
<dd><a href='com.tecnick.tcpdf/_tcpdf_php4_config_tcpdf_config_php.html' target='right'>tcpdf_config.php</a></dd>
</dl>
</div>
<p class="notes"><a href="http://www.phpdoc.org" target="_blank">phpDocumentor v <span class="field">1.3.0RC3</span></a></p>
</BODY>
</HTML>

View File

@ -1,32 +0,0 @@
body
{
background-color: #CCCCFF;
margin: 0px;
padding: 0px;
}
/* Banner (top bar) classes */
.banner { }
.banner-menu
{
clear: both;
padding: .5em;
border-top: 2px solid #6666AA;
}
.banner-title
{
text-align: right;
font-size: 20pt;
font-weight: bold;
margin: .2em;
}
.package-selector
{
background-color: #AAAADD;
border: 1px solid black;
color: yellow;
}

View File

@ -1,144 +0,0 @@
a { color: #336699; text-decoration: none; }
a:hover { color: #6699CC; text-decoration: underline; }
a:active { color: #6699CC; text-decoration: underline; }
body { background : #FFFFFF; }
body, table { font-family: Georgia, Times New Roman, Times, serif; font-size: 10pt }
p, li { line-height: 140% }
a img { border: 0px; }
dd { margin-left: 0px; padding-left: 1em; }
/* Page layout/boxes */
.info-box {}
.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 2px solid #999999; background-color: #CCCCFF }
.info-box-body { border: 1px solid #999999; padding: .5em; }
.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; }
.oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em}
.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em}
.page-body { max-width: 800px; margin: auto; }
.tree dl { margin: 0px }
/* Index formatting classes */
.index-item-body { margin-top: .5em; margin-bottom: .5em}
.index-item-description { margin-top: .25em }
.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt }
.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em}
.index-letter-title { font-size: 12pt; font-weight: bold }
.index-letter-menu { text-align: center; margin: 1em }
.index-letter { font-size: 12pt }
/* Docbook classes */
.description {}
.short-description { font-weight: bold; color: #666666; }
.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; }
.parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; }
.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; }
.package { }
.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black }
.package-details { font-size: 85%; }
.sub-package { font-weight: bold; font-size: 120% }
.tutorial { border-width: thin; border-color: #0066ff }
.tutorial-nav-box { width: 100%; border: 1px solid #999999; background-color: #F8F8F8; }
.nav-button-disabled { color: #999999; }
.nav-button:active,
.nav-button:focus,
.nav-button:hover { background-color: #DDDDDD; outline: 1px solid #999999; text-decoration: none }
.folder-title { font-style: italic }
/* Generic formatting */
.field { font-weight: bold; }
.detail { font-size: 8pt; }
.notes { font-style: italic; font-size: 8pt; }
.separator { background-color: #999999; height: 2px; }
.warning { color: #FF6600; }
.disabled { font-style: italic; color: #999999; }
/* Code elements */
.line-number { }
.class-table { width: 100%; }
.class-table-header { border-bottom: 1px dotted #666666; text-align: left}
.class-name { color: #000000; font-weight: bold; }
.method-summary { padding-left: 1em; font-size: 8pt }
.method-header { }
.method-definition { margin-bottom: .3em }
.method-title { font-weight: bold; }
.method-name { font-weight: bold; }
.method-signature { font-size: 85%; color: #666666; margin: .5em 0em }
.method-result { font-style: italic; }
.var-summary { padding-left: 1em; font-size: 8pt; }
.var-header { }
.var-title { margin-bottom: .3em }
.var-type { font-style: italic; }
.var-name { font-weight: bold; }
.var-default {}
.var-description { font-weight: normal; color: #000000; }
.include-title { }
.include-type { font-style: italic; }
.include-name { font-weight: bold; }
.const-title { }
.const-name { font-weight: bold; }
/* Syntax highlighting */
.src-code { border: 1px solid #336699; padding: 1em; background-color: #EEEEEE; }
*[class="src-code"] { line-height : 0.5em }
.src-comm { color: green; }
.src-id { }
.src-inc { color: #0000FF; }
.src-key { color: #0000FF; }
.src-num { color: #CC0000; }
.src-str { color: #66cccc; }
.src-sym { font-weight: bold; }
.src-var { }
.src-php { font-weight: bold; }
.src-doc { color: #009999 }
.src-doc-close-template { color: #0000FF }
.src-doc-coretag { color: #0099FF; font-weight: bold }
.src-doc-inlinetag { color: #0099FF }
.src-doc-internal { color: #6699cc }
.src-doc-tag { color: #0080CC }
.src-doc-template { color: #0000FF }
.src-doc-type { font-style: italic }
.src-doc-var { font-style: italic }
.tute-tag { color: #009999 }
.tute-attribute-name { color: #0000FF }
.tute-attribute-value { color: #0099FF }
.tute-entity { font-weight: bold; }
.tute-comment { font-style: italic }
.tute-inline-tag { color: #636311; font-weight: bold }
/* tutorial */
.authors { }
.author { font-style: italic; font-weight: bold }
.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal }
.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; }
*[class="example"] { line-height : 0.5em }
.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; }
*[class="listing"] { line-height : 0.5em }
.release-info { font-size: 85%; font-style: italic; margin: 1em 0em }
.ref-title-box { }
.ref-title { }
.ref-purpose { font-style: italic; color: #666666 }
.ref-synopsis { }
.title { font-weight: bold; margin: 1em 0em 0em 0em; padding: .25em; border: 2px solid #999999; background-color: #CCCCFF }
.cmd-synopsis { margin: 1em 0em }
.cmd-title { font-weight: bold }
.toc { margin-left: 2em; padding-left: 0em }

View File

@ -1,27 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title></title>
<link rel="stylesheet" href="media/stylesheet.css" />
<link rel="stylesheet" href="media/banner.css" />
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>
</head>
<body>
<div class="banner">
<div class="banner-title">TCPDF</div>
<div class="banner-menu">
<table cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td>
</td>
<td style="width: 2em">&nbsp;</td>
<td style="text-align: right">
</td>
</tr>
</table>
</div>
</div>
</body>
</html>

View File

@ -1,19 +0,0 @@
To embed TrueType fonts (.TTF) files, you need to extract the font metrics and
build the required tables using the provided utility (/fonts/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). ttf2ufm, is included in /ttf2ufm-src.
The /fonts/ttf2ufm folder contains a compiled Windows binary.
TTF 2 UFM is identical to TTF 2 PT1 except that it also generates a .ufm file
for usage with makefontuni.php.
Setting up a Truetype font for usage with TCPDF:
1) Generate the font's .ufm metrics file by processing it with the provided
ttf2ufm program (modified ttf2pt1). For example:
$ ttf2ufm -a -F myfont.ttf
2) Run makefontuni.php with the .ttf and .ufm filenames as argument:
$ php -q makefontuni.php myfont.ttf myfont.ufm
3) Copy the resulting .php, .z and .ctg.z file to the TCPDF font directory.

View File

@ -1,143 +0,0 @@
-*-text-*-
$Id$
The free UCS scalable font collection is being maintained by Primo¾
Peterlin <primoz.peterlin AT biofiz.mf.uni-lj.si>. The folowing list
cites the other contributors that contributed to particular ISO 10646
blocks.
* URW++ Design & Development GmbH <http://www.urwpp.de/>
Basic Latin (U+0041-U+007A)
Latin-1 Supplement (U+00C0-U+00FF) (most)
Latin Extended-A (U+0100-U+017F)
Spacing Modifier Letters (U+02B0-U+02FF)
Mathematical Operators (U+2200-U+22FF) (parts)
Block Elements (U+2580-U+259F)
Dingbats (U+2700-U+27BF)
* Yannis Haralambous <yannis.haralambous AT enst-bretagne.fr> and John
Plaice <plaice AT omega.cse.unsw.edu.au>
Latin Extended-B (U+0180-U+024F)
IPA Extensions (U+0250-U+02AF)
Greek (U+0370-U+03FF)
Armenian (U+0530-U+058F)
Hebrew (U+0590-U+05FF)
Arabic (U+0600-U+06FF)
Currency Symbols (U+20A0-U+20CF)
Arabic Presentation Forms-A (U+FB50-U+FDFF)
Arabic Presentation Forms-B (U+FE70-U+FEFF)
* Young U. Ryu <ryoung AT utdallas.edu>
Arrows (U+2190-U+21FF)
Mathematical Symbols (U+2200-U+22FF)
* Valek Filippov <frob AT df.ru>
Cyrillic (U+0400-U+04FF)
* Wadalab Kanji Comittee
Hiragana (U+3040-U+309F)
Katakana (U+30A0-U+30FF)
* Angelo Haritsis <ah AT computer.org>
Greek (U+0370-U+03FF)
* Yannis Haralambous and Virach Sornlertlamvanich
Thai (U+0E00-U+0E7F)
* Shaheed R. Haque <srhaque AT iee.org>
Bengali (U+0980-U+09FF)
* Sam Stepanyan <sam AT arminco.com>
Armenian (U+0530-U+058F)
* Mohamed Ishan <ishan AT mitf.f2s.com>
Thaana (U+0780-U+07BF)
* Sushant Kumar Dash <sushant AT writeme.com>
Oriya (U+0B00-U+0B7F)
* Harsh Kumar <harshkumar AT vsnl.com>
Devanagari (U+0900-U+097F)
Bengali (U+0980-U+09FF)
Gurmukhi (U+0A00-U+0A7F)
Gujarati (U+0A80-U+0AFF)
* Prasad A. Chodavarapu <chprasad AT hotmail.com>
Telugu (U+0C00-U+0C7F)
* Frans Velthuis <velthuis AT rc.rug.nl> and Anshuman Pandey
<apandey AT u.washington.edu>
Devanagari (U+0900-U+097F)
* Hardip Singh Pannu <HSPannu AT aol.com>
Gurmukhi (U+0A00-U+0A7F)
* Jeroen Hellingman <jehe AT kabelfoon.nl>
Oriya (U+0B00-U+0B7F)
Malayalam (U+0D00-U+0D7F)
* Thomas Ridgeway <email needed>
Tamil (U+0B80-U+0BFF)
* Berhanu Beyene <1beyene AT informatik.uni-hamburg.de>,
Prof. Dr. Manfred Kudlek <kudlek AT informatik.uni-hamburg.de>, Olaf
Kummer <kummer AT informatik.uni-hamburg.de>, and Jochen Metzinger <?>
Ethiopic (U+1200-U+137F)
* Maxim Iorsh <iorsh AT users.sourceforge.net>
Hebrew (U+0590-U+05FF)
* Vyacheslav Dikonov <sdiconov AT mail.ru>
Syriac (U+0700-U+074A)
Braille (U+2800-U+28FF)
* M.S. Sridhar <mssridhar AT vsnl.com>
Devanagari (U+0900-U+097F)
Bengali (U+0980-U+09FF)
Gurmukhi (U+0A00-U+0A7F)
Gujarati (U+0A80-U+0AFF)
Oriya (U+0B00-U+0B7F)
Tamil (U+0B80-U+0BFF)
Telugu (U+0C00-U+0C7F)
Kannada (U+0C80-U+0CFF)
Malayalam (U+0D00-U+0D7F)
* DMS Electronics, The Sri Lanka Tipitaka Project, and Noah Levitt
<nlevitt AT columbia.edu>
Sinhala (U+0D80-U+0DFF)
* Dan Shurovich Chirkov <dansh AT chirkov.com>
Cyrillic (U+0400-U+04FF)
* Abbas Izad <abbasizad AT hotmail.com>
Arabic (U+0600-U+06FF)
Arabic Presentation Forms-A (U+FB50-U+FDFF)
Arabic Presentation Forms-B (U+FE70-U+FEFF)
Please see the CREDITS file for details on who contributed particular
subsets of the glyphs in font files.

View File

@ -1,389 +0,0 @@
-*-text-*-
$Id$
This file lists the contributors and contributions to the free UCS
scalable font project.
* URW++ Design & Development GmbH <http://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
under the terms of GNU General Public License (GPL).
Basic Latin (U+0041-U+007A)
Latin-1 Supplement (U+00C0-U+00FF)
Latin Extended-A (U+0100-U+017F)
Spacing Modifier Letters (U+02B0-U+02FF)
Mathematical Operators (U+2200-U+22FF)
Block Elements (U+2580-U+259F)
Dingbats (U+2700-U+27BF)
* Yannis Haralambous <yannis.haralambous AT enst-bretagne.fr> and John
Plaice <plaice AT omega.cse.unsw.edu.au>
Yannis Haralambous and John Plaice are the authors of Omega
typesetting system, <http://omega.cse.unsw.edu.au/>. 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. Omega also allows multiple
input and output character sets, and uses programmable filters to
translate from one encoding to another, to perform contextual
analysis, etc. Internally, Omega uses the universal 16-bit Unicode
standard character set, based on ISO-10646. These improvements not
only make it a lot easier for TeX users to cope with multiple or
complex languages, like Arabic, Indic, Khmer, Chinese, Japanese or
Korean, in one document, but will also form the basis for future
developments in other areas, such as native color support and
hypertext features. ... Fonts for UT1 (omlgc family) and UT2 (omah
family) are under development: these fonts are in PostScript format
and visually close to Times and Helvetica font families. (from the
Omega WWW site). Omega fonts are available subject to GPL
<http://www.ctan.org/tex-archive/help/Catalogue/entries/omegafonts.html>.
Latin Extended-B (U+0180-U+024F)
IPA Extensions (U+0250-U+02AF)
Greek (U+0370-U+03FF)
Armenian (U+0530-U+058F)
Hebrew (U+0590-U+05FF)
Arabic (U+0600-U+06FF)
Currency Symbols (U+20A0-U+20CF)
Arabic Presentation Forms-A (U+FB50-U+FDFF)
Arabic Presentation Forms-B (U+FE70-U+FEFF)
* Valek Filippov <frob AT df.ru>
Valek Filippov added Cyrillic glyphs and composite Latin Extended A to
the whole set of the abovementioned URW set of 35 PostScript core
fonts, <ftp://ftp.gnome.ru/fonts/urw/>. The fonts are available under
GPL.
Latin Extended-A (U+0100-U+017F)
Cyrillic (U+0400-U+04FF)
* Wadalab Kanji Comittee
Between April 1990 and March 1992, Wadalab Kanji Comittee put together
a series of scalable font files with Japanese scripts, in four forms:
Sai Micho, Chu Mincho, Cho Kaku and Saimaru. The font files are
written in custom file format, while tools for conversion into
Metafont and PostScript Type 1 are also supplied. The Wadalab Kanji
Comittee has later been dismissed, and the resulting files can be now
found on the FTP server of the Depertment of Mathematical Engineering
and Information Physics, Faculty of Engineering, University of Tokyo
<ftp://ftp.ipl.t.u-tokyo.ac.jp/Font/>.
Hiragana (U+3040-U+309F)
Katakana (U+30A0-U+30FF)
* Young U. Ryu <ryoung AT utdallas.edu>
Young Ryu is the author of Txfonts, a set of mathematical symbols
designed to accompany text typeset in Times or its variants. In the
documentation, Young adresses the design of mathematical symbols: "The
Adobe Times fonts are thicker than the CM fonts. Designing math fonts
for Times based on the rule thickness of Times = , , + , / , < ,
etc. would result in too thick math symbols, in my opinion. In the TX
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). Pointers to their location are available on
<http://www.utdallas.edu/~ryoung/txfonts/>.
Arrows (U+2190-U+21FF)
Mathematical Symbols (U+2200-U+22FF)
* Angelo Haritsis <ah AT computer.org>
Angelo Haritsis has compiled a set of Greek Type 1 fonts, available on
<ftp://ftp.hellug.gr/pub/unix/linux/GREEK/fonts/greekXfonts-Type1-1.1.tgz>.
The glyphs from this source has been used to compose Greek glyphs in
FreeSans and FreeMono.
Angelo's licence says: "You can enjoy free use of these fonts for
educational or commercial purposes. All derived works should include
this paragraph. If you want to change something please let me have
your changes (via email) so that they can go into the next
version. You can also send comments etc to the above address."
Greek (U+0370-U+03FF)
* Yannis Haralambous and Virach Sornlertlamvanich
In 1999, Yannis Haralambous and Virach Sornlertlamvanich made a set of
glyphs covering the Thai national standard NF3, in both upright and
slanted shape. The collection of glyphs have been made part of GNU
intlfonts 1.2 package and is available on
<ftp://ftp.gnu.org/pub/gnu/intlfonts/> under GPL.
Thai (U+0E00-U+0E7F)
* Shaheed R. Haque <srhaque AT iee.org>
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/>.
Copyright (C) 2001 S.R.Haque <srhaque AT iee.org>. All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL S.R.HAQUE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of S.R.Haque shall not be
used in advertising or otherwise to promote the sale, use or other
dealings in this Software without prior written authorization from
S.R.Haque.
Bengali (U+0980-U+09FF)
* Sam Stepanyan <sam AT arminco.com>
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
2002-01-24, Sam writes: "Arial Armenian font is free for
non-commercial use, so it is OK to use under GPL license."
Armenian (U+0530-U+058F)
* 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
couple of Thaana fonts, available under FDL or BDF license.
Thaana (U+0780-U+07BF)
* 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/>:
"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
people like me, who are away from Orissa and want to write letters
home using Computers, but suffer due to unavailability of Oriya
fonts.(Or the cost of the available packages are too much)."
Oriya (U+0B00-U+0B7F)
* Harsh Kumar <harshkumar AT vsnl.com>
Harsh Kumar has started BharatBhasha <http://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
Applications on Windows and on Linux. We also offer FREE help to
users, enthusiasts and software developers for their work in Indian
languages."
Devanagari (U+0900-U+097F)
Bengali (U+0980-U+09FF)
Gurmukhi (U+0A00-U+0A7F)
Gujarati (U+0A80-U+0AFF)
* 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/>.
Tikkana exceeds the Unicode Telugu range with some composite glyphs.
Available under the GNU General Public License.
Telugu (U+0C00-U+0C7F)
* Frans Velthuis <velthuis AT rc.rug.nl> and Anshuman Pandey
<apandey AT u.washington.edu>
In 1991, Frans Velthuis from the Groningen University, The
Netherlands, released a Devanagari font as Metafont source, available
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
redundant control points with PfaEdit.
Devanagari (U+0900-U+097F)
* Hardip Singh Pannu <HSPannu AT aol.com>
In 1991, Hardip Singh Pannu has created a free Gurmukhi TrueType font,
available as regular, bold, oblique and bold oblique form. Its license
says "Please remember that these fonts are copyrighted (by me) and are
for non-profit use only."
Gurmukhi (U+0A00-U+0A7F)
* Jeroen Hellingman <jehe AT kabelfoon.nl>
Jeroen Hellingman created a set of Malayalam metafonts in 1994, and a
set of Oriya metafonts in 1996. Malayalam fonts were created as
uniform stroke only, while Oriya metafonts exist in both uniform and
modulated stroke. From private communication: "It is my intention to
release the fonts under GPL, but not all copies around have this
notice on them." Metafonts can be found on CTAN,
<ftp://ftp.dante.de/tex-archive/language/oriya/> and
<ftp://ftp.dante.de/tex-archive/language/malayalam/>.
Oriya (U+0B00-U+0B7F)
Malayalam (U+0D00-U+0D7F)
* Thomas Ridgeway <> (*)
Thomas Ridgeway, then at the Humanities And Arts Computing Center,
Washington University, Seattle, USA, (now defunct), created a Tamil
metafont in 1990. Anshuman Pandey from the same university took over
the maintenance of font. Fonts can be found at CTAN,
<ftp://ftp.dante.de/tex-archive/language/tamil/wntamil/>.
Tamil (U+0B80-U+0BFF)
* Berhanu Beyene <1beyene AT informatik.uni-hamburg.de>,
Prof. Dr. Manfred Kudlek <kudlek AT informatik.uni-hamburg.de>, Olaf
Kummer <kummer AT informatik.uni-hamburg.de>, and Jochen Metzinger <?>
Beyene, Kudlek, Kummer and Metzinger from the Theoretical Foundations
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>,
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
program <http://www.inf.bme.hu/~pts/textrace/> and removed some
redundant control points with PfaEdit.
Ethiopic (U+1200-U+137F)
* Maxim Iorsh <iorsh AT users.sourceforge.net>
In 2002, Maxim Iorsh started the Culmus project, aiming at providing
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/>.
Hebrew (U+0590-U+05FF)
* Vyacheslav Dikonov <sdiconov AT mail.ru>
Vyacheslav Dikonov made a braille unicode font that could be merged
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
spots in the U+2000-U+27FF area, e.g. the box drawing section, sets of
subscript and superscript digits and capital Roman numbers.
Syriac (U+0700-U+074A)
Box Drawing (U+2500-U+257F)
Braille (U+2800-U+28FF)
* 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
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/software/software.html#akruti) or from the
Akruti website.
For any further information or assistance regarding these fonts,
please contact mssridhar AT vsnl.com.
Devanagari (U+0900-U+097F)
Bengali (U+0980-U+09FF)
Gurmukhi (U+0A00-U+0A7F)
Gujarati (U+0A80-U+0AFF)
Oriya (U+0B00-U+0B7F)
Tamil (U+0B80-U+0BFF)
Telugu (U+0C00-U+0C7F)
Kannada (U+0C80-U+0CFF)
Malayalam (U+0D00-U+0D7F)
* DMS Electronics, The Sri Lanka Tipitaka Project, and Noah Levitt
<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,
precisely, "Public Domain under GNU Licence
Produced by DMS
Electronics for The Sri Lanka Tipitaka Project" (taken from the font
comment), and took the effort of recoding the font to Unicode.
Sinhala (U+0D80-U+0DFF)
* Daniel Shurovich Chirkov <dansh AT chirkov.com>
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,
<http://www.versiontracker.com/dyn/moreinfo/macosx/18680>.
Cyrillic (U+0400-U+04FF)
* Primo¾ Peterlin <primoz.peterlin AT biofiz.mf.uni-lj.si>
Primo¾ Peterlin filled in missing glyphs here and there (e.g. Latin
Extended-B and IPA Extensions ranges in the FreeMono familiy), and
created the following UCS blocks:
Latin Extended-B (U+0180-U+024F)
IPA Extensions (U+0250-U+02AF)
Arrows (U+2190-U+21FF)
Box Drawing (U+2500-U+257F)
Block Elements (U+2580-U+259F)
Geometrical Shapes (U+25A0-U+25FF)
Notes:
*: The glyph collection looks license-compatible, but its author has
not yet replied and agreed on his/her work being used in part of
this glyph collection.

View File

@ -1,630 +0,0 @@
2003-10-08 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* FreeMonoOblique.sfd, FreeSerifBoldItalic.sfd,
FreeSerifItalic.sfd - applied Josef Segur's corrections from
Oct. 5.
2003-10-02 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Abbas Izad's contributed Arabic/Farsi
characters added.
* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
sfd/FreeSerifBoldItalic.sfd - Combining characters (U+0300 -
U+036F) moved left, so that they have negative horizontal values
and zero advance width.
2003-09-15 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerifBold.sfd, sfd/FreeSerifItalic.sfd - Started working
on super- and subscripts.
2003-09-12 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd, sfd/FreeSerif.sfd - Added some missing
Hiragana and Katakana characters.
* sfd/FreeSansBold.sfd - Cleared background characters in Latin
Extended-A. Added some automatically constructed characters in
Latin Extended-B. Started with superscripts and subscripts.
* sfd/FreeSans.sfd - Subscript numerals (U+2080-U+2089) completed.
2003-05-19 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Thai characters po pla and bo baimai
swapped; Thai character fongman corrected; all courtesy Theppitak
Karoonboonyanan.
2003-05-17 Panayotis Katsaloulis <panayotis@panayotis.com>
* sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - Full support
of all ancient greek glyphs
2003-05-15 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* tools/KerningNumerals.pl - A Perl script for moving kerning
information from ASCII numerals (U+0030...) to characters in the
Adobe corporate use area (U+F6xx).
* sfd/FreeSansBold.sfd, sfd/FreeSansOblique.sfd,
sfd/FreeSansBoldOblique.sfd - Created kerned numerals in the Adobe
corporate use area (U+F6xx) and moved kerning information from
ASCII numerals to the kerned numerals.
2003-05-14 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd - First approximation of super- and subscript
numerals and vulgar fractions.
* sfd/FreeSerif.sfd - Super- and subscript numerals complete,
vulgar fractions completed and redone as references rather than
outlines.
2003-05-12 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Clean-up of the Cyrillic letters added on
March 27; super- and subscripts, vulgar fractions.
2003-05-09 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMonoBold.sfd - Added a couple of characters to
the Latin Extended-B area and the IPA extensions area.
2003-05-08 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerifBoldItalic.sfd - Added a couple of characters to
the Latin Extended-B area.
* sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - ASCII
numerals now monospaced; kerned numerals moved to Adobe corporate
use area
(U+F6xx).
2003-05-07 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Roman numerals now more complete.
* sfd/FreeSansOblique.sfd, sfd/FreeSansBoldOblique.sfd - Accented
characters added in the Latin Extended-B area.
* sfd/FreeSans.sfd - Greek accents added in the Greek Extended
area, characters added in the Latin Extended-B area, Roman
numerals added.
* sfd/FreeMonoOblique.sfd - Kerning pairs removed (what were they
doing in a monospaced font, anyway?).
* sfd/FreeMonoBoldOblique.sfd - Additions in Latin Extended-B and
Basic Greek.
* sfd/FreeMono.sfd, sfd/FreeMonoBold.sfd, sfd/FreeMonoOblique.sfd,
sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
sfd/FreeSansBold.sfd, sfd/FreeSansOblique.sfd,
sfd/FreeSansBoldOblique.sfd - Major cleanup (fixed widths, open
paths, path directions (clockwise/counter-clockwise), points
rounded to integer values; outlines simplified etc.)
2003-05-06 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* tools/OS2UnicodeRange - A simple script to display OS/2 Unicode
range table in TrueType fonts.
* sfd/FreeSans.sfd, sfd/FreeSansBold.sfd - ASCII numerals now
monospaced; kerned numerals moved to Adobe corporate use area
(U+F6xx). FreeSans is done, FreeSansBold half-way.
* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
sfd/FreeSerifBoldItalic.sfd - Added 2003 in copyright info.
2003-03-27 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Cyrillic and Cyrillic Supplement blocks
brought to conformance with Unicode 3.2, courtesy Daniel Shurovich
Chirkov.
2003-03-19 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd - somewhat wider
germandbls (U+00DF), due to complaints by Walter Schmidt.
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.
2003-02-19 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd - Minor changes on mathematical operators.
2003-02-18 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - minor cleanup of glyph backgrounds; changed
integral signs (U+222B - U+2230)
2003-02-05 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd - added a couple of glyphs in the IPA and
African Latin ranges.
2003-01-30 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
sfd/FreeSansBoldOblique.sfd, sfd/FreeMonoBold.sfd,
sfd/FreeMonoBoldOblique.sfd - Corrected Maltese Hbar (U+0126)
and/or hbar (U+0127).
2003-01-28 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerifItalic.sfd - Corrected Maltese hbar (U+0127).
2002-12-18 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* tools/ConvertFont - PfaEdit script for converting SFD files to
TrueType fonts.
* sfd/FreeSans.sfd - Added Tamil and Kannada glyphs from the
Akruti Indic fonts.
2002-12-17 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd - Added Devanagari and Gujarati glyphs from the
Akruti Indic fonts.
* www/index.html - Added information on Rogier van Dalen's tools.
* AUTHORS - Added M.S. Sridhar.
* CREDITS - Correct spelling of Culmus project. Added M.S. Sridhar.
2002-12-06 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Added Braille glyphs, courtesy Vyacheslav
Dikonov.
* sfd/FreeSans.sfd - Added Unicode Syriac glyphs, courtesy
Vyacheslav Dikonov.
2002-10-11 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* www/index.html - Added information on the availability of the
Debian GNU/Linux package.
* sfd/FreeSerif.sfd, sfd/FreeSans.sfd - added some kern pairs
beyond Latin-1 area.
* sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - re-introduced
all the emtpy glyph slots (changes from Sep 23 made PfaEdit
crash).
2002-09-23 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd, sfd/FreeSerifItalic.sfd,
sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd - imported
kerning information from the URW++ AFM files
2002-09-11 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
sfd/FreeMonoOblique.sfd - updated Hebrew parts to comply with
Culmus v0.6.
* sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
sfd/FreeSansOblique.sfd - Added Danilo Segan's Serbian Cyrillic
glyphs; updated Hebrew parts to comply with Culmus v0.6.
2002-09-09 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
sfd/FreeMonoOblique.sfd, sfd/FreeSans.sfd,
sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
sfd/FreeSansOblique.sfd - Updated Cyrillic part to match
Filippov's 1.0.7pre14
* sfd/FreeSansOblique.sfd - added Sam Stepanyan's Armenian glyphs
from FreeSans (skewed for 12 degrees).
2002-09-06 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd, sfd/FreeSansOblique.sfd,
sfd/FreeSansBold.sfd, sfd/FreeSansOblique.sfd - Added Maxim
Iorsh's Hebrew characters.
2002-08-29 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd,
sfd/FreeMonoBold.sfd, sfd/FreeMonoOblique.sfd - Added Maxim
Iorsh's Hebrew characters.
* AUTHORS, CREDITS - Added Maxim Iorsh as author.
2002-08-28 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* www/index.html - Added information of Microsoft's withdrawal of
freely available Unicode TrueType fonts
* www/resources.html - Added link to Maxim Iorsh's Culmus project.
2002-07-26 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Added a couple of characters (Arrows area).
2002-06-11 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Applied Michalis Kabrianis's patch concerning
perispomeni in Greek politoniko.
2002-05-23 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Applied Michalis Kabrianis's patch concerning
psili in Greek politoniko. Also added two working variants of
chars in the IPA range.
2002-05-15 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd, sfd/FreeSansBold.sfd, sfd/FreeSerif.sfd,
sfd/FreeSerifBold.sfd - Deleted explicit ".notdef" character with
no contours.
2002-05-14 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
sfd/FreeSerifBoldItalic.sfd - The new version of PfaEdit saves
correctly formed Panose and LineGap lines.
* sfd/FreeSansBoldOblique.sfd - Filled-in the missing TTFWidth and
TTFWeight values.
2002-05-09 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd - Added diacritics to the Spacing Modifier
Letters and Combining Diacritical Marks areas. Added composed
glyphs to the Latin Extended-B area.
2002-05-07 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
sfd/FreeSerifBoldItalic.sfd - Updated Panose information with data
provided by Josef W. Segur. Updated TTF headers with English and
Slovenian text.
2002-04-30 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMonoBold.sfd - Working on Greek small letters. Several
minor changes (lower carons etc.)
2002-04-29 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* FreeMonoBoldOblique.sfd - Started adding Greek.
* sfd/FreeMonoBold.sfd - Added glyphs in the Geometrical Shapes
and Miscellaneous Symbols area. Harmonizing Greek with Latin. Done
with capitals.
* sfd/FreeMono.sfd - Deleted the explicit .notdef character. Added
one glyph to the Geometrical Shapes area, which is now completed;
added three glyphs to the Miscellaneous Symbols area. Harmonizing
Greek with Latin. Done with the capitals.
2002-04-26 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd - Adjusted accent positions on several glyphs
in the Latin Extended-A area.
2002-04-25 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMonoBold.sfd - Box Drawing area completed. Added a
couple of glyphs in the Geometrical Shapes area.
* sfd/FreeMono.sfd - Small corrections in the Box Drawing area.
2002-04-24 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Box Drawing area completed.
2002-04-23 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* tools/WGL4.lst - corrected.
* sfd/FreeMono.sfd, sfd/FreeMonoBold.sfd - Working on Box Drawing
area.
2002-04-22 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd, sfd/FreeMonoBold.sfd - Working on Latin
Extended-B and Greek.
2002-04-19 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Somewhat cleaner chess figures.
* tools/MES-2.txt, tools/MES-2.lst - Corrected list (it is not
203C-203E, it is 203C and 203E).
* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
sfd/FreeMonoBoldOblique.sfd, sfd/FreeSans.sfd,
sfd/FreeSansOblique.sfd, sfd/FreeSansBold.sfd,
sfd/FreeSansBoldOblique.sfd, sfd/FreeSerif.sfd,
sfd/FreeSerifItalic.sfd, sfd/FreeSerifBold.sfd,
sfd/FreeSerifBoldItalic.sfd - Changed "Family Name" from Free to
FreeSerif, FreeSans and FreeMono, as appropriate. Changed Font
Modifiers from MonoBold etc. to Bold, Italic, Oblique, BoldOblique
and BoldItalic.
2002-04-18 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd, sfd/FreeMonoBold.sfd,
sfd/FreeMonoBoldOblique.sfd - Corrected metrics; now all character
widths are set to 600.
2002-04-17 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Corrected glyphs in the Box Drawing area and
Block Elements area, which should extend through the ascender *and
descender* height.
* sfd/FreeMonoBold.sfd - Continued working on harmonizing Greek
letters with Latin and Cyrillic.
* sfd/FreeMonoBold.sfd - Added some box drawing characters.
2002-04-16 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* www/design-notes.html - Updated notes on stroke width for
symbols in Free Mono Bold.
* sfd/FreeMono.sfd - Added a handful of characters in the
Miscellaneous Symbols area.
* sfd/FreeMonoBoldOblique.sfd - Added subscripts, superscripts and
vulgar fractions.
* sfd/FreeMonoBold.sfd - Started harmonizing Greek letters with
Latin and Cyrillic.
* sfd/FreeMonoBold.sfd - Added subscripts, superscripts and vulgar
fractions.
2002-04-15 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* www/design-notes.html - Updated notes on super-/subscripts in
Free Mono Bold. Separate subsections for Free Mono regular and
Free Mono Bold.
2002-04-12 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Added Ethiopian glyphs, converted from the
Metafont sources from TGI, Universität Hamburg (authors Berhanu
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>.
* sfd/FreeMonoBold.sfd - Added 40 characters, mostly in the Latin
Extended-B and IPA Extensions areas.
2002-04-11 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Added a handful of characters in the Latin
Extended-B, IPA Extensions, Currency Symbols and Miscellaneous
Symbols areas.
2002-04-09 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Correcting accent positioning in the Extended
Greek area; adding a couple of characters here and there. Still 20
characters short of MES-2 conformance.
2002-04-08 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Added some characters in the Arrows area;
more or less completed Extended Greek area (accents still need to
be fine-tuned).
2002-04-05 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Modern non-Russian Cyrilic mostly completed.
* sfd/FreeMonoOblique.sfd - Synchronized with FreeMono.
* sfd/FreeSerif.sfd - Added Thomas Ridgeway's Tamil characters
(converted from Metafont and edited somehwat).
2002-04-04 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMonoOblique.sfd - Armenian letters added.
* sfd/FreeMonoBold.sfd - Serbian Cyrillic letters dje, tshe, lje
and nje corrected.
* sfd/FreeMono.sfd - Serbian Cyrillic letters dje and tshe
corrected. Some other non-Russian Cyrillic letters modified and
"welded together".
2002-04-03 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* 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
1673 characters.
2002-03-28 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Added some mathematical symbols.
2002-03-26 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSans.sfd - took H.S. Pannu's Gurmukhi from FreeSerif. It
actually fits to FreeSans much better. It seems I'll have to look
for another Gurmukhi font with modulated stroke for FreeSerif.
* sfd/FreeSerifItalic.sfd - replaced existing Hebrew glyphs by
those from FreeSerif (slanted for 15.5 degrees).
* sfd/FreeSerif.sfd - Added dotted Hebrew letters. Changed barred H.
* sfd/FreeMono.sfd - Completed vulgar fractions; minor changes in
Greek; added some mathematical operators.
* sfd/FreeMonoBold.sfd - added 12 characters to Latin Extended-B
and IPA Extensions areas (total 984).
2002-03-25 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMonoBold.sfd - started adding Latin Extended-B and IPA
Extensions.
* sfd/FreeMono.sfd - Minor cosmetic changes; cleaning up Greek
(removing redundant control points), added some non-European
Cyrillic glyphs as a test.
2002-03-22 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - Some minor modifications; letters in Latin
Extended-B area "welded" together.
2002-03-20 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* www/index.html - finally linked the resources and design notes
pages.
* www/design-notes.html - added scaling information for super- and
subscript numerals in FreeMono.
2002-03-19 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - the Latin Extended-B and IPA Extension area
characters moved from FreeMono and skewed for 12 degrees.
2002-03-18 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - added a dozen or two of new characters, in
particular in the Latin Extended-B and IPA Extension area.
2002-03-15 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - added a dozen of two of new characters, in
particular in the IPA Extension area.
* www/design-notes.html - Corrected data for x-height in FreeMono;
information on constructing small caps.
2002-03-14 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeMono.sfd - added three smiley characters to the
Miscallaneous Symbols area.
2002-03-10 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* 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>.
Got the permission from him to include the Gurmukhi glyph set.
2002-03-08 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Added some more glyphs in the Mathematical
Symbols area to a total number of 3374.
2002-03-06 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Added a basic Gurmukhi set.
* www/design-notes.html - started a page on design notes
* sfd/FreeMono.sfd - realized that glyphs in the Box Drawing area
and Block Elements area should extend through the ascender *and
descender* height, and corrected it.
* sfd/FreeMono.sfd, sfd/FreeMonoOblique.sfd - added some musical
glyphs, linking "no-break space" to space, "soft hyphen" to
hyphen-minus etc.
2002-03-05 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* tools/WGL4.lst - Added Windows Glyph List 4.0
* tools/LigatureList.pl - Wrote a Perl script, which lists the
GSUB list (ligature list) of a OpenType font.
* sfd/FreeSerifBold.sfd, sfd/FreeSerifBoldItalic.sfd,
sfd/FreeSerifItalic.sfd - auxilliary Hebrew glyphs added. They are
too light compared with Latin and will be substituted with better
ones.
2002-03-04 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Added some more glyphs to the Mathematical
Operators area (page 0x22).
* sfd/FreeSerif.sfd - Incomplete and fragmentary support for
Devanagari, originating from Harsh Kumar's Shusha fonts was
replaced by Frans Velthuis' Devanagari metafont, now maintained by
Anshuman Pandey <apandey@u.washington.edu> and available under
GPL. Until I figure out how to provide glyph substitution table in
OpenType, only the Unicode part is there.
2002-02-28 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* ChangeLog file created
* sfd/FreeSerif.sfd - Added some Telugu glyphs to page 0x0C,
courtesy Prasad A. Chodavarapu <http://chaitanya.bhaavana.net/fonts/>
* sfd/FreeSerif.sfd - Added some glyphs to the Miscellaneous
Symbols page (0x26).
2002-02-26 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* mailing lists freefont-announce and freefont-bugs created
2002-02-25 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/FreeSerif.sfd - Added a couple of glyphs in Mathematics
Operators area.
* sfd/FreeMono.sfd
- Added some more glyphs, in particular in the Mathematical
Operators section.
- Changed FamilyName to Free, FontName to FreeMono, and Full name
to "Free Monospaced".
2002-02-20 Primoz Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>
* sfd/ directory added containing FreeSerif, FreeSans and FreeMono
families.
* tools/ directory added containing lists with characters required
for MES (Multilinguag European Subset) compliance.
* tools/mes-list-expand.pl created - a Perl script for expanding MES
ranges into simple one-char-per-line format
* 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
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/>

View File

@ -1,57 +0,0 @@
-*-mode:text;-*-
$Id$
Installing the Free UCS outline fonts
=====================================
These installation notes are supposed to provide a helpful guidance
through the process of installation of free UCS outline fonts. They
can probably be significantly improved. Please direct your comments,
suggestions for improvements, criticisms etc. to Primoz PETERLIN
<primoz.peterlin@biofiz.mf.uni-lj.si> and thus help improve them.
1. UNIX/GNU/Linux/BSD Systems
The rather awkward "UNIX/GNU/Linux/BSD" agglomeration is used to
denote any system capable of running XFree86 server with FreeType
<http://www.freetype.org/>, a high-quality free font rasterizer.
1.1 The rough way
Unfortunately, hardly any other way exists at the moment.
1) Fetch the freefont-ttf.tar.gz package with Free UCS outline fonts
in the TrueType format.
2) Unpack TrueType fonts into a suitable directory,
e.g. /usr/share/fonts/default/TrueType/.
3) If you have chosen any other directory, make sure the directory you
used to install the fonts is listed in the path searched by the X
Font Server. Append the directory to the "catalogue=" in the
/etc/X11/fs/config.
4) Run ttmkfdir in the directory where you unpacked the fonts.
1.2 Debian GNU/Linux
Users of Debian GNU/Linux system will probably want to use the
pre-packed Debian package, as available from the Debian site,
<http://packages.debian.org/unstable/x11/ttf-freefont.html>, or
any of its mirrors. You can install them by issuing the command
apt-get install ttf-freefont
2. Microsoft Windows 95/98/NT/2000/XP
To be written.
3. MacOS
To be written.

View File

@ -1,113 +0,0 @@
-*-text-*-
$Id$
Summary: This project aims to privide a set of free scalable
(PostScript Type0, TrueType, OpenType...) fonts covering the ISO
10646/Unicode UCS (Universal Character Set).
Why do we need free scalable UCS fonts?
A large number of free software users switched from free X11
bitmapped fonts to proprietary Microsoft Truetype fonts, as a) they
used to be freely downloaded from Microsoft Typography page
<http://www.microsoft.com/typography/free.htm>, b) they contain a more
or less decent subsed of the ISO 10646 UCS (Universal Character Set),
c) they are high-quality, well hinted scalable Truetype fonts, and d)
Freetype <http://www.freetype.org/>, a free high-quality Truetype font
renderer exists and has been integrated into the latest release of
XFree86, the free X11 server.
Building a dependence on non-free software, even a niche one like
fonts, is dangerous. Microsoft Truetype core fonts are not free, they
are just costless. For now, at least. Citing the TrueType core fonts
for the Web FAQ <http://www.microsoft.com/typography/faq/faq8.htm>:
"You may only redistribute the fonts in their original form (.exe or
.sit.hqx) and with their original file name from your Web site or
intranet site. You must not supply the fonts, or any derivative fonts
based on them, in any form that adds value to commercial products,
such as CD-ROM or disk based multimedia programs, application software
or utilities." As of August 2002, however, the fonts are not
anymore available on the Web, which makes the situation clearer.
Aren't there any free high-quality scalable fonts? Yes, there are.
URW++, a German digital typefoundry, released their own version of the
35 Postscript Type 1 core fonts under GPL as their donation to the
Ghostscript project <http://www.gimp.org/fonts.html>. The Wadalab
Kanji comittee has produced Type 1 font files with thousands of
filigree Japanese glyphs <ftp://ftp.ipl.t.u-tokyo.ac.jp/pub/Font/>.
Yannis Haralambous has drawn beautiful glyphs for the Omega
typesetting system <http://omega.cse.unsw.edu.au:8080/>. And so
on. Scattered around the internet there are numerous other free
resources for other national scripts, many of them aiming to be a
suitable match for Latin fonts like Times or Helvetica.
What do we plan to achieve, and how?
Our aim is to collect available resources, fill in the missing pieces,
and provide a set of free high-quality scalable (Type 1 and Truetype)
UCS fonts, released under GPL.
Free UCS scalable fonts will cover the following character sets
* ISO 8859 parts 1-15
* CEN MES-3 European Unicode Subset
http://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://partners.adobe.com/asn/developer/opentype/appendices/wgl4.html
* KOI8-R and KOI8-RU
* DEC VT100 graphics symbols
* International Phonetic Alphabet
* Arabic, Hebrew, Armenian, Georgian, Ethiopian, Thai and Lao alphabets,
including Arabic presentation forms A/B
* Japanese Katakana and Hiragana
* mathematical symbols, including the whole TeX repertoire of symbols
* APL symbols
etc.
A free Postscript font editor, George Williams's Pfaedit
<http://pfaedit.sourceforge.net/> will be used for creating new
glyphs.
Which font shapes should be made? As historical style terms like
Renaissance or Baroque letterforms cannot be applied beyond
Latin/Cyrillic/Greek scripts to any greater extent than Kufi or Nashki
can be applied beyond Arabic script, a smaller subset of styles will
be made: one monospaced and two proportional (one with uniform stroke
and one with modulated) will be made at the start.
In the beginning, however, we don't believe that Truetype hinting will
be good enough to compete with neither the hand-crafted bitmapped
fonts at small sizes, nor with commercial TrueType fonts. A companion
program for modifying the TrueType font tables, TtfMod, is in the
works, though: <http://pfaedit.sourceforge.net/TtfMod/>. For
applications like xterm, users are referred to the existing UCS bitmap
fonts, <http://www.cl.cam.ac.uk/~mgk25/ucs-fonts.html>.
What do the file suffices mean?
The files with .sfd (Spline Font Database) are in PfaEdit's native
format. Please use these if you plan to modify the font files. PfaEdit
can export these to mostly any existing font file format.
TrueType fonts for immediate consumption are the files with the .ttf
(TrueType Font) suffix. You can use them directly, e.g. with the X
font server.
The files with .ps (PostScript) suffix are not font files at all -
they are merely PostScript files with glyph tables, which can be used
for overview, which glyphs are contained in which font file.
You may have noticed the lacking of PostScript Type 1 (.pfa/.pfb) font
files. Type 1 format does not support large (> 256) encoding vectors,
so they can not be used with ISO 10646 encoding. If your printer
supports it, you can use Type 0 format, though. Please use PfaEdit for
conversion to Type 0.
Primoz Peterlin, <primoz.peterlin@biofiz.mf.uni-lj.si>
Free UCS scalable fonts: ftp://biofiz.mf.uni-lj.si/pub/fonts/elbrus/

View File

@ -1,174 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeMono';
$desc=array('Ascent'=>1057,'Descent'=>-319,'CapHeight'=>1057,'Flags'=>32,'FontBBox'=>'[-557 -319 699 1057]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
13=>333, 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600,
47=>600, 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600,
63=>600, 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600,
79=>600, 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600,
95=>600, 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600,
111=>600, 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600,
8364=>600, 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600,
8216=>600, 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600,
161=>600, 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600,
177=>600, 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600,
193=>600, 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600,
209=>600, 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600,
225=>600, 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600,
241=>600, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600,
257=>600, 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600,
273=>600, 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600,
289=>600, 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600,
305=>600, 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600,
321=>600, 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600,
337=>600, 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600,
357=>600, 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600,
373=>600, 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, 385=>600, 386=>600, 387=>600, 388=>600, 389=>600, 390=>600, 391=>600,
392=>600, 393=>600, 394=>600, 395=>600, 396=>600, 397=>600, 398=>600, 399=>600, 400=>600, 401=>600, 403=>600, 404=>600, 405=>600, 406=>600, 407=>600, 408=>600,
409=>600, 410=>600, 411=>600, 412=>600, 413=>600, 414=>600, 415=>600, 416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600,
425=>600, 426=>600, 427=>600, 428=>600, 429=>600, 430=>600, 431=>600, 432=>600, 433=>600, 434=>600, 435=>600, 436=>600, 437=>600, 438=>600, 439=>600, 440=>600,
441=>600, 442=>600, 443=>600, 444=>600, 445=>600, 446=>600, 447=>600, 448=>600, 449=>600, 450=>600, 451=>600, 452=>600, 453=>600, 454=>600, 455=>600, 456=>600,
457=>600, 458=>600, 459=>600, 460=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600,
473=>600, 474=>600, 475=>600, 476=>600, 477=>600, 478=>600, 479=>600, 480=>600, 481=>600, 482=>600, 483=>600, 484=>600, 485=>600, 486=>600, 487=>600, 488=>600,
489=>600, 490=>600, 491=>600, 492=>600, 493=>600, 494=>600, 495=>600, 496=>600, 497=>600, 498=>600, 499=>600, 500=>600, 501=>600, 502=>600, 503=>600, 504=>600,
505=>600, 506=>600, 507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>600, 513=>600, 514=>600, 515=>600, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600,
521=>600, 522=>600, 523=>600, 524=>600, 525=>600, 526=>600, 527=>600, 528=>600, 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600,
537=>600, 538=>600, 539=>600, 540=>600, 541=>600, 542=>600, 543=>600, 548=>600, 549=>600, 550=>600, 551=>600, 552=>600, 553=>600, 554=>600, 555=>600, 556=>600,
557=>600, 558=>600, 559=>600, 560=>600, 561=>600, 562=>600, 563=>600, 577=>600, 578=>600, 592=>600, 593=>600, 594=>600, 595=>600, 596=>600, 597=>600, 598=>600,
599=>600, 600=>600, 601=>600, 602=>600, 603=>600, 604=>600, 607=>600, 608=>600, 609=>600, 610=>600, 611=>600, 612=>600, 613=>600, 614=>600, 615=>600, 616=>600,
617=>600, 618=>600, 619=>600, 620=>600, 621=>600, 623=>600, 624=>600, 625=>600, 626=>600, 627=>600, 628=>600, 629=>600, 630=>600, 632=>600, 633=>600, 634=>600,
635=>600, 636=>600, 637=>600, 638=>600, 639=>600, 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 646=>600, 647=>600, 648=>600, 649=>600, 652=>600,
653=>600, 654=>600, 655=>600, 656=>600, 657=>600, 658=>600, 660=>600, 661=>600, 662=>600, 663=>600, 665=>600, 667=>600, 668=>600, 669=>600, 670=>600, 671=>600,
672=>600, 673=>600, 674=>600, 675=>600, 676=>600, 678=>600, 679=>600, 699=>600, 700=>600, 701=>600, 702=>600, 703=>600, 711=>600, 712=>600, 713=>600, 714=>600,
715=>600, 720=>600, 721=>600, 722=>600, 723=>600, 724=>600, 725=>600, 726=>600, 727=>600, 728=>600, 729=>600, 730=>600, 731=>600, 733=>600, 735=>600, 750=>600,
768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0,
784=>0, 785=>0, 795=>0, 801=>0, 802=>0, 807=>0, 808=>0, 819=>600, 821=>0, 822=>0, 823=>0, 824=>0, 834=>0, 836=>0, 890=>600, 900=>600,
901=>600, 902=>600, 903=>600, 904=>600, 905=>600, 906=>600, 908=>600, 910=>600, 911=>600, 912=>600, 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600,
919=>600, 920=>600, 921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600, 930=>600, 931=>600, 932=>600, 933=>600, 934=>600,
935=>600, 936=>600, 937=>600, 938=>600, 939=>600, 940=>600, 941=>600, 942=>600, 943=>600, 944=>600, 945=>600, 946=>600, 947=>600, 948=>600, 949=>600, 950=>600,
951=>600, 952=>600, 953=>600, 954=>600, 955=>600, 956=>600, 957=>600, 958=>600, 959=>600, 960=>600, 961=>600, 962=>600, 963=>600, 964=>600, 965=>600, 966=>600,
967=>600, 968=>600, 969=>600, 970=>600, 971=>600, 972=>600, 973=>600, 974=>600, 976=>600, 977=>600, 978=>600, 979=>600, 981=>600, 986=>600, 987=>600, 988=>600,
1024=>600, 1025=>600, 1026=>600, 1028=>600, 1029=>600, 1030=>600, 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600,
1043=>600, 1044=>600, 1045=>600, 1046=>600, 1047=>600, 1048=>600, 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600,
1059=>600, 1060=>600, 1061=>600, 1062=>600, 1063=>600, 1064=>600, 1065=>600, 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600,
1075=>600, 1076=>600, 1077=>600, 1078=>600, 1079=>600, 1080=>600, 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600,
1091=>600, 1092=>600, 1093=>600, 1094=>600, 1095=>600, 1096=>600, 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600,
1107=>600, 1108=>600, 1109=>600, 1110=>600, 1111=>600, 1112=>600, 1113=>600, 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1124=>600, 1130=>600, 1132=>600, 1136=>600,
1137=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600, 1168=>600, 1169=>600, 1170=>600, 1171=>600, 1172=>600, 1173=>600, 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600,
1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600, 1184=>600, 1185=>600, 1186=>600, 1187=>600, 1188=>600, 1189=>600, 1190=>600, 1191=>600, 1192=>600, 1193=>600, 1194=>600,
1195=>600, 1196=>600, 1197=>600, 1198=>600, 1199=>600, 1200=>600, 1201=>600, 1202=>600, 1203=>600, 1204=>600, 1205=>600, 1206=>600, 1207=>600, 1208=>600, 1209=>600, 1210=>600,
1211=>600, 1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600, 1217=>600, 1218=>600, 1219=>600, 1220=>600, 1223=>600, 1224=>600, 1227=>600, 1228=>600, 1232=>600, 1233=>600,
1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600, 1239=>600, 1240=>600, 1241=>600, 1242=>600, 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600,
1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600, 1255=>600, 1256=>600, 1257=>600, 1258=>600, 1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600,
1266=>600, 1267=>600, 1268=>600, 1269=>600, 1272=>600, 1273=>600, 1329=>600, 1330=>600, 1331=>600, 1332=>600, 1333=>600, 1334=>600, 1335=>600, 1336=>600, 1337=>600, 1338=>600,
1339=>600, 1340=>600, 1341=>600, 1342=>600, 1343=>600, 1344=>600, 1345=>600, 1346=>600, 1347=>600, 1348=>600, 1349=>600, 1350=>600, 1351=>600, 1352=>600, 1353=>600, 1354=>600,
1355=>600, 1356=>600, 1357=>600, 1358=>600, 1359=>600, 1360=>600, 1361=>600, 1362=>600, 1363=>600, 1364=>600, 1365=>600, 1366=>600, 1377=>600, 1378=>600, 1379=>600, 1380=>600,
1381=>600, 1382=>600, 1383=>600, 1384=>600, 1385=>600, 1386=>600, 1387=>600, 1388=>600, 1389=>600, 1390=>600, 1391=>600, 1392=>600, 1393=>600, 1394=>600, 1395=>600, 1396=>600,
1397=>600, 1398=>600, 1399=>600, 1400=>600, 1401=>600, 1402=>600, 1403=>600, 1404=>600, 1405=>600, 1406=>600, 1407=>600, 1408=>600, 1409=>600, 1410=>600, 1411=>600, 1412=>600,
1413=>600, 1414=>600, 1418=>600, 1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600, 1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600,
1470=>600, 1471=>600, 1472=>600, 1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600,
1497=>600, 1498=>600, 1499=>600, 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600,
1513=>600, 1514=>600, 1520=>600, 1521=>600, 1522=>600, 1523=>600, 1524=>600, 5792=>600, 5793=>600, 5794=>600, 5795=>600, 5796=>600, 5797=>600, 5798=>600, 5799=>600, 5800=>600,
5801=>600, 5802=>600, 5803=>600, 5804=>600, 5805=>600, 5806=>600, 5807=>600, 5808=>600, 5809=>600, 5810=>600, 5811=>600, 5812=>600, 5813=>600, 5814=>600, 5815=>600, 5816=>600,
5817=>600, 5818=>600, 5819=>600, 5820=>600, 5821=>600, 5822=>600, 5823=>600, 5824=>600, 5825=>600, 5826=>600, 5827=>600, 5828=>600, 5829=>600, 5830=>600, 5831=>600, 5832=>600,
5833=>600, 5834=>600, 5835=>600, 5836=>600, 5837=>600, 5838=>600, 5839=>600, 5840=>600, 5841=>600, 5842=>600, 5843=>600, 5844=>600, 5845=>600, 5846=>600, 5847=>600, 5848=>600,
5849=>600, 5850=>600, 5851=>600, 5852=>600, 5853=>600, 5854=>600, 5855=>600, 5856=>600, 5857=>600, 5858=>600, 5859=>600, 5860=>600, 5861=>600, 5862=>600, 5863=>600, 5864=>600,
5865=>600, 5866=>600, 5867=>600, 5868=>600, 5869=>600, 5870=>600, 5871=>600, 5872=>600, 7680=>600, 7681=>600, 7682=>600, 7683=>600, 7684=>600, 7685=>600, 7686=>600, 7687=>600,
7688=>600, 7689=>600, 7690=>600, 7691=>600, 7692=>600, 7693=>600, 7694=>600, 7695=>600, 7696=>600, 7697=>600, 7698=>600, 7699=>600, 7700=>600, 7701=>600, 7702=>600, 7703=>600,
7704=>600, 7705=>600, 7706=>600, 7707=>600, 7708=>600, 7709=>600, 7710=>600, 7711=>600, 7712=>600, 7713=>600, 7714=>600, 7715=>600, 7716=>600, 7717=>600, 7718=>600, 7719=>600,
7720=>600, 7721=>600, 7722=>600, 7723=>600, 7724=>600, 7725=>600, 7726=>600, 7727=>600, 7728=>600, 7729=>600, 7730=>600, 7731=>600, 7732=>600, 7733=>600, 7734=>600, 7735=>600,
7736=>600, 7737=>600, 7738=>600, 7739=>600, 7740=>600, 7741=>600, 7742=>600, 7743=>600, 7744=>600, 7745=>600, 7746=>600, 7747=>600, 7748=>600, 7749=>600, 7750=>600, 7751=>600,
7752=>600, 7753=>600, 7754=>600, 7755=>600, 7756=>600, 7757=>600, 7758=>600, 7759=>600, 7760=>600, 7761=>600, 7762=>600, 7763=>600, 7764=>600, 7765=>600, 7766=>600, 7767=>600,
7768=>600, 7769=>600, 7770=>600, 7771=>600, 7772=>600, 7773=>600, 7774=>600, 7775=>600, 7776=>600, 7777=>600, 7778=>600, 7779=>600, 7780=>600, 7781=>600, 7782=>600, 7783=>600,
7784=>600, 7785=>600, 7786=>600, 7787=>600, 7788=>600, 7789=>600, 7790=>600, 7791=>600, 7792=>600, 7793=>600, 7794=>600, 7795=>600, 7796=>600, 7797=>600, 7798=>600, 7799=>600,
7800=>600, 7801=>600, 7802=>600, 7803=>600, 7804=>600, 7805=>600, 7806=>600, 7807=>600, 7808=>600, 7809=>600, 7810=>600, 7811=>600, 7812=>600, 7813=>600, 7814=>600, 7815=>600,
7816=>600, 7817=>600, 7818=>600, 7819=>600, 7820=>600, 7821=>600, 7822=>600, 7823=>600, 7824=>600, 7825=>600, 7826=>600, 7827=>600, 7828=>600, 7829=>600, 7830=>600, 7831=>600,
7832=>600, 7833=>600, 7834=>600, 7835=>600, 7840=>600, 7841=>600, 7842=>600, 7843=>600, 7844=>600, 7845=>600, 7846=>600, 7847=>600, 7848=>600, 7849=>600, 7850=>600, 7851=>600,
7852=>600, 7853=>600, 7854=>600, 7855=>600, 7856=>600, 7857=>600, 7858=>600, 7859=>600, 7860=>600, 7861=>600, 7862=>600, 7863=>600, 7864=>600, 7865=>600, 7866=>600, 7867=>600,
7868=>600, 7869=>600, 7870=>600, 7871=>600, 7872=>600, 7873=>600, 7874=>600, 7875=>600, 7876=>600, 7877=>600, 7878=>600, 7879=>600, 7880=>600, 7881=>600, 7882=>600, 7883=>600,
7884=>600, 7885=>600, 7886=>600, 7887=>600, 7888=>600, 7889=>600, 7890=>600, 7891=>600, 7892=>600, 7893=>600, 7894=>600, 7895=>600, 7896=>600, 7897=>600, 7898=>600, 7899=>600,
7900=>600, 7901=>600, 7902=>600, 7903=>600, 7904=>600, 7905=>600, 7906=>600, 7907=>600, 7908=>600, 7909=>600, 7910=>600, 7911=>600, 7912=>600, 7913=>600, 7914=>600, 7915=>600,
7916=>600, 7917=>600, 7918=>600, 7919=>600, 7920=>600, 7921=>600, 7922=>600, 7923=>600, 7924=>600, 7925=>600, 7926=>600, 7927=>600, 7928=>600, 7929=>600, 7936=>600, 7937=>600,
7938=>600, 7939=>600, 7940=>600, 7941=>600, 7942=>600, 7943=>600, 7944=>600, 7945=>600, 7946=>600, 7947=>600, 7948=>600, 7949=>600, 7950=>600, 7951=>600, 7952=>600, 7953=>600,
7954=>600, 7955=>600, 7956=>600, 7957=>600, 7960=>600, 7961=>600, 7962=>600, 7963=>600, 7964=>600, 7965=>600, 7968=>600, 7969=>600, 7970=>600, 7971=>600, 7972=>600, 7973=>600,
7974=>600, 7975=>600, 7976=>600, 7977=>600, 7978=>600, 7979=>600, 7980=>600, 7981=>600, 7982=>600, 7983=>600, 7984=>600, 7985=>600, 7986=>600, 7987=>600, 7988=>600, 7989=>600,
7990=>600, 7991=>600, 7992=>600, 7993=>600, 7994=>600, 7995=>600, 7996=>600, 7997=>600, 7998=>600, 7999=>600, 8000=>600, 8001=>600, 8002=>600, 8003=>600, 8004=>600, 8005=>600,
8008=>600, 8009=>600, 8010=>600, 8011=>600, 8012=>600, 8013=>600, 8016=>600, 8017=>600, 8018=>600, 8019=>600, 8020=>600, 8021=>600, 8022=>600, 8023=>600, 8025=>600, 8027=>600,
8029=>600, 8031=>600, 8032=>600, 8033=>600, 8034=>600, 8035=>600, 8036=>600, 8037=>600, 8038=>600, 8039=>600, 8040=>600, 8041=>600, 8042=>600, 8043=>600, 8044=>600, 8045=>600,
8046=>600, 8047=>600, 8048=>600, 8049=>600, 8050=>600, 8051=>600, 8052=>600, 8053=>600, 8054=>600, 8055=>600, 8056=>600, 8057=>600, 8058=>600, 8059=>600, 8060=>600, 8061=>600,
8064=>600, 8065=>600, 8066=>600, 8067=>600, 8068=>600, 8069=>600, 8070=>600, 8071=>600, 8072=>600, 8073=>600, 8074=>600, 8075=>600, 8076=>600, 8077=>600, 8078=>600, 8079=>600,
8080=>600, 8081=>600, 8082=>600, 8083=>600, 8084=>600, 8085=>600, 8086=>600, 8087=>600, 8088=>600, 8089=>600, 8090=>600, 8091=>600, 8092=>600, 8093=>600, 8094=>600, 8095=>600,
8096=>600, 8097=>600, 8098=>600, 8099=>600, 8100=>600, 8101=>600, 8102=>600, 8103=>600, 8104=>600, 8105=>600, 8106=>600, 8107=>600, 8108=>600, 8109=>600, 8110=>600, 8111=>600,
8112=>600, 8113=>600, 8114=>600, 8115=>600, 8116=>600, 8118=>600, 8119=>600, 8120=>600, 8121=>600, 8122=>600, 8123=>600, 8124=>600, 8125=>600, 8126=>600, 8127=>600, 8128=>600,
8129=>600, 8130=>600, 8131=>600, 8132=>600, 8134=>600, 8135=>600, 8136=>600, 8137=>600, 8138=>600, 8139=>600, 8140=>600, 8141=>600, 8142=>600, 8143=>600, 8144=>600, 8145=>600,
8146=>600, 8147=>600, 8150=>600, 8151=>600, 8152=>600, 8153=>600, 8154=>600, 8155=>600, 8157=>600, 8158=>600, 8159=>600, 8160=>600, 8161=>600, 8162=>600, 8163=>600, 8164=>600,
8165=>600, 8166=>600, 8167=>600, 8168=>600, 8169=>600, 8170=>600, 8171=>600, 8172=>600, 8173=>600, 8175=>600, 8178=>600, 8179=>600, 8180=>600, 8182=>600, 8183=>600, 8184=>600,
8185=>600, 8186=>600, 8187=>600, 8188=>600, 8189=>600, 8190=>600, 8208=>600, 8213=>600, 8215=>600, 8219=>600, 8223=>600, 8229=>600, 8241=>600, 8242=>600, 8243=>600, 8244=>600,
8245=>600, 8246=>600, 8247=>600, 8252=>600, 8253=>600, 8254=>600, 8259=>600, 8260=>600, 8261=>600, 8262=>600, 8264=>600, 8265=>600, 8267=>600, 8304=>600, 8305=>600, 8306=>600,
8307=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600, 8314=>600, 8315=>600, 8316=>600, 8317=>600, 8318=>600, 8319=>600, 8320=>600, 8321=>600, 8322=>600,
8323=>600, 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8330=>600, 8331=>600, 8332=>600, 8333=>600, 8334=>600, 8355=>600, 8356=>600, 8359=>600, 8362=>600,
8448=>600, 8449=>600, 8450=>600, 8451=>600, 8453=>600, 8454=>600, 8455=>600, 8461=>600, 8464=>600, 8465=>600, 8466=>600, 8467=>600, 8468=>600, 8469=>600, 8470=>600, 8471=>600,
8472=>600, 8473=>600, 8474=>600, 8477=>600, 8478=>600, 8484=>600, 8485=>600, 8486=>600, 8487=>600, 8490=>600, 8491=>600, 8498=>600, 8501=>600, 8531=>600, 8532=>600, 8533=>600,
8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8544=>600, 8545=>600, 8546=>600, 8547=>600, 8548=>600, 8549=>600,
8550=>600, 8551=>600, 8552=>600, 8553=>600, 8554=>600, 8555=>600, 8556=>600, 8557=>600, 8558=>600, 8559=>600, 8592=>600, 8593=>600, 8594=>600, 8595=>600, 8596=>600, 8597=>600,
8598=>600, 8599=>600, 8600=>600, 8601=>600, 8602=>600, 8603=>600, 8604=>600, 8605=>600, 8606=>600, 8607=>600, 8608=>600, 8609=>600, 8610=>600, 8611=>600, 8612=>600, 8613=>600,
8614=>600, 8615=>600, 8616=>600, 8617=>600, 8618=>600, 8619=>600, 8620=>600, 8621=>600, 8622=>600, 8623=>600, 8624=>600, 8625=>600, 8626=>600, 8627=>600, 8628=>600, 8629=>600,
8630=>600, 8631=>600, 8632=>600, 8633=>600, 8634=>600, 8635=>600, 8636=>600, 8637=>600, 8638=>600, 8639=>600, 8640=>600, 8641=>600, 8642=>600, 8643=>600, 8644=>600, 8645=>600,
8646=>600, 8647=>600, 8648=>600, 8649=>600, 8650=>600, 8651=>600, 8652=>600, 8653=>600, 8654=>600, 8655=>600, 8656=>600, 8657=>600, 8658=>600, 8659=>600, 8660=>600, 8661=>600,
8704=>600, 8705=>600, 8706=>600, 8707=>600, 8708=>600, 8709=>600, 8710=>600, 8711=>600, 8712=>600, 8713=>600, 8714=>600, 8715=>600, 8716=>600, 8717=>600, 8719=>600, 8721=>600,
8722=>600, 8723=>600, 8724=>600, 8725=>600, 8729=>600, 8730=>600, 8731=>600, 8732=>600, 8733=>600, 8734=>600, 8735=>600, 8743=>600, 8744=>600, 8745=>600, 8746=>600, 8747=>600,
8748=>600, 8749=>600, 8750=>600, 8751=>600, 8752=>600, 8756=>600, 8757=>600, 8759=>600, 8764=>600, 8765=>600, 8769=>600, 8770=>600, 8771=>600, 8772=>600, 8773=>600, 8776=>600,
8784=>600, 8785=>600, 8786=>600, 8787=>600, 8793=>600, 8794=>600, 8800=>600, 8801=>600, 8804=>600, 8805=>600, 8806=>600, 8807=>600, 8810=>600, 8811=>600, 8812=>600, 8814=>600,
8815=>600, 8822=>600, 8823=>600, 8834=>600, 8835=>600, 8838=>600, 8839=>600, 8853=>600, 8854=>600, 8855=>600, 8856=>600, 8857=>600, 8858=>600, 8859=>600, 8860=>600, 8861=>600,
8866=>600, 8867=>600, 8868=>600, 8869=>600, 8870=>600, 8871=>600, 8872=>600, 8873=>600, 8874=>600, 8875=>600, 8876=>600, 8877=>600, 8878=>600, 8879=>600, 8894=>600, 8901=>600,
8902=>600, 8960=>600, 8962=>600, 8963=>600, 8968=>600, 8969=>600, 8970=>600, 8971=>600, 8972=>600, 8973=>600, 8974=>600, 8975=>600, 8976=>600, 8981=>600, 8988=>600, 8989=>600,
8990=>600, 8991=>600, 9001=>600, 9002=>600, 9115=>600, 9116=>600, 9117=>600, 9118=>600, 9119=>600, 9120=>600, 9121=>600, 9122=>600, 9123=>600, 9124=>600, 9125=>600, 9126=>600,
9127=>600, 9128=>600, 9129=>600, 9130=>600, 9131=>600, 9132=>600, 9133=>600, 9134=>600, 9135=>600, 9136=>600, 9137=>600, 9138=>600, 9139=>600, 9140=>600, 9143=>600, 9146=>600,
9147=>600, 9148=>600, 9149=>600, 9472=>600, 9473=>600, 9474=>600, 9475=>600, 9476=>600, 9477=>600, 9478=>600, 9479=>600, 9480=>600, 9481=>600, 9482=>600, 9483=>600, 9484=>600,
9485=>600, 9486=>600, 9487=>600, 9488=>600, 9489=>600, 9490=>600, 9491=>600, 9492=>600, 9493=>600, 9494=>600, 9495=>600, 9496=>600, 9497=>600, 9498=>600, 9499=>600, 9500=>600,
9501=>600, 9502=>600, 9503=>600, 9504=>600, 9505=>600, 9506=>600, 9507=>600, 9508=>600, 9509=>600, 9510=>600, 9511=>600, 9512=>600, 9513=>600, 9514=>600, 9515=>600, 9516=>600,
9517=>600, 9518=>600, 9519=>600, 9520=>600, 9521=>600, 9522=>600, 9523=>600, 9524=>600, 9525=>600, 9526=>600, 9527=>600, 9528=>600, 9529=>600, 9530=>600, 9531=>600, 9532=>600,
9533=>600, 9534=>600, 9535=>600, 9536=>600, 9537=>600, 9538=>600, 9539=>600, 9540=>600, 9541=>600, 9542=>600, 9543=>600, 9544=>600, 9545=>600, 9546=>600, 9547=>600, 9548=>600,
9549=>600, 9550=>600, 9551=>600, 9552=>600, 9553=>600, 9554=>600, 9555=>600, 9556=>600, 9557=>600, 9558=>600, 9559=>600, 9560=>600, 9561=>600, 9562=>600, 9563=>600, 9564=>600,
9565=>600, 9566=>600, 9567=>600, 9568=>600, 9569=>600, 9570=>600, 9571=>600, 9572=>600, 9573=>600, 9574=>600, 9575=>600, 9576=>600, 9577=>600, 9578=>600, 9579=>600, 9580=>600,
9581=>600, 9582=>600, 9583=>600, 9584=>600, 9585=>600, 9586=>600, 9587=>600, 9588=>600, 9589=>600, 9590=>600, 9591=>600, 9592=>600, 9593=>600, 9594=>600, 9595=>600, 9596=>600,
9597=>600, 9598=>600, 9599=>600, 9600=>600, 9601=>600, 9602=>600, 9603=>600, 9604=>600, 9605=>600, 9606=>600, 9607=>600, 9608=>600, 9609=>600, 9610=>600, 9611=>600, 9612=>600,
9613=>600, 9614=>600, 9615=>600, 9616=>600, 9617=>600, 9618=>600, 9619=>600, 9620=>600, 9621=>600, 9622=>600, 9623=>600, 9624=>600, 9625=>600, 9626=>600, 9627=>600, 9628=>600,
9629=>600, 9630=>600, 9631=>600, 9632=>600, 9633=>600, 9634=>600, 9635=>600, 9636=>600, 9637=>600, 9638=>600, 9639=>600, 9640=>600, 9641=>600, 9642=>600, 9643=>600, 9644=>600,
9645=>600, 9646=>600, 9647=>600, 9648=>600, 9649=>600, 9650=>600, 9651=>600, 9652=>600, 9653=>600, 9654=>600, 9655=>600, 9656=>600, 9657=>600, 9658=>600, 9659=>600, 9660=>600,
9661=>600, 9662=>600, 9663=>600, 9664=>600, 9665=>600, 9666=>600, 9667=>600, 9668=>600, 9669=>600, 9670=>600, 9671=>600, 9672=>600, 9673=>600, 9674=>600, 9675=>600, 9676=>600,
9677=>600, 9678=>600, 9679=>600, 9680=>600, 9681=>600, 9682=>600, 9683=>600, 9684=>600, 9685=>600, 9686=>600, 9687=>600, 9688=>600, 9689=>600, 9690=>600, 9691=>600, 9692=>600,
9693=>600, 9694=>600, 9695=>600, 9696=>600, 9697=>600, 9698=>600, 9699=>600, 9700=>600, 9701=>600, 9702=>600, 9703=>600, 9704=>600, 9705=>600, 9706=>600, 9707=>600, 9708=>600,
9709=>600, 9710=>600, 9711=>600, 9712=>600, 9713=>600, 9714=>600, 9715=>600, 9716=>600, 9717=>600, 9718=>600, 9719=>600, 9720=>600, 9721=>600, 9722=>600, 9723=>600, 9724=>600,
9725=>600, 9726=>600, 9727=>600, 9728=>600, 9729=>600, 9730=>600, 9733=>600, 9734=>600, 9735=>600, 9736=>600, 9737=>600, 9744=>600, 9745=>600, 9746=>600, 9756=>600, 9758=>600,
9766=>600, 9768=>600, 9769=>600, 9774=>600, 9776=>600, 9777=>600, 9778=>600, 9779=>600, 9780=>600, 9781=>600, 9782=>600, 9783=>600, 9785=>600, 9786=>600, 9787=>600, 9788=>600,
9791=>600, 9792=>600, 9793=>600, 9794=>600, 9833=>600, 9834=>600, 9835=>600, 9836=>600, 9837=>600, 9838=>600, 9839=>600, 10214=>600, 10215=>600, 10216=>600, 10217=>600, 10218=>600,
10219=>600, 10240=>600, 10241=>600, 10242=>600, 10243=>600, 10244=>600, 10245=>600, 10246=>600, 10247=>600, 10248=>600, 10249=>600, 10250=>600, 10251=>600, 10252=>600, 10253=>600, 10254=>600,
10255=>600, 10256=>600, 10257=>600, 10258=>600, 10259=>600, 10260=>600, 10261=>600, 10262=>600, 10263=>600, 10264=>600, 10265=>600, 10266=>600, 10267=>600, 10268=>600, 10269=>600, 10270=>600,
10271=>600, 10272=>600, 10273=>600, 10274=>600, 10275=>600, 10276=>600, 10277=>600, 10278=>600, 10279=>600, 10280=>600, 10281=>600, 10282=>600, 10283=>600, 10284=>600, 10285=>600, 10286=>600,
10287=>600, 10288=>600, 10289=>600, 10290=>600, 10291=>600, 10292=>600, 10293=>600, 10294=>600, 10295=>600, 10296=>600, 10297=>600, 10298=>600, 10299=>600, 10300=>600, 10301=>600, 10302=>600,
10303=>600, 10304=>600, 10305=>600, 10306=>600, 10307=>600, 10308=>600, 10309=>600, 10310=>600, 10311=>600, 10312=>600, 10313=>600, 10314=>600, 10315=>600, 10316=>600, 10317=>600, 10318=>600,
10319=>600, 10320=>600, 10321=>600, 10322=>600, 10323=>600, 10324=>600, 10325=>600, 10326=>600, 10327=>600, 10328=>600, 10329=>600, 10330=>600, 10331=>600, 10332=>600, 10333=>600, 10334=>600,
10335=>600, 10336=>600, 10337=>600, 10338=>600, 10339=>600, 10340=>600, 10341=>600, 10342=>600, 10343=>600, 10344=>600, 10345=>600, 10346=>600, 10347=>600, 10348=>600, 10349=>600, 10350=>600,
10351=>600, 10352=>600, 10353=>600, 10354=>600, 10355=>600, 10356=>600, 10357=>600, 10358=>600, 10359=>600, 10360=>600, 10361=>600, 10362=>600, 10363=>600, 10364=>600, 10365=>600, 10366=>600,
10367=>600, 10368=>600, 10369=>600, 10370=>600, 10371=>600, 10372=>600, 10373=>600, 10374=>600, 10375=>600, 10376=>600, 10377=>600, 10378=>600, 10379=>600, 10380=>600, 10381=>600, 10382=>600,
10383=>600, 10384=>600, 10385=>600, 10386=>600, 10387=>600, 10388=>600, 10389=>600, 10390=>600, 10391=>600, 10392=>600, 10393=>600, 10394=>600, 10395=>600, 10396=>600, 10397=>600, 10398=>600,
10399=>600, 10400=>600, 10401=>600, 10402=>600, 10403=>600, 10404=>600, 10405=>600, 10406=>600, 10407=>600, 10408=>600, 10409=>600, 10410=>600, 10411=>600, 10412=>600, 10413=>600, 10414=>600,
10415=>600, 10416=>600, 10417=>600, 10418=>600, 10419=>600, 10420=>600, 10421=>600, 10422=>600, 10423=>600, 10424=>600, 10425=>600, 10426=>600, 10427=>600, 10428=>600, 10429=>600, 10430=>600,
10431=>600, 10432=>600, 10433=>600, 10434=>600, 10435=>600, 10436=>600, 10437=>600, 10438=>600, 10439=>600, 10440=>600, 10441=>600, 10442=>600, 10443=>600, 10444=>600, 10445=>600, 10446=>600,
10447=>600, 10448=>600, 10449=>600, 10450=>600, 10451=>600, 10452=>600, 10453=>600, 10454=>600, 10455=>600, 10456=>600, 10457=>600, 10458=>600, 10459=>600, 10460=>600, 10461=>600, 10462=>600,
10463=>600, 10464=>600, 10465=>600, 10466=>600, 10467=>600, 10468=>600, 10469=>600, 10470=>600, 10471=>600, 10472=>600, 10473=>600, 10474=>600, 10475=>600, 10476=>600, 10477=>600, 10478=>600,
10479=>600, 10480=>600, 10481=>600, 10482=>600, 10483=>600, 10484=>600, 10485=>600, 10486=>600, 10487=>600, 10488=>600, 10489=>600, 10490=>600, 10491=>600, 10492=>600, 10493=>600, 10494=>600,
10495=>600, 63171=>600, 64256=>600, 64257=>600, 64258=>600, 64261=>600, 64262=>600, 64285=>600, 64286=>600, 64287=>600, 64288=>600, 64289=>600, 64290=>600, 64291=>600, 64292=>600, 64293=>600,
64294=>600, 64295=>600, 64296=>600, 64297=>600, 64298=>600, 64299=>600, 64300=>600, 64301=>600, 64302=>600, 64303=>600, 64304=>600, 64305=>600, 64306=>600, 64307=>600, 64308=>600, 64309=>600,
64310=>600, 64312=>600, 64313=>600, 64314=>600, 64315=>600, 64316=>600, 64318=>600, 64320=>600, 64321=>600, 64323=>600, 64324=>600, 64326=>600, 64327=>600, 64328=>600, 64329=>600, 64330=>600,
64331=>600, 64332=>600, 64333=>600, 64334=>600, 64335=>600, 65533=>600, 8174=>600);
$enc='';
$diff='';
$file='FreeMono.z';
$ctg='FreeMono.ctg.z';
$originalsize=293572;
?>

View File

@ -1,107 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeMonoBold';
$desc=array('Ascent'=>1155,'Descent'=>-365,'CapHeight'=>1155,'Flags'=>32,'FontBBox'=>'[-656 -365 950 1155]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
13=>333, 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600,
47=>600, 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600,
63=>600, 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600,
79=>600, 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600,
95=>600, 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600,
111=>600, 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600,
8364=>600, 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600,
8216=>600, 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600,
161=>600, 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600,
177=>600, 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600,
193=>600, 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600,
209=>600, 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600,
225=>600, 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600,
241=>600, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600,
257=>600, 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600,
273=>600, 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600,
289=>600, 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600,
305=>600, 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600,
321=>600, 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600,
337=>600, 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600,
357=>600, 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600,
373=>600, 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, 385=>600, 386=>600, 387=>600, 390=>600, 391=>600, 392=>600, 393=>600,
394=>600, 395=>600, 396=>600, 397=>600, 398=>600, 400=>600, 401=>600, 403=>600, 405=>600, 406=>600, 407=>600, 409=>600, 410=>600, 411=>600, 412=>600, 413=>600,
414=>600, 415=>600, 416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600, 425=>600, 427=>600, 428=>600, 429=>600, 430=>600,
431=>600, 432=>600, 435=>600, 436=>600, 437=>600, 438=>600, 439=>600, 440=>600, 443=>600, 448=>600, 449=>600, 451=>600, 455=>600, 456=>600, 457=>600, 459=>600,
460=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600, 474=>600, 475=>600,
476=>600, 477=>600, 478=>600, 479=>600, 480=>600, 481=>600, 482=>600, 483=>600, 484=>600, 485=>600, 486=>600, 487=>600, 488=>600, 489=>600, 490=>600, 491=>600,
492=>600, 493=>600, 494=>600, 496=>600, 500=>600, 501=>600, 502=>600, 504=>600, 505=>600, 506=>600, 507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>600,
513=>600, 514=>600, 515=>600, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600, 522=>600, 523=>600, 524=>600, 525=>600, 526=>600, 527=>600, 528=>600,
529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600, 537=>600, 538=>600, 539=>600, 542=>600, 543=>600, 548=>600, 549=>600, 550=>600,
551=>600, 552=>600, 553=>600, 554=>600, 555=>600, 556=>600, 557=>600, 558=>600, 559=>600, 560=>600, 561=>600, 562=>600, 563=>600, 592=>600, 593=>600, 594=>600,
595=>600, 596=>600, 598=>600, 599=>600, 600=>600, 601=>600, 603=>600, 604=>600, 607=>600, 608=>600, 609=>600, 613=>600, 614=>600, 615=>600, 616=>600, 617=>600,
618=>600, 619=>600, 621=>600, 623=>600, 624=>600, 625=>600, 626=>600, 627=>600, 628=>600, 629=>600, 633=>600, 634=>600, 635=>600, 636=>600, 637=>600, 638=>600,
639=>600, 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 647=>600, 648=>600, 649=>600, 652=>600, 653=>600, 654=>600, 656=>600, 660=>600, 661=>600,
662=>600, 663=>600, 664=>600, 668=>600, 670=>600, 671=>600, 672=>600, 673=>600, 674=>600, 711=>600, 720=>600, 721=>600, 728=>600, 729=>600, 730=>600, 731=>600,
733=>600, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0,
783=>0, 784=>0, 785=>0, 795=>0, 801=>0, 802=>0, 807=>0, 808=>0, 823=>0, 884=>600, 885=>600, 890=>600, 894=>600, 900=>600, 901=>600, 902=>600,
903=>600, 904=>600, 905=>600, 906=>600, 908=>600, 910=>600, 911=>600, 912=>600, 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600, 920=>600,
921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600, 931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600, 937=>600,
938=>600, 939=>600, 940=>600, 941=>600, 942=>600, 943=>600, 944=>600, 945=>600, 946=>600, 947=>600, 948=>600, 949=>600, 950=>600, 951=>600, 952=>600, 953=>600,
954=>600, 955=>600, 956=>600, 957=>600, 958=>600, 959=>600, 960=>600, 961=>600, 962=>600, 963=>600, 964=>600, 965=>600, 966=>600, 967=>600, 968=>600, 969=>600,
970=>600, 971=>600, 972=>600, 973=>600, 974=>600, 976=>600, 977=>600, 981=>600, 1009=>600, 1024=>600, 1025=>600, 1026=>600, 1028=>600, 1029=>600, 1030=>600, 1031=>600,
1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600, 1043=>600, 1044=>600, 1045=>600, 1046=>600, 1047=>600, 1048=>600, 1049=>600,
1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600, 1059=>600, 1060=>600, 1061=>600, 1062=>600, 1063=>600, 1064=>600, 1065=>600,
1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600, 1075=>600, 1076=>600, 1077=>600, 1078=>600, 1079=>600, 1080=>600, 1081=>600,
1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600, 1091=>600, 1092=>600, 1093=>600, 1094=>600, 1095=>600, 1096=>600, 1097=>600,
1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600, 1107=>600, 1108=>600, 1109=>600, 1110=>600, 1111=>600, 1112=>600, 1113=>600,
1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600, 1168=>600, 1169=>600, 1170=>600, 1171=>600, 1172=>600, 1173=>600, 1174=>600,
1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600, 1184=>600, 1185=>600, 1186=>600, 1187=>600, 1188=>600, 1189=>600, 1190=>600,
1191=>600, 1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600, 1198=>600, 1199=>600, 1200=>600, 1201=>600, 1202=>600, 1203=>600, 1204=>600, 1205=>600, 1206=>600,
1207=>600, 1208=>600, 1209=>600, 1210=>600, 1211=>600, 1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600, 1217=>600, 1218=>600, 1219=>600, 1220=>600, 1221=>600, 1222=>600,
1223=>600, 1224=>600, 1225=>600, 1226=>600, 1227=>600, 1228=>600, 1229=>600, 1230=>600, 1231=>600, 1232=>600, 1233=>600, 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600,
1239=>600, 1240=>600, 1241=>600, 1242=>600, 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600, 1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600,
1255=>600, 1256=>600, 1257=>600, 1258=>600, 1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600, 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1270=>600,
1271=>600, 1272=>600, 1273=>600, 1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600, 1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600,
1470=>600, 1471=>600, 1472=>600, 1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600,
1497=>600, 1498=>600, 1499=>600, 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600,
1513=>600, 1514=>600, 1520=>600, 1521=>600, 1522=>600, 1523=>600, 1524=>600, 7680=>600, 7681=>600, 7682=>600, 7683=>600, 7684=>600, 7685=>600, 7686=>600, 7687=>600, 7688=>600,
7689=>600, 7690=>600, 7691=>600, 7692=>600, 7693=>600, 7694=>600, 7695=>600, 7696=>600, 7697=>600, 7698=>600, 7699=>600, 7700=>600, 7701=>600, 7702=>600, 7703=>600, 7704=>600,
7705=>600, 7706=>600, 7707=>600, 7708=>600, 7709=>600, 7710=>600, 7711=>600, 7712=>600, 7713=>600, 7714=>600, 7715=>600, 7716=>600, 7717=>600, 7718=>600, 7719=>600, 7720=>600,
7721=>600, 7722=>600, 7723=>600, 7724=>600, 7725=>600, 7726=>600, 7727=>600, 7728=>600, 7729=>600, 7730=>600, 7731=>600, 7732=>600, 7733=>600, 7734=>600, 7735=>600, 7736=>600,
7737=>600, 7738=>600, 7739=>600, 7740=>600, 7741=>600, 7742=>600, 7743=>600, 7744=>600, 7745=>600, 7746=>600, 7747=>600, 7748=>600, 7749=>600, 7750=>600, 7751=>600, 7752=>600,
7753=>600, 7754=>600, 7755=>600, 7756=>600, 7757=>600, 7758=>600, 7759=>600, 7760=>600, 7761=>600, 7762=>600, 7763=>600, 7764=>600, 7765=>600, 7766=>600, 7767=>600, 7768=>600,
7769=>600, 7770=>600, 7771=>600, 7772=>600, 7773=>600, 7774=>600, 7775=>600, 7776=>600, 7777=>600, 7778=>600, 7779=>600, 7780=>600, 7781=>600, 7782=>600, 7783=>600, 7784=>600,
7785=>600, 7786=>600, 7787=>600, 7788=>600, 7789=>600, 7790=>600, 7791=>600, 7792=>600, 7793=>600, 7794=>600, 7795=>600, 7796=>600, 7797=>600, 7798=>600, 7799=>600, 7800=>600,
7801=>600, 7802=>600, 7803=>600, 7804=>600, 7805=>600, 7806=>600, 7807=>600, 7808=>600, 7809=>600, 7810=>600, 7811=>600, 7812=>600, 7813=>600, 7814=>600, 7815=>600, 7816=>600,
7817=>600, 7818=>600, 7819=>600, 7820=>600, 7821=>600, 7822=>600, 7823=>600, 7824=>600, 7825=>600, 7826=>600, 7827=>600, 7828=>600, 7829=>600, 7830=>600, 7831=>600, 7832=>600,
7833=>600, 7835=>600, 7840=>600, 7841=>600, 7842=>600, 7843=>600, 7844=>600, 7845=>600, 7846=>600, 7847=>600, 7848=>600, 7849=>600, 7850=>600, 7851=>600, 7852=>600, 7853=>600,
7854=>600, 7855=>600, 7856=>600, 7857=>600, 7858=>600, 7859=>600, 7860=>600, 7861=>600, 7862=>600, 7863=>600, 7864=>600, 7865=>600, 7866=>600, 7867=>600, 7868=>600, 7869=>600,
7870=>600, 7871=>600, 7872=>600, 7873=>600, 7874=>600, 7875=>600, 7876=>600, 7877=>600, 7878=>600, 7879=>600, 7880=>600, 7881=>600, 7882=>600, 7883=>600, 7884=>600, 7885=>600,
7886=>600, 7887=>600, 7888=>600, 7889=>600, 7890=>600, 7891=>600, 7892=>600, 7893=>600, 7894=>600, 7895=>600, 7896=>600, 7897=>600, 7898=>600, 7899=>600, 7900=>600, 7901=>600,
7902=>600, 7903=>600, 7904=>600, 7905=>600, 7906=>600, 7907=>600, 7908=>600, 7909=>600, 7910=>600, 7911=>600, 7912=>600, 7913=>600, 7914=>600, 7915=>600, 7916=>600, 7917=>600,
7918=>600, 7919=>600, 7920=>600, 7921=>600, 7922=>600, 7923=>600, 7924=>600, 7925=>600, 7926=>600, 7927=>600, 7928=>600, 7929=>600, 8209=>600, 8213=>600, 8219=>600, 8223=>600,
8242=>600, 8243=>600, 8244=>600, 8245=>600, 8246=>600, 8247=>600, 8252=>600, 8260=>600, 8261=>600, 8262=>600, 8264=>600, 8265=>600, 8267=>600, 8292=>600, 8304=>600, 8305=>600,
8306=>600, 8307=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600, 8314=>600, 8315=>600, 8316=>600, 8317=>600, 8318=>600, 8319=>600, 8320=>600, 8321=>600,
8322=>600, 8323=>600, 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8355=>600, 8356=>600, 8362=>600, 8466=>600, 8470=>600, 8486=>600, 8487=>600, 8490=>600,
8491=>600, 8531=>600, 8532=>600, 8533=>600, 8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8592=>600, 8593=>600,
8594=>600, 8595=>600, 8706=>600, 8709=>600, 8710=>600, 8711=>600, 8721=>600, 8722=>600, 8725=>600, 8730=>600, 8733=>600, 8734=>600, 8735=>600, 8800=>600, 8801=>600, 8804=>600,
8805=>600, 8976=>600, 9472=>600, 9473=>600, 9474=>600, 9475=>600, 9476=>600, 9477=>600, 9478=>600, 9479=>600, 9480=>600, 9481=>600, 9482=>600, 9483=>600, 9484=>600, 9485=>600,
9486=>600, 9487=>600, 9488=>600, 9489=>600, 9490=>600, 9491=>600, 9492=>600, 9493=>600, 9494=>600, 9495=>600, 9496=>600, 9497=>600, 9498=>600, 9499=>600, 9500=>600, 9501=>600,
9502=>600, 9503=>600, 9504=>600, 9505=>600, 9506=>600, 9507=>600, 9508=>600, 9509=>600, 9510=>600, 9511=>600, 9512=>600, 9513=>600, 9514=>600, 9515=>600, 9516=>600, 9517=>600,
9518=>600, 9519=>600, 9520=>600, 9521=>600, 9522=>600, 9523=>600, 9524=>600, 9525=>600, 9526=>600, 9527=>600, 9528=>600, 9529=>600, 9530=>600, 9531=>600, 9532=>600, 9533=>600,
9534=>600, 9535=>600, 9536=>600, 9537=>600, 9538=>600, 9539=>600, 9540=>600, 9541=>600, 9542=>600, 9543=>600, 9544=>600, 9545=>600, 9546=>600, 9547=>600, 9548=>600, 9549=>600,
9550=>600, 9551=>600, 9552=>600, 9553=>600, 9554=>600, 9555=>600, 9556=>600, 9557=>600, 9558=>600, 9559=>600, 9560=>600, 9561=>600, 9562=>600, 9563=>600, 9564=>600, 9565=>600,
9566=>600, 9567=>600, 9568=>600, 9569=>600, 9570=>600, 9571=>600, 9572=>600, 9573=>600, 9574=>600, 9575=>600, 9576=>600, 9577=>600, 9578=>600, 9579=>600, 9580=>600, 9581=>600,
9582=>600, 9583=>600, 9584=>600, 9585=>600, 9586=>600, 9587=>600, 9588=>600, 9589=>600, 9590=>600, 9591=>600, 9592=>600, 9593=>600, 9594=>600, 9595=>600, 9596=>600, 9597=>600,
9598=>600, 9599=>600, 9600=>600, 9601=>600, 9602=>600, 9603=>600, 9604=>600, 9605=>600, 9606=>600, 9607=>600, 9608=>600, 9609=>600, 9610=>600, 9611=>600, 9612=>600, 9613=>600,
9614=>600, 9615=>600, 9616=>600, 9617=>600, 9618=>600, 9619=>600, 9620=>600, 9621=>600, 9632=>600, 9633=>600, 9635=>600, 9636=>600, 9637=>600, 9638=>600, 9639=>600, 9640=>600,
9641=>600, 9642=>600, 9643=>600, 9644=>600, 9645=>600, 9646=>600, 9647=>600, 9648=>600, 9649=>600, 9650=>600, 9651=>600, 9652=>600, 9653=>600, 9654=>600, 9655=>600, 9656=>600,
9657=>600, 9658=>600, 9660=>600, 9661=>600, 9662=>600, 9663=>600, 9664=>600, 9665=>600, 9666=>600, 9667=>600, 9668=>600, 9669=>600, 9670=>600, 9671=>600, 9673=>600, 9674=>600,
9675=>600, 9677=>600, 9679=>600, 9680=>600, 9681=>600, 9682=>600, 9683=>600, 9684=>600, 9685=>600, 9686=>600, 9687=>600, 9688=>600, 9689=>600, 9698=>600, 9699=>600, 9700=>600,
9701=>600, 9702=>600, 9703=>600, 9704=>600, 9705=>600, 9706=>600, 9707=>600, 9708=>600, 9709=>600, 9710=>600, 9712=>600, 9713=>600, 9714=>600, 9715=>600, 9716=>600, 9717=>600,
9718=>600, 9719=>600, 9735=>600, 9736=>600, 9737=>600, 9776=>600, 9777=>600, 9778=>600, 9779=>600, 9780=>600, 9781=>600, 9782=>600, 9783=>600, 9785=>600, 9786=>600, 9787=>600,
9833=>600, 9834=>600, 9835=>600, 9836=>600, 63166=>600, 63171=>600, 64256=>600, 64257=>600, 64258=>600);
$enc='';
$diff='';
$file='FreeMonoBold.z';
$ctg='FreeMonoBold.ctg.z';
$originalsize=175016;
?>

View File

@ -1,62 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeMonoBoldOblique';
$desc=array('Ascent'=>1111,'Descent'=>-278,'CapHeight'=>1111,'Flags'=>96,'FontBBox'=>'[-513 -278 840 1111]','ItalicAngle'=>-12,'StemV'=>120,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
13=>333, 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600,
47=>600, 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600,
63=>600, 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600,
79=>600, 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600,
95=>600, 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600,
111=>600, 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600,
8364=>600, 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600,
8216=>600, 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600,
161=>600, 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600,
177=>600, 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600,
193=>600, 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600,
209=>600, 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600,
225=>600, 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600,
241=>600, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600,
257=>600, 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600,
273=>600, 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600,
289=>600, 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600,
305=>600, 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600,
321=>600, 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600,
337=>600, 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600,
357=>600, 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600,
373=>600, 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 425=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600,
468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600, 474=>600, 475=>600, 476=>600, 477=>600, 478=>600, 479=>600, 482=>600, 483=>600, 486=>600, 487=>600,
488=>600, 489=>600, 490=>600, 491=>600, 492=>600, 493=>600, 496=>600, 500=>600, 501=>600, 504=>600, 505=>600, 506=>600, 507=>600, 508=>600, 509=>600, 510=>600,
511=>600, 512=>600, 513=>600, 514=>600, 515=>600, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600, 522=>600, 523=>600, 524=>600, 525=>600, 526=>600,
527=>600, 528=>600, 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600, 537=>600, 538=>600, 539=>600, 593=>600, 617=>600, 711=>600,
728=>600, 729=>0, 730=>600, 731=>600, 733=>600, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 780=>0,
783=>0, 784=>0, 785=>0, 900=>600, 901=>600, 902=>600, 904=>600, 912=>600, 913=>600, 914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600, 920=>600,
921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600, 931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600, 937=>600,
938=>600, 939=>600, 945=>600, 946=>600, 947=>600, 950=>600, 951=>600, 952=>600, 953=>600, 954=>600, 955=>600, 956=>600, 957=>600, 959=>600, 970=>600, 1024=>600,
1025=>600, 1026=>600, 1028=>600, 1029=>600, 1030=>600, 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600, 1043=>600,
1044=>600, 1045=>600, 1046=>600, 1047=>600, 1048=>600, 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600, 1059=>600,
1060=>600, 1061=>600, 1062=>600, 1063=>600, 1064=>600, 1065=>600, 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600, 1075=>600,
1076=>600, 1077=>600, 1078=>600, 1079=>600, 1080=>600, 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600, 1091=>600,
1092=>600, 1093=>600, 1094=>600, 1095=>600, 1096=>600, 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600, 1107=>600,
1108=>600, 1109=>600, 1110=>600, 1111=>600, 1112=>600, 1113=>600, 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600, 1168=>600,
1169=>600, 1170=>600, 1171=>600, 1172=>600, 1173=>600, 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600, 1184=>600,
1185=>600, 1186=>600, 1187=>600, 1188=>600, 1189=>600, 1190=>600, 1191=>600, 1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600, 1198=>600, 1199=>600, 1200=>600,
1201=>600, 1202=>600, 1203=>600, 1204=>600, 1205=>600, 1206=>600, 1207=>600, 1208=>600, 1209=>600, 1210=>600, 1211=>600, 1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600,
1217=>600, 1218=>600, 1219=>600, 1220=>600, 1223=>600, 1224=>600, 1227=>600, 1228=>600, 1232=>600, 1233=>600, 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600, 1239=>600,
1240=>600, 1241=>600, 1242=>600, 1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600, 1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600, 1255=>600,
1256=>600, 1257=>600, 1258=>600, 1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600, 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1272=>600, 1273=>600,
1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600, 1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600, 1470=>600, 1471=>600, 1472=>600,
1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600, 1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600, 1497=>600, 1498=>600, 1499=>600,
1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600, 1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600, 1513=>600, 1514=>600, 1520=>600,
1521=>600, 1522=>600, 1523=>600, 1524=>600, 8213=>600, 8260=>600, 8304=>600, 8305=>600, 8306=>600, 8307=>600, 8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600,
8320=>600, 8321=>600, 8322=>600, 8323=>600, 8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8362=>600, 8470=>600, 8486=>600, 8531=>600, 8532=>600, 8533=>600,
8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8592=>600, 8593=>600, 8594=>600, 8595=>600, 8706=>600, 8710=>600,
8721=>600, 8722=>600, 8730=>600, 8734=>600, 8800=>600, 8804=>600, 8805=>600, 9674=>600, 9833=>600, 9834=>600, 9835=>600, 9836=>600, 63166=>600, 63171=>600, 64257=>600, 64258=>600);
$enc='';
$diff='';
$file='FreeMonoBoldOblique.z';
$ctg='FreeMonoBoldOblique.ctg.z';
$originalsize=128384;
?>

View File

@ -1,89 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeMonoOblique';
$desc=array('Ascent'=>1000,'Descent'=>-273,'CapHeight'=>1000,'Flags'=>96,'FontBBox'=>'[-577 -273 779 1000]','ItalicAngle'=>-12,'StemV'=>70,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
13=>333, 32=>600, 33=>600, 34=>600, 35=>600, 36=>600, 37=>600, 38=>600, 39=>600, 40=>600, 41=>600, 42=>600, 43=>600, 44=>600, 45=>600, 46=>600,
47=>600, 48=>600, 49=>600, 50=>600, 51=>600, 52=>600, 53=>600, 54=>600, 55=>600, 56=>600, 57=>600, 58=>600, 59=>600, 60=>600, 61=>600, 62=>600,
63=>600, 64=>600, 65=>600, 66=>600, 67=>600, 68=>600, 69=>600, 70=>600, 71=>600, 72=>600, 73=>600, 74=>600, 75=>600, 76=>600, 77=>600, 78=>600,
79=>600, 80=>600, 81=>600, 82=>600, 83=>600, 84=>600, 85=>600, 86=>600, 87=>600, 88=>600, 89=>600, 90=>600, 91=>600, 92=>600, 93=>600, 94=>600,
95=>600, 96=>600, 97=>600, 98=>600, 99=>600, 100=>600, 101=>600, 102=>600, 103=>600, 104=>600, 105=>600, 106=>600, 107=>600, 108=>600, 109=>600, 110=>600,
111=>600, 112=>600, 113=>600, 114=>600, 115=>600, 116=>600, 117=>600, 118=>600, 119=>600, 120=>600, 121=>600, 122=>600, 123=>600, 124=>600, 125=>600, 126=>600,
8364=>600, 1027=>600, 8218=>600, 402=>600, 8222=>600, 8230=>600, 8224=>600, 8225=>600, 710=>600, 8240=>600, 352=>600, 8249=>600, 338=>600, 1036=>600, 381=>600, 1039=>600,
8216=>600, 8217=>600, 8220=>600, 8221=>600, 8226=>600, 8211=>600, 8212=>600, 732=>600, 8482=>600, 353=>600, 8250=>600, 339=>600, 1116=>600, 382=>600, 376=>600, 160=>600,
161=>600, 162=>600, 163=>600, 164=>600, 165=>600, 166=>600, 167=>600, 168=>600, 169=>600, 170=>600, 171=>600, 172=>600, 173=>600, 174=>600, 175=>600, 176=>600,
177=>600, 178=>600, 179=>600, 180=>600, 181=>600, 182=>600, 183=>600, 184=>600, 185=>600, 186=>600, 187=>600, 188=>600, 189=>600, 190=>600, 191=>600, 192=>600,
193=>600, 194=>600, 195=>600, 196=>600, 197=>600, 198=>600, 199=>600, 200=>600, 201=>600, 202=>600, 203=>600, 204=>600, 205=>600, 206=>600, 207=>600, 208=>600,
209=>600, 210=>600, 211=>600, 212=>600, 213=>600, 214=>600, 215=>600, 216=>600, 217=>600, 218=>600, 219=>600, 220=>600, 221=>600, 222=>600, 223=>600, 224=>600,
225=>600, 226=>600, 227=>600, 228=>600, 229=>600, 230=>600, 231=>600, 232=>600, 233=>600, 234=>600, 235=>600, 236=>600, 237=>600, 238=>600, 239=>600, 240=>600,
241=>600, 242=>600, 243=>600, 244=>600, 245=>600, 246=>600, 247=>600, 248=>600, 249=>600, 250=>600, 251=>600, 252=>600, 253=>600, 254=>600, 255=>600, 256=>600,
257=>600, 258=>600, 259=>600, 260=>600, 261=>600, 262=>600, 263=>600, 264=>600, 265=>600, 266=>600, 267=>600, 268=>600, 269=>600, 270=>600, 271=>600, 272=>600,
273=>600, 274=>600, 275=>600, 276=>600, 277=>600, 278=>600, 279=>600, 280=>600, 281=>600, 282=>600, 283=>600, 284=>600, 285=>600, 286=>600, 287=>600, 288=>600,
289=>600, 290=>600, 291=>600, 292=>600, 293=>600, 294=>600, 295=>600, 296=>600, 297=>600, 298=>600, 299=>600, 300=>600, 301=>600, 302=>600, 303=>600, 304=>600,
305=>600, 306=>600, 307=>600, 308=>600, 309=>600, 310=>600, 311=>600, 312=>600, 313=>600, 314=>600, 315=>600, 316=>600, 317=>600, 318=>600, 319=>600, 320=>600,
321=>600, 322=>600, 323=>600, 324=>600, 325=>600, 326=>600, 327=>600, 328=>600, 329=>600, 330=>600, 331=>600, 332=>600, 333=>600, 334=>600, 335=>600, 336=>600,
337=>600, 340=>600, 341=>600, 342=>600, 343=>600, 344=>600, 345=>600, 346=>600, 347=>600, 348=>600, 349=>600, 350=>600, 351=>600, 354=>600, 355=>600, 356=>600,
357=>600, 358=>600, 359=>600, 360=>600, 361=>600, 362=>600, 363=>600, 364=>600, 365=>600, 366=>600, 367=>600, 368=>600, 369=>600, 370=>600, 371=>600, 372=>600,
373=>600, 374=>600, 375=>600, 377=>600, 378=>600, 379=>600, 380=>600, 383=>600, 384=>600, 385=>600, 386=>600, 387=>600, 388=>600, 389=>600, 390=>600, 391=>600,
392=>600, 393=>600, 394=>600, 395=>600, 396=>600, 397=>600, 398=>600, 399=>600, 400=>600, 401=>600, 403=>600, 404=>600, 405=>600, 406=>600, 407=>600, 408=>600,
409=>600, 410=>600, 411=>600, 412=>600, 413=>600, 414=>600, 415=>600, 416=>600, 417=>600, 418=>600, 419=>600, 420=>600, 421=>600, 422=>600, 423=>600, 424=>600,
425=>600, 426=>600, 427=>600, 428=>600, 429=>600, 430=>600, 431=>600, 432=>600, 433=>600, 434=>600, 435=>600, 436=>600, 437=>600, 438=>600, 439=>600, 440=>600,
441=>600, 442=>600, 443=>600, 444=>600, 445=>600, 446=>600, 448=>600, 449=>600, 450=>600, 451=>600, 452=>600, 453=>600, 454=>600, 455=>600, 456=>600, 457=>600,
458=>600, 459=>600, 460=>600, 461=>600, 462=>600, 463=>600, 464=>600, 465=>600, 466=>600, 467=>600, 468=>600, 469=>600, 470=>600, 471=>600, 472=>600, 473=>600,
474=>600, 475=>600, 476=>600, 477=>600, 478=>600, 479=>600, 480=>600, 481=>600, 482=>600, 483=>600, 484=>600, 485=>600, 486=>600, 487=>600, 488=>600, 489=>600,
490=>600, 491=>600, 492=>600, 493=>600, 494=>600, 495=>600, 496=>600, 497=>600, 498=>600, 499=>600, 500=>600, 501=>600, 502=>600, 504=>600, 505=>600, 506=>600,
507=>600, 508=>600, 509=>600, 510=>600, 511=>600, 512=>600, 513=>600, 514=>600, 515=>600, 516=>600, 517=>600, 518=>600, 519=>600, 520=>600, 521=>600, 522=>600,
523=>600, 524=>600, 525=>600, 526=>600, 527=>600, 528=>600, 529=>600, 530=>600, 531=>600, 532=>600, 533=>600, 534=>600, 535=>600, 536=>600, 537=>600, 538=>600,
539=>600, 542=>600, 543=>600, 548=>600, 549=>600, 550=>600, 551=>600, 552=>600, 553=>600, 554=>600, 555=>600, 556=>600, 557=>600, 558=>600, 559=>600, 560=>600,
561=>600, 562=>600, 563=>600, 592=>600, 593=>600, 594=>600, 595=>600, 596=>600, 597=>600, 598=>600, 599=>600, 600=>600, 601=>600, 602=>600, 603=>600, 604=>600,
605=>600, 606=>600, 607=>600, 608=>600, 609=>600, 610=>600, 611=>600, 612=>600, 613=>600, 614=>600, 615=>600, 616=>600, 617=>600, 618=>600, 619=>600, 620=>600,
621=>600, 622=>600, 623=>600, 624=>600, 625=>600, 626=>600, 627=>600, 628=>600, 629=>600, 630=>600, 631=>600, 632=>600, 633=>600, 634=>600, 635=>600, 636=>600,
637=>600, 638=>600, 639=>600, 640=>600, 641=>600, 642=>600, 643=>600, 644=>600, 645=>600, 646=>600, 647=>600, 648=>600, 649=>600, 650=>600, 651=>600, 652=>600,
653=>600, 654=>600, 655=>600, 656=>600, 657=>600, 658=>600, 659=>600, 660=>600, 661=>600, 662=>600, 663=>600, 664=>600, 665=>600, 666=>600, 667=>600, 668=>600,
669=>600, 670=>600, 671=>600, 672=>600, 673=>600, 674=>600, 711=>600, 712=>600, 713=>600, 714=>600, 715=>600, 728=>600, 729=>600, 730=>600, 731=>600, 733=>600,
768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0,
807=>0, 808=>0, 821=>0, 822=>0, 823=>0, 824=>0, 901=>600, 902=>600, 904=>600, 905=>600, 906=>600, 908=>600, 910=>600, 911=>600, 912=>600, 913=>600,
914=>600, 915=>600, 916=>600, 917=>600, 918=>600, 919=>600, 920=>600, 921=>600, 922=>600, 923=>600, 924=>600, 925=>600, 926=>600, 927=>600, 928=>600, 929=>600,
931=>600, 932=>600, 933=>600, 934=>600, 935=>600, 936=>600, 937=>600, 938=>600, 939=>600, 940=>600, 941=>600, 942=>600, 943=>600, 944=>600, 945=>600, 946=>600,
947=>600, 948=>600, 949=>600, 950=>600, 951=>600, 952=>600, 953=>600, 954=>600, 955=>600, 956=>600, 957=>600, 958=>600, 959=>600, 960=>600, 961=>600, 962=>600,
963=>600, 964=>600, 965=>600, 966=>600, 967=>600, 968=>600, 969=>600, 970=>600, 971=>600, 972=>600, 973=>600, 974=>600, 1024=>600, 1025=>600, 1026=>600, 1028=>600,
1029=>600, 1030=>600, 1031=>600, 1032=>600, 1033=>600, 1034=>600, 1035=>600, 1037=>600, 1038=>600, 1040=>600, 1041=>600, 1042=>600, 1043=>600, 1044=>600, 1045=>600, 1046=>600,
1047=>600, 1048=>600, 1049=>600, 1050=>600, 1051=>600, 1052=>600, 1053=>600, 1054=>600, 1055=>600, 1056=>600, 1057=>600, 1058=>600, 1059=>600, 1060=>600, 1061=>600, 1062=>600,
1063=>600, 1064=>600, 1065=>600, 1066=>600, 1067=>600, 1068=>600, 1069=>600, 1070=>600, 1071=>600, 1072=>600, 1073=>600, 1074=>600, 1075=>600, 1076=>600, 1077=>600, 1078=>600,
1079=>600, 1080=>600, 1081=>600, 1082=>600, 1083=>600, 1084=>600, 1085=>600, 1086=>600, 1087=>600, 1088=>600, 1089=>600, 1090=>600, 1091=>600, 1092=>600, 1093=>600, 1094=>600,
1095=>600, 1096=>600, 1097=>600, 1098=>600, 1099=>600, 1100=>600, 1101=>600, 1102=>600, 1103=>600, 1104=>600, 1105=>600, 1106=>600, 1107=>600, 1108=>600, 1109=>600, 1110=>600,
1111=>600, 1112=>600, 1113=>600, 1114=>600, 1115=>600, 1117=>600, 1118=>600, 1119=>600, 1164=>600, 1165=>600, 1166=>600, 1167=>600, 1168=>600, 1169=>600, 1170=>600, 1171=>600,
1172=>600, 1173=>600, 1174=>600, 1175=>600, 1176=>600, 1177=>600, 1178=>600, 1179=>600, 1180=>600, 1181=>600, 1182=>600, 1183=>600, 1184=>600, 1185=>600, 1186=>600, 1187=>600,
1188=>600, 1189=>600, 1190=>600, 1191=>600, 1192=>600, 1193=>600, 1194=>600, 1195=>600, 1196=>600, 1197=>600, 1198=>600, 1199=>600, 1200=>600, 1201=>600, 1202=>600, 1203=>600,
1204=>600, 1205=>600, 1206=>600, 1207=>600, 1208=>600, 1209=>600, 1210=>600, 1211=>600, 1212=>600, 1213=>600, 1214=>600, 1215=>600, 1216=>600, 1217=>600, 1218=>600, 1219=>600,
1220=>600, 1223=>600, 1224=>600, 1227=>600, 1228=>600, 1232=>600, 1233=>600, 1234=>600, 1235=>600, 1236=>600, 1237=>600, 1238=>600, 1239=>600, 1240=>600, 1241=>600, 1242=>600,
1243=>600, 1244=>600, 1245=>600, 1246=>600, 1247=>600, 1248=>600, 1249=>600, 1250=>600, 1251=>600, 1252=>600, 1253=>600, 1254=>600, 1255=>600, 1256=>600, 1257=>600, 1258=>600,
1259=>600, 1260=>600, 1261=>600, 1262=>600, 1263=>600, 1264=>600, 1265=>600, 1266=>600, 1267=>600, 1268=>600, 1269=>600, 1272=>600, 1273=>600, 1328=>600, 1329=>600, 1330=>600,
1331=>600, 1332=>600, 1333=>600, 1334=>600, 1335=>600, 1336=>600, 1337=>600, 1338=>600, 1339=>600, 1340=>600, 1341=>600, 1342=>600, 1343=>600, 1344=>600, 1345=>600, 1346=>600,
1347=>600, 1348=>600, 1349=>600, 1350=>600, 1351=>600, 1352=>600, 1353=>600, 1354=>600, 1355=>600, 1356=>600, 1357=>600, 1358=>600, 1359=>600, 1360=>600, 1361=>600, 1362=>600,
1363=>600, 1364=>600, 1365=>600, 1366=>600, 1367=>600, 1368=>600, 1369=>600, 1370=>600, 1371=>600, 1372=>600, 1373=>600, 1374=>600, 1375=>600, 1376=>600, 1377=>600, 1378=>600,
1379=>600, 1380=>600, 1381=>600, 1382=>600, 1383=>600, 1384=>600, 1385=>600, 1386=>600, 1387=>600, 1388=>600, 1389=>600, 1390=>600, 1391=>600, 1392=>600, 1393=>600, 1394=>600,
1395=>600, 1396=>600, 1397=>600, 1398=>600, 1399=>600, 1400=>600, 1401=>600, 1402=>600, 1403=>600, 1404=>600, 1405=>600, 1406=>600, 1407=>600, 1408=>600, 1409=>600, 1410=>600,
1411=>600, 1412=>600, 1413=>600, 1414=>600, 1415=>600, 1416=>600, 1417=>600, 1418=>600, 1456=>600, 1457=>600, 1458=>600, 1459=>600, 1460=>600, 1461=>600, 1462=>600, 1463=>600,
1464=>600, 1465=>600, 1467=>600, 1468=>600, 1469=>600, 1470=>600, 1471=>600, 1472=>600, 1473=>600, 1474=>600, 1475=>600, 1476=>600, 1488=>600, 1489=>600, 1490=>600, 1491=>600,
1492=>600, 1493=>600, 1494=>600, 1495=>600, 1496=>600, 1497=>600, 1498=>600, 1499=>600, 1500=>600, 1501=>600, 1502=>600, 1503=>600, 1504=>600, 1505=>600, 1506=>600, 1507=>600,
1508=>600, 1509=>600, 1510=>600, 1511=>600, 1512=>600, 1513=>600, 1514=>600, 1520=>600, 1521=>600, 1522=>600, 1523=>600, 1524=>600, 8213=>600, 8241=>600, 8242=>600, 8243=>600,
8244=>600, 8245=>600, 8246=>600, 8247=>600, 8252=>600, 8253=>600, 8260=>600, 8261=>600, 8262=>600, 8263=>600, 8264=>600, 8265=>600, 8304=>600, 8305=>600, 8306=>600, 8307=>600,
8308=>600, 8309=>600, 8310=>600, 8311=>600, 8312=>600, 8313=>600, 8314=>600, 8315=>600, 8316=>600, 8317=>600, 8318=>600, 8319=>600, 8320=>600, 8321=>600, 8322=>600, 8323=>600,
8324=>600, 8325=>600, 8326=>600, 8327=>600, 8328=>600, 8329=>600, 8356=>600, 8362=>600, 8448=>600, 8449=>600, 8450=>600, 8451=>600, 8452=>600, 8453=>600, 8454=>600, 8455=>600,
8456=>600, 8457=>600, 8458=>600, 8459=>600, 8460=>600, 8461=>600, 8462=>600, 8463=>600, 8464=>600, 8465=>600, 8466=>600, 8467=>600, 8468=>600, 8469=>600, 8470=>600, 8471=>600,
8472=>600, 8473=>600, 8474=>600, 8475=>600, 8476=>600, 8477=>600, 8478=>600, 8479=>600, 8484=>600, 8486=>600, 8487=>600, 8490=>600, 8491=>600, 8531=>600, 8532=>600, 8533=>600,
8534=>600, 8535=>600, 8536=>600, 8537=>600, 8538=>600, 8539=>600, 8540=>600, 8541=>600, 8542=>600, 8543=>600, 8592=>600, 8593=>600, 8594=>600, 8595=>600, 8596=>600, 8597=>600,
8598=>600, 8599=>600, 8600=>600, 8601=>600, 8616=>600, 8706=>600, 8710=>600, 8721=>600, 8722=>600, 8730=>600, 8734=>600, 8800=>600, 8804=>600, 8805=>600, 9674=>600, 9833=>600,
9834=>600, 9835=>600, 9836=>600, 9837=>600, 9838=>600, 9839=>600, 63171=>600, 64257=>600, 64258=>600, 64285=>600, 64286=>600, 64287=>600, 64288=>600, 64289=>600, 64290=>600, 64291=>600,
64292=>600, 64293=>600, 64294=>600, 64295=>600, 64296=>600, 64297=>600, 64298=>600, 64299=>600, 64300=>600, 64301=>600, 64302=>600, 64303=>600, 64304=>600, 64305=>600, 64306=>600, 64307=>600,
64308=>600, 64309=>600, 64310=>600, 64312=>600, 64313=>600, 64314=>600, 64315=>600, 64316=>600, 64318=>600, 64320=>600, 64321=>600, 64323=>600, 64324=>600, 64326=>600, 64327=>600, 64328=>600,
64329=>600, 64330=>600, 64331=>600, 64332=>600, 64333=>600, 64334=>600, 64335=>600);
$enc='';
$diff='';
$file='FreeMonoOblique.z';
$ctg='FreeMonoOblique.ctg.z';
$originalsize=175484;
?>

View File

@ -1,149 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeSans';
$desc=array('Ascent'=>1141,'Descent'=>-459,'CapHeight'=>1141,'Flags'=>32,'FontBBox'=>'[-797 -459 1632 1141]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
$up=-151;
$ut=50;
$cw=array(
13=>333, 32=>278, 33=>278, 34=>355, 35=>556, 36=>556, 37=>889, 38=>667, 39=>191, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278,
47=>278, 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>278, 59=>278, 60=>584, 61=>584, 62=>584,
63=>556, 64=>1015, 65=>667, 66=>667, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>500, 75=>667, 76=>556, 77=>833, 78=>722,
79=>778, 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>278, 92=>278, 93=>278, 94=>469,
95=>556, 96=>333, 97=>556, 98=>556, 99=>500, 100=>556, 101=>556, 102=>278, 103=>556, 104=>556, 105=>222, 106=>222, 107=>500, 108=>222, 109=>833, 110=>556,
111=>556, 112=>556, 113=>556, 114=>333, 115=>500, 116=>278, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, 122=>500, 123=>334, 124=>260, 125=>334, 126=>584,
8364=>556, 1027=>611, 8218=>222, 402=>556, 8222=>333, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>667, 381=>611, 1039=>722,
8216=>222, 8217=>221, 8220=>333, 8221=>333, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>500, 8250=>333, 339=>944, 1116=>500, 382=>500, 376=>667, 160=>278,
161=>333, 162=>556, 163=>556, 164=>556, 165=>556, 166=>260, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 173=>333, 174=>737, 175=>333, 176=>606,
177=>584, 178=>351, 179=>351, 180=>333, 181=>556, 182=>537, 183=>278, 184=>333, 185=>351, 186=>365, 187=>556, 188=>869, 189=>869, 190=>869, 191=>611, 192=>667,
193=>667, 194=>667, 195=>667, 196=>667, 197=>667, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722,
209=>722, 210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>666, 222=>666, 223=>611, 224=>556,
225=>556, 226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>500, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>556,
241=>556, 242=>556, 243=>556, 244=>556, 245=>556, 246=>556, 247=>584, 248=>611, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>555, 255=>500, 256=>667,
257=>556, 258=>667, 259=>556, 260=>667, 261=>556, 262=>722, 263=>500, 264=>722, 265=>500, 266=>722, 267=>500, 268=>722, 269=>500, 270=>722, 271=>635, 272=>722,
273=>556, 274=>667, 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>556, 286=>778, 287=>556, 288=>778,
289=>556, 290=>778, 291=>556, 292=>722, 293=>556, 294=>722, 295=>556, 296=>278, 297=>278, 298=>278, 299=>222, 300=>278, 301=>278, 302=>278, 303=>222, 304=>278,
305=>278, 306=>700, 307=>374, 308=>500, 309=>222, 310=>667, 311=>500, 312=>500, 313=>556, 314=>222, 315=>556, 316=>222, 317=>556, 318=>292, 319=>556, 320=>500,
321=>556, 322=>222, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>556, 330=>722, 331=>556, 332=>778, 333=>556, 334=>778, 335=>556, 336=>778,
337=>556, 340=>722, 341=>333, 342=>722, 343=>333, 344=>722, 345=>333, 346=>667, 347=>500, 348=>667, 349=>500, 350=>667, 351=>500, 354=>611, 355=>278, 356=>611,
357=>308, 358=>611, 359=>278, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>944,
373=>722, 374=>667, 375=>500, 377=>611, 378=>500, 379=>611, 380=>500, 383=>278, 384=>556, 386=>667, 387=>556, 388=>667, 389=>556, 390=>722, 391=>722, 392=>500,
393=>722, 395=>667, 396=>556, 398=>667, 399=>778, 400=>667, 401=>611, 403=>778, 409=>500, 413=>722, 414=>556, 415=>778, 421=>556, 423=>667, 424=>500, 425=>611,
427=>278, 429=>278, 430=>611, 452=>1311, 453=>1208, 454=>1056, 455=>1056, 456=>778, 457=>444, 458=>1158, 459=>944, 460=>778, 461=>667, 462=>556, 463=>278, 464=>278,
465=>778, 466=>556, 467=>722, 468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556, 477=>556, 478=>667, 479=>556, 480=>667,
481=>556, 482=>1000, 483=>889, 486=>778, 487=>556, 488=>667, 489=>500, 490=>778, 491=>556, 492=>778, 493=>556, 496=>222, 497=>1333, 498=>1222, 499=>1056, 500=>778,
501=>556, 504=>722, 505=>556, 506=>667, 507=>556, 508=>1000, 509=>889, 510=>778, 511=>611, 512=>667, 513=>556, 514=>667, 515=>556, 516=>667, 517=>556, 518=>667,
519=>556, 520=>278, 521=>278, 522=>278, 523=>278, 524=>778, 525=>556, 526=>778, 527=>556, 528=>722, 529=>333, 530=>722, 531=>333, 532=>722, 533=>556, 534=>722,
535=>556, 536=>667, 537=>500, 538=>611, 539=>278, 542=>722, 543=>556, 550=>667, 551=>556, 552=>667, 553=>556, 554=>778, 555=>556, 556=>778, 557=>556, 558=>778,
559=>556, 560=>778, 561=>556, 562=>667, 563=>500, 592=>556, 593=>556, 594=>556, 595=>556, 596=>500, 598=>556, 599=>556, 600=>556, 601=>556, 603=>500, 604=>500,
608=>556, 609=>556, 613=>556, 614=>556, 615=>556, 616=>222, 617=>222, 618=>278, 621=>222, 623=>833, 624=>833, 625=>833, 626=>556, 627=>556, 629=>556, 633=>333,
634=>333, 635=>333, 636=>333, 637=>333, 638=>278, 639=>278, 642=>500, 643=>278, 644=>278, 645=>278, 647=>278, 648=>278, 649=>556, 652=>500, 653=>722, 654=>500,
656=>500, 668=>500, 670=>500, 672=>556, 711=>333, 714=>333, 715=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0,
772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 780=>0, 783=>0, 785=>0, 786=>0, 787=>0, 788=>0, 806=>0, 807=>0, 808=>0, 884=>199,
885=>199, 890=>332, 894=>278, 900=>414, 901=>747, 902=>730, 903=>278, 904=>664, 905=>681, 906=>230, 908=>792, 910=>710, 911=>758, 912=>286, 913=>684, 914=>628,
915=>582, 916=>684, 917=>650, 918=>628, 919=>683, 920=>750, 921=>236, 922=>684, 923=>684, 924=>800, 925=>654, 926=>630, 927=>750, 928=>721, 929=>638, 931=>628,
932=>628, 933=>684, 934=>717, 935=>723, 936=>745, 937=>720, 938=>236, 939=>684, 940=>608, 941=>528, 942=>547, 943=>307, 944=>515, 945=>596, 946=>516, 947=>531,
948=>560, 949=>510, 950=>462, 951=>526, 952=>526, 953=>286, 954=>516, 955=>560, 956=>574, 957=>504, 958=>470, 959=>550, 960=>661, 961=>566, 962=>535, 963=>616,
964=>532, 965=>515, 966=>741, 967=>572, 968=>662, 969=>740, 970=>286, 971=>515, 972=>553, 973=>518, 974=>740, 1024=>667, 1025=>667, 1026=>766, 1028=>722, 1029=>667,
1030=>278, 1031=>278, 1032=>500, 1033=>1080, 1034=>1014, 1035=>766, 1037=>722, 1038=>650, 1040=>667, 1041=>667, 1042=>667, 1043=>611, 1044=>812, 1045=>667, 1046=>1023, 1047=>667,
1048=>728, 1049=>728, 1050=>667, 1051=>673, 1052=>844, 1053=>719, 1054=>778, 1055=>719, 1056=>667, 1057=>722, 1058=>611, 1059=>650, 1060=>936, 1061=>667, 1062=>741, 1063=>648,
1064=>828, 1065=>850, 1066=>897, 1067=>872, 1068=>667, 1069=>722, 1070=>1032, 1071=>702, 1072=>556, 1073=>556, 1074=>522, 1075=>430, 1076=>602, 1077=>556, 1078=>837, 1079=>500,
1080=>567, 1081=>567, 1082=>510, 1083=>557, 1084=>618, 1085=>558, 1086=>556, 1087=>557, 1088=>576, 1089=>500, 1090=>496, 1091=>500, 1092=>912, 1093=>500, 1094=>578, 1095=>520,
1096=>692, 1097=>712, 1098=>734, 1099=>690, 1100=>552, 1101=>500, 1102=>758, 1103=>543, 1104=>556, 1105=>556, 1106=>568, 1107=>430, 1108=>500, 1109=>500, 1110=>222, 1111=>278,
1112=>222, 1113=>840, 1114=>850, 1115=>568, 1117=>556, 1118=>500, 1119=>556, 1164=>667, 1165=>552, 1166=>667, 1167=>556, 1168=>611, 1169=>430, 1170=>611, 1171=>430, 1172=>611,
1173=>430, 1174=>1023, 1175=>837, 1176=>667, 1177=>500, 1178=>667, 1179=>500, 1180=>667, 1181=>500, 1182=>667, 1183=>500, 1184=>667, 1185=>500, 1186=>722, 1187=>556, 1188=>1060,
1189=>764, 1190=>722, 1191=>556, 1192=>722, 1193=>500, 1194=>722, 1195=>500, 1196=>611, 1197=>496, 1198=>667, 1199=>500, 1200=>667, 1201=>500, 1202=>667, 1203=>500, 1204=>774,
1205=>608, 1206=>642, 1207=>508, 1208=>642, 1209=>508, 1210=>642, 1211=>508, 1212=>778, 1213=>556, 1214=>688, 1215=>556, 1216=>278, 1217=>1023, 1218=>837, 1219=>667, 1220=>500,
1223=>722, 1224=>556, 1227=>642, 1228=>508, 1232=>667, 1233=>556, 1234=>667, 1235=>556, 1236=>1000, 1237=>889, 1238=>667, 1239=>556, 1240=>778, 1241=>556, 1242=>778, 1243=>556,
1244=>1023, 1245=>837, 1246=>667, 1247=>500, 1248=>667, 1249=>500, 1250=>728, 1251=>567, 1252=>728, 1253=>567, 1254=>778, 1255=>556, 1256=>778, 1257=>556, 1258=>778, 1259=>556,
1260=>722, 1261=>500, 1262=>650, 1263=>500, 1264=>650, 1265=>500, 1266=>650, 1267=>500, 1268=>648, 1269=>520, 1272=>872, 1273=>690, 1329=>722, 1330=>705, 1331=>774, 1332=>754,
1333=>722, 1334=>751, 1335=>485, 1336=>722, 1337=>782, 1338=>655, 1339=>699, 1340=>417, 1341=>853, 1342=>791, 1343=>711, 1344=>588, 1345=>663, 1346=>665, 1347=>665, 1348=>756,
1349=>623, 1350=>773, 1351=>603, 1352=>722, 1353=>648, 1354=>722, 1355=>751, 1356=>750, 1357=>722, 1358=>748, 1359=>667, 1360=>699, 1361=>623, 1362=>417, 1363=>785, 1364=>638,
1365=>778, 1366=>716, 1370=>222, 1371=>133, 1372=>325, 1373=>333, 1374=>344, 1377=>833, 1378=>556, 1379=>572, 1380=>581, 1381=>550, 1382=>588, 1383=>448, 1384=>556, 1385=>568,
1386=>582, 1387=>545, 1388=>301, 1389=>799, 1390=>556, 1391=>554, 1392=>533, 1393=>548, 1394=>552, 1395=>552, 1396=>544, 1397=>222, 1398=>544, 1399=>456, 1400=>556, 1401=>390,
1402=>833, 1403=>509, 1404=>547, 1405=>533, 1406=>610, 1407=>887, 1408=>556, 1409=>545, 1410=>352, 1411=>853, 1412=>588, 1413=>579, 1414=>690, 1415=>545, 1417=>278, 1418=>367,
1456=>70, 1457=>335, 1458=>329, 1459=>329, 1460=>70, 1461=>200, 1462=>200, 1463=>188, 1464=>188, 1465=>70, 1467=>329, 1468=>70, 1469=>70, 1470=>488, 1471=>200, 1472=>212,
1473=>0, 1474=>0, 1475=>278, 1476=>70, 1488=>640, 1489=>591, 1490=>466, 1491=>598, 1492=>622, 1493=>212, 1494=>351, 1495=>623, 1496=>608, 1497=>200, 1498=>526, 1499=>550,
1500=>600, 1501=>623, 1502=>621, 1503=>212, 1504=>378, 1505=>607, 1506=>587, 1507=>575, 1508=>568, 1509=>540, 1510=>590, 1511=>606, 1512=>547, 1513=>776, 1514=>687, 1792=>600,
1793=>201, 1794=>201, 1795=>201, 1796=>201, 1797=>500, 1798=>500, 1799=>500, 1800=>370, 1801=>370, 1802=>574, 1803=>574, 1804=>645, 1805=>574, 1808=>452, 1809=>452, 1810=>574,
1811=>645, 1812=>645, 1813=>509, 1814=>509, 1815=>682, 1816=>585, 1817=>404, 1818=>627, 1819=>718, 1820=>718, 1821=>484, 1822=>682, 1823=>600, 1824=>660, 1825=>682, 1826=>538,
1827=>718, 1828=>718, 1829=>718, 1830=>574, 1831=>574, 1832=>638, 1833=>585, 1834=>509, 1835=>682, 1836=>682, 1840=>1, 1841=>1, 1842=>1, 1843=>1, 1844=>1, 1845=>1,
1846=>1, 1847=>1, 1848=>1, 1849=>1, 1850=>1, 1851=>1, 1852=>1, 1853=>1, 1854=>1, 1855=>1, 1856=>1, 1857=>1, 1858=>1, 1859=>1, 1860=>1, 1861=>1,
1862=>1, 1863=>1, 1864=>1, 1865=>1, 1866=>1, 2305=>6, 2306=>6, 2309=>644, 2310=>816, 2311=>392, 2312=>392, 2313=>459, 2314=>661, 2315=>641, 2317=>423, 2320=>423,
2321=>816, 2323=>816, 2324=>816, 2325=>393, 2326=>622, 2327=>424, 2328=>472, 2329=>508, 2330=>517, 2331=>583, 2332=>549, 2333=>503, 2334=>538, 2335=>444, 2336=>480, 2337=>519,
2338=>479, 2339=>504, 2340=>439, 2341=>542, 2342=>427, 2343=>520, 2344=>415, 2345=>415, 2346=>401, 2347=>401, 2348=>442, 2349=>520, 2350=>463, 2351=>451, 2352=>319, 2353=>319,
2354=>549, 2355=>641, 2357=>442, 2358=>589, 2359=>398, 2360=>506, 2361=>430, 2364=>6, 2365=>438, 2366=>172, 2367=>172, 2368=>172, 2369=>6, 2370=>6, 2371=>6, 2373=>6,
2375=>6, 2376=>6, 2377=>172, 2379=>172, 2380=>172, 2381=>6, 2384=>898, 2385=>6, 2406=>584, 2407=>584, 2408=>584, 2409=>584, 2410=>584, 2411=>584, 2412=>584, 2413=>584,
2414=>584, 2415=>584, 2416=>898, 2433=>300, 2434=>400, 2435=>300, 2437=>640, 2438=>780, 2439=>520, 2440=>520, 2441=>530, 2442=>550, 2443=>620, 2444=>420, 2447=>480, 2448=>620,
2451=>620, 2452=>720, 2453=>652, 2454=>500, 2455=>490, 2456=>466, 2457=>540, 2458=>490, 2459=>540, 2460=>630, 2461=>590, 2462=>680, 2463=>510, 2464=>490, 2465=>520, 2466=>520,
2467=>470, 2468=>540, 2469=>490, 2470=>470, 2471=>490, 2472=>452, 2474=>560, 2475=>650, 2476=>480, 2477=>588, 2478=>480, 2479=>470, 2480=>480, 2482=>472, 2486=>512, 2487=>470,
2488=>470, 2489=>520, 2492=>160, 2494=>180, 2495=>180, 2496=>180, 2497=>320, 2498=>329, 2499=>195, 2500=>260, 2503=>340, 2504=>340, 2507=>740, 2508=>740, 2509=>400, 2519=>180,
2524=>540, 2525=>520, 2527=>470, 2528=>612, 2529=>420, 2530=>234, 2531=>360, 2534=>460, 2535=>420, 2536=>520, 2537=>540, 2538=>400, 2539=>400, 2540=>560, 2541=>390, 2542=>480,
2543=>420, 2544=>480, 2545=>470, 2546=>400, 2547=>470, 2548=>400, 2549=>400, 2550=>400, 2551=>120, 2552=>440, 2553=>420, 2554=>420, 2565=>744, 2566=>914, 2567=>690, 2568=>670,
2569=>596, 2570=>596, 2575=>498, 2576=>744, 2579=>596, 2580=>744, 2581=>550, 2582=>534, 2583=>618, 2584=>690, 2585=>546, 2586=>518, 2587=>592, 2588=>492, 2589=>574, 2590=>514,
2591=>526, 2592=>556, 2593=>524, 2594=>528, 2595=>574, 2596=>484, 2597=>534, 2598=>504, 2599=>534, 2600=>538, 2602=>534, 2603=>506, 2604=>562, 2605=>516, 2606=>546, 2607=>670,
2608=>538, 2610=>726, 2611=>726, 2613=>514, 2614=>546, 2616=>546, 2617=>517, 2620=>286, 2622=>172, 2623=>190, 2624=>190, 2625=>1, 2626=>1, 2631=>1, 2632=>1, 2635=>1,
2636=>1, 2637=>1, 2649=>534, 2650=>618, 2651=>492, 2652=>484, 2654=>506, 2662=>616, 2663=>480, 2664=>560, 2665=>480, 2666=>468, 2667=>492, 2668=>514, 2669=>538, 2670=>572,
2671=>560, 2672=>1, 2674=>498, 2675=>596, 2676=>900, 2689=>33, 2690=>33, 2693=>767, 2694=>961, 2695=>500, 2696=>495, 2697=>528, 2698=>702, 2699=>885, 2709=>501, 2710=>612,
2711=>619, 2712=>569, 2713=>532, 2714=>358, 2715=>620, 2716=>606, 2717=>602, 2718=>631, 2719=>495, 2720=>528, 2721=>531, 2722=>511, 2723=>614, 2724=>294, 2725=>344, 2726=>425,
2727=>345, 2728=>611, 2730=>512, 2731=>578, 2732=>428, 2733=>423, 2734=>231, 2735=>582, 2736=>344, 2738=>558, 2739=>670, 2741=>537, 2742=>592, 2743=>568, 2744=>600, 2745=>544,
2749=>531, 2750=>232, 2751=>232, 2752=>232, 2753=>33, 2754=>33, 2755=>33, 2759=>33, 2760=>33, 2763=>232, 2764=>232, 2768=>903, 2790=>479, 2791=>416, 2792=>465, 2793=>469,
2794=>498, 2795=>463, 2796=>451, 2797=>510, 2798=>455, 2799=>488, 2818=>131, 2819=>302, 2821=>560, 2822=>644, 2823=>632, 2825=>630, 2827=>553, 2831=>604, 2835=>520, 2837=>572,
2838=>570, 2839=>580, 2840=>565, 2842=>580, 2844=>564, 2845=>575, 2847=>565, 2848=>565, 2849=>524, 2858=>572, 2859=>700, 2863=>655, 2864=>620, 2866=>652, 2867=>560, 2870=>565,
2871=>565, 2872=>545, 2873=>524, 2878=>128, 2879=>1, 2880=>190, 2881=>1, 2882=>1, 2883=>1, 2887=>396, 2912=>563, 2918=>508, 2919=>424, 2920=>440, 2921=>600, 2922=>600,
2923=>600, 2924=>600, 2925=>600, 2926=>511, 2927=>483, 2946=>479, 2947=>893, 2949=>1018, 2950=>1170, 2951=>916, 2952=>676, 2953=>836, 2954=>1225, 2958=>744, 2959=>744, 2960=>848,
2962=>813, 2963=>813, 2964=>813, 2965=>688, 2969=>744, 2970=>676, 2972=>848, 2974=>984, 2975=>777, 2979=>1338, 2980=>664, 2984=>561, 2985=>1029, 2986=>607, 2990=>697, 2991=>697,
2992=>434, 2993=>617, 2994=>869, 2995=>859, 2996=>697, 2997=>869, 2999=>1145, 3000=>1064, 3001=>1316, 3006=>424, 3007=>125, 3008=>596, 3009=>539, 3014=>596, 3015=>650, 3016=>973,
3018=>1286, 3019=>1286, 3020=>1706, 3021=>333, 3031=>859, 3034=>778, 3035=>881, 3036=>876, 3037=>648, 3041=>744, 3203=>342, 3205=>620, 3206=>591, 3207=>600, 3208=>776, 3209=>1138,
3210=>1464, 3214=>574, 3215=>570, 3216=>580, 3218=>589, 3219=>597, 3220=>625, 3221=>256, 3222=>565, 3223=>326, 3224=>604, 3225=>651, 3226=>408, 3228=>611, 3230=>843, 3231=>610,
3232=>258, 3233=>317, 3234=>328, 3235=>803, 3236=>317, 3237=>328, 3238=>352, 3239=>352, 3240=>317, 3248=>248, 3249=>621, 3250=>620, 3251=>620, 3302=>649, 3303=>550, 3304=>573,
3305=>567, 3306=>562, 3307=>557, 3308=>562, 3309=>567, 3310=>557, 3311=>557, 3458=>468, 3459=>318, 3461=>660, 3465=>778, 3466=>807, 3467=>830, 3473=>838, 3476=>860, 3481=>1000,
3482=>973, 3483=>860, 3484=>997, 3486=>740, 3488=>838, 3489=>886, 3490=>886, 3492=>1295, 3493=>1295, 3495=>838, 3496=>860, 3497=>860, 3498=>860, 3499=>1403, 3501=>973, 3502=>838,
3503=>660, 3504=>860, 3505=>973, 3507=>660, 3508=>886, 3509=>838, 3510=>860, 3511=>973, 3512=>838, 3513=>860, 3514=>886, 3515=>807, 3517=>830, 3520=>838, 3521=>973, 3522=>886,
3523=>886, 3524=>973, 3525=>830, 3526=>973, 3530=>0, 3535=>432, 3536=>380, 3537=>420, 3538=>0, 3539=>0, 3540=>0, 3542=>0, 3544=>501, 3545=>652, 3551=>648, 7936=>596,
7937=>596, 7938=>596, 7939=>596, 7940=>596, 7941=>596, 7942=>596, 7943=>596, 7944=>684, 7945=>684, 7946=>684, 7947=>684, 7948=>684, 7949=>684, 7950=>684, 7951=>684, 7952=>510,
7953=>510, 7954=>510, 7955=>510, 7956=>510, 7957=>510, 7960=>650, 7961=>650, 7962=>650, 7963=>650, 7964=>650, 7965=>650, 7968=>526, 7969=>526, 7970=>526, 7971=>526, 7972=>526,
7973=>526, 7974=>526, 7975=>526, 7976=>683, 7977=>683, 7978=>683, 7979=>683, 7980=>683, 7981=>683, 7982=>683, 7983=>683, 7984=>286, 7985=>286, 7986=>286, 7987=>286, 7988=>286,
7989=>286, 7990=>286, 7991=>286, 7992=>236, 7993=>236, 7994=>236, 7995=>236, 7996=>236, 7997=>236, 7998=>236, 7999=>236, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550,
8005=>550, 8008=>750, 8009=>750, 8010=>750, 8011=>750, 8012=>750, 8013=>750, 8016=>515, 8017=>515, 8018=>515, 8019=>515, 8020=>515, 8021=>515, 8022=>515, 8023=>515, 8025=>684,
8027=>684, 8029=>684, 8031=>684, 8032=>740, 8033=>740, 8034=>740, 8035=>740, 8036=>740, 8037=>740, 8038=>740, 8039=>740, 8040=>720, 8041=>720, 8042=>720, 8043=>720, 8044=>720,
8045=>720, 8046=>720, 8047=>720, 8048=>596, 8049=>596, 8050=>510, 8051=>510, 8052=>526, 8053=>526, 8054=>286, 8055=>286, 8056=>550, 8057=>550, 8058=>515, 8059=>515, 8060=>740,
8061=>740, 8064=>596, 8065=>596, 8066=>596, 8067=>596, 8068=>596, 8069=>596, 8070=>596, 8071=>596, 8072=>882, 8073=>882, 8074=>882, 8075=>882, 8076=>882, 8077=>882, 8078=>882,
8079=>882, 8080=>526, 8081=>526, 8082=>526, 8083=>526, 8084=>526, 8085=>526, 8086=>526, 8087=>526, 8088=>857, 8089=>857, 8090=>857, 8091=>857, 8092=>857, 8093=>857, 8094=>857,
8095=>857, 8096=>740, 8097=>740, 8098=>740, 8099=>740, 8100=>740, 8101=>740, 8102=>740, 8103=>740, 8104=>945, 8105=>945, 8106=>945, 8107=>945, 8108=>945, 8109=>945, 8110=>945,
8111=>945, 8112=>596, 8113=>596, 8114=>596, 8115=>596, 8116=>596, 8118=>596, 8119=>596, 8120=>684, 8121=>684, 8122=>684, 8123=>684, 8124=>882, 8125=>278, 8126=>201, 8127=>333,
8128=>278, 8129=>333, 8130=>526, 8131=>526, 8132=>536, 8134=>526, 8135=>526, 8136=>650, 8137=>650, 8138=>683, 8139=>683, 8140=>857, 8141=>582, 8142=>582, 8143=>333, 8144=>286,
8145=>286, 8146=>286, 8147=>286, 8150=>286, 8151=>312, 8152=>236, 8153=>236, 8154=>236, 8155=>236, 8157=>582, 8158=>582, 8159=>333, 8160=>515, 8161=>515, 8162=>515, 8163=>515,
8164=>566, 8165=>566, 8166=>515, 8167=>515, 8168=>684, 8169=>684, 8170=>684, 8171=>684, 8172=>638, 8173=>333, 8174=>393, 8175=>333, 8178=>740, 8179=>740, 8180=>740, 8182=>740,
8183=>740, 8184=>750, 8185=>750, 8186=>720, 8187=>720, 8188=>939, 8189=>333, 8190=>333, 8208=>333, 8219=>221, 8223=>333, 8227=>350, 8241=>1360, 8242=>278, 8243=>469, 8244=>680,
8245=>278, 8246=>469, 8247=>680, 8251=>622, 8252=>556, 8253=>556, 8260=>167, 8263=>1112, 8264=>834, 8265=>834, 8267=>537, 8304=>351, 8305=>351, 8308=>351, 8309=>351, 8310=>351,
8311=>351, 8312=>351, 8313=>351, 8320=>351, 8321=>351, 8322=>351, 8323=>351, 8324=>351, 8325=>353, 8326=>351, 8327=>351, 8328=>351, 8329=>351, 8359=>1445, 8360=>1222, 8362=>869,
8459=>969, 8460=>615, 8464=>809, 8465=>519, 8466=>874, 8470=>1008, 8475=>850, 8476=>644, 8486=>720, 8487=>720, 8488=>512, 8490=>667, 8491=>667, 8492=>908, 8493=>623, 8496=>562,
8497=>611, 8498=>611, 8499=>1080, 8531=>869, 8532=>869, 8533=>869, 8534=>869, 8535=>869, 8536=>869, 8537=>869, 8538=>869, 8539=>869, 8540=>869, 8541=>869, 8542=>869, 8543=>869,
8544=>278, 8545=>556, 8546=>834, 8547=>945, 8548=>667, 8549=>945, 8550=>1223, 8551=>1501, 8552=>945, 8553=>667, 8554=>945, 8555=>1223, 8556=>556, 8557=>722, 8558=>722, 8559=>833,
8560=>222, 8561=>444, 8562=>666, 8563=>722, 8564=>500, 8565=>722, 8566=>944, 8567=>1166, 8568=>722, 8569=>500, 8570=>722, 8571=>944, 8572=>222, 8573=>500, 8574=>556, 8575=>833,
8592=>987, 8593=>603, 8594=>987, 8595=>603, 8596=>1042, 8597=>1042, 8629=>658, 8656=>987, 8657=>603, 8658=>987, 8659=>603, 8660=>1042, 8704=>667, 8706=>556, 8707=>667, 8709=>556,
8710=>711, 8711=>711, 8712=>713, 8713=>713, 8719=>823, 8720=>823, 8721=>804, 8722=>584, 8723=>584, 8727=>500, 8730=>542, 8733=>713, 8734=>713, 8736=>768, 8743=>603, 8744=>603,
8745=>768, 8746=>768, 8747=>556, 8748=>796, 8749=>956, 8750=>556, 8756=>863, 8764=>549, 8766=>584, 8769=>584, 8770=>584, 8771=>584, 8777=>636, 8800=>548, 8804=>584, 8805=>584,
8853=>768, 8854=>768, 8855=>768, 8869=>658, 8960=>823, 9674=>489, 9834=>555, 12289=>1000, 12290=>1000, 12291=>1000, 12293=>1000, 12295=>1000, 12296=>1000, 12297=>1000, 12298=>1000, 12299=>1000,
12300=>1000, 12301=>1000, 12302=>1000, 12303=>1000, 12304=>1000, 12305=>1000, 12308=>1000, 12309=>1000, 12353=>1000, 12354=>1000, 12355=>1000, 12356=>1000, 12357=>1000, 12358=>1000, 12359=>1000, 12360=>1000,
12361=>1000, 12362=>1000, 12363=>1000, 12364=>1000, 12365=>1000, 12366=>1000, 12367=>1000, 12368=>1000, 12369=>1000, 12370=>1000, 12371=>1000, 12372=>1000, 12373=>1000, 12374=>1000, 12375=>1000, 12376=>1000,
12377=>1000, 12378=>1000, 12379=>1000, 12380=>1000, 12381=>1000, 12382=>1000, 12383=>1000, 12384=>1000, 12385=>1000, 12386=>1000, 12387=>1000, 12388=>1000, 12389=>1000, 12390=>1000, 12391=>1000, 12392=>1000,
12393=>1000, 12394=>1000, 12395=>1000, 12396=>1000, 12397=>1000, 12398=>1000, 12399=>1000, 12400=>1000, 12401=>1000, 12402=>1000, 12403=>1000, 12404=>1000, 12405=>1000, 12406=>1000, 12407=>1000, 12408=>1000,
12409=>1000, 12410=>1000, 12411=>1000, 12412=>1000, 12413=>1000, 12414=>1000, 12415=>1000, 12416=>1000, 12417=>1000, 12418=>1000, 12419=>1000, 12420=>1000, 12421=>1000, 12422=>1000, 12423=>1000, 12424=>1000,
12425=>1000, 12426=>1000, 12427=>1000, 12428=>1000, 12429=>1000, 12430=>1000, 12431=>1000, 12432=>1000, 12433=>1000, 12434=>1000, 12435=>1000, 12441=>1000, 12443=>1000, 12449=>1000, 12450=>1000, 12451=>1000,
12452=>1000, 12453=>1000, 12454=>1000, 12455=>1000, 12456=>1000, 12457=>1000, 12458=>1000, 12459=>1000, 12460=>1000, 12461=>1000, 12462=>1000, 12463=>1000, 12464=>1000, 12465=>1000, 12466=>1000, 12467=>1000,
12468=>1000, 12469=>1000, 12470=>1000, 12471=>1000, 12472=>1000, 12473=>1000, 12474=>1000, 12475=>1000, 12476=>1000, 12477=>1000, 12478=>1000, 12479=>1000, 12480=>1000, 12481=>1000, 12482=>1000, 12483=>1000,
12484=>1000, 12485=>1000, 12486=>1000, 12487=>1000, 12488=>1000, 12489=>1000, 12490=>1000, 12491=>1000, 12492=>1000, 12493=>1000, 12494=>1000, 12495=>1000, 12496=>1000, 12497=>1000, 12498=>1000, 12499=>1000,
12500=>1000, 12501=>1000, 12502=>1000, 12503=>1000, 12504=>1000, 12505=>1000, 12506=>1000, 12507=>1000, 12508=>1000, 12509=>1000, 12510=>1000, 12511=>1000, 12512=>1000, 12513=>1000, 12514=>1000, 12515=>1000,
12516=>1000, 12517=>1000, 12518=>1000, 12519=>1000, 12520=>1000, 12521=>1000, 12522=>1000, 12523=>1000, 12524=>1000, 12525=>1000, 12526=>1000, 12527=>1000, 12528=>1000, 12529=>1000, 12530=>1000, 12531=>1000,
12532=>1000, 12533=>1000, 12534=>1000, 12535=>1000, 12536=>1000, 12537=>1000, 12538=>1000, 12539=>278, 12540=>1000, 12541=>1000, 12542=>1000, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556,
63038=>556, 63039=>556, 63040=>556, 63041=>556, 63166=>222, 63171=>333, 63196=>556, 64256=>556, 64257=>500, 64258=>500, 64259=>778, 64260=>778, 64261=>556, 64262=>778, 64285=>200, 64286=>305,
64287=>400, 64288=>587, 64289=>890, 64290=>848, 64291=>872, 64292=>800, 64293=>850, 64294=>873, 64295=>797, 64296=>937, 64297=>584, 64298=>776, 64299=>776, 64300=>776, 64301=>776, 64302=>640,
64303=>640, 64304=>640, 64305=>591, 64306=>466, 64307=>598, 64308=>622, 64309=>262, 64310=>351, 64312=>608, 64313=>270, 64314=>526, 64315=>550, 64316=>600, 64318=>621, 64320=>378, 64321=>607,
64323=>575, 64324=>568, 64326=>590, 64327=>606, 64328=>547, 64329=>776, 64330=>687, 64331=>212, 64332=>591, 64333=>550, 64334=>568, 64335=>640, 65533=>788);
$enc='';
$diff='';
$file='FreeSans.z';
$ctg='FreeSans.ctg.z';
$originalsize=264072;
?>

View File

@ -1,79 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeSansBold';
$desc=array('Ascent'=>1159,'Descent'=>-355,'CapHeight'=>1159,'Flags'=>32,'FontBBox'=>'[-459 -355 1300 1159]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
$up=-155;
$ut=69;
$cw=array(
13=>333, 32=>278, 33=>333, 34=>474, 35=>556, 36=>556, 37=>889, 38=>722, 39=>238, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278,
47=>278, 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>333, 59=>333, 60=>584, 61=>584, 62=>584,
63=>611, 64=>975, 65=>722, 66=>722, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>556, 75=>722, 76=>611, 77=>833, 78=>722,
79=>778, 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>333, 92=>278, 93=>333, 94=>584,
95=>556, 96=>333, 97=>556, 98=>611, 99=>556, 100=>611, 101=>556, 102=>333, 103=>611, 104=>611, 105=>278, 106=>278, 107=>556, 108=>278, 109=>889, 110=>611,
111=>611, 112=>611, 113=>611, 114=>389, 115=>556, 116=>333, 117=>611, 118=>556, 119=>778, 120=>556, 121=>556, 122=>500, 123=>389, 124=>280, 125=>389, 126=>584,
8364=>556, 1027=>611, 8218=>278, 402=>556, 8222=>500, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>722, 381=>611, 1039=>722,
8216=>278, 8217=>278, 8220=>500, 8221=>500, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>556, 8250=>333, 339=>944, 1116=>573, 382=>500, 376=>667, 161=>333,
162=>556, 163=>556, 164=>556, 165=>556, 166=>280, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 174=>737, 175=>333, 176=>606, 177=>584, 178=>351,
179=>351, 180=>333, 181=>611, 182=>556, 183=>278, 184=>333, 185=>351, 186=>365, 187=>556, 188=>869, 189=>869, 190=>869, 191=>611, 192=>722, 193=>722, 194=>722,
195=>722, 196=>722, 197=>722, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722, 209=>722, 210=>778,
211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556, 226=>556,
227=>556, 228=>556, 229=>556, 230=>889, 231=>556, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>611, 241=>611, 242=>611,
243=>611, 244=>611, 245=>611, 246=>611, 247=>584, 248=>611, 249=>611, 250=>611, 251=>611, 252=>611, 253=>556, 254=>611, 255=>556, 256=>722, 257=>556, 258=>722,
259=>556, 260=>722, 261=>556, 262=>722, 263=>556, 264=>722, 265=>556, 266=>722, 267=>556, 268=>722, 269=>556, 270=>722, 271=>611, 272=>722, 273=>611, 274=>667,
275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>611, 286=>778, 287=>611, 288=>778, 289=>611, 290=>778,
291=>611, 292=>722, 293=>611, 294=>722, 295=>611, 296=>278, 297=>278, 298=>278, 299=>278, 300=>278, 301=>278, 302=>278, 303=>278, 304=>278, 305=>278, 306=>808,
307=>492, 308=>556, 309=>278, 310=>722, 311=>556, 312=>573, 313=>611, 314=>278, 315=>611, 316=>278, 317=>611, 318=>278, 319=>611, 320=>556, 321=>611, 322=>278,
323=>722, 324=>611, 325=>722, 326=>611, 327=>722, 328=>611, 329=>611, 330=>722, 331=>611, 332=>778, 333=>611, 334=>778, 335=>611, 336=>778, 337=>611, 340=>722,
341=>389, 342=>722, 343=>389, 344=>722, 345=>389, 346=>667, 347=>556, 348=>667, 349=>556, 350=>667, 351=>556, 354=>611, 355=>333, 356=>611, 357=>333, 358=>611,
359=>333, 360=>722, 361=>611, 362=>722, 363=>611, 364=>722, 365=>611, 366=>722, 367=>611, 368=>722, 369=>611, 370=>722, 371=>611, 372=>944, 373=>778, 374=>667,
375=>556, 377=>611, 378=>500, 379=>611, 380=>500, 383=>333, 452=>1333, 453=>1222, 454=>1111, 455=>1167, 456=>889, 457=>556, 458=>1278, 459=>1000, 460=>889, 461=>722,
462=>556, 463=>278, 464=>278, 465=>778, 466=>611, 467=>722, 468=>611, 469=>722, 470=>611, 471=>722, 472=>611, 473=>722, 474=>611, 475=>722, 476=>611, 478=>722,
479=>556, 482=>1000, 483=>889, 486=>778, 487=>611, 488=>722, 489=>556, 490=>778, 491=>611, 492=>778, 493=>611, 497=>1333, 498=>1222, 499=>1111, 504=>722, 505=>611,
506=>722, 507=>556, 508=>1000, 509=>889, 510=>778, 511=>611, 514=>722, 515=>556, 518=>667, 519=>556, 522=>278, 523=>278, 526=>778, 527=>611, 530=>722, 531=>389,
534=>722, 535=>611, 536=>667, 537=>556, 538=>611, 539=>333, 711=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 884=>379, 885=>379, 890=>332, 894=>333,
900=>325, 901=>658, 902=>761, 903=>474, 904=>706, 905=>733, 906=>285, 908=>785, 910=>823, 911=>819, 913=>722, 914=>722, 915=>642, 916=>726, 917=>667, 918=>611,
919=>722, 920=>810, 921=>278, 922=>722, 923=>744, 924=>860, 925=>714, 926=>690, 927=>822, 928=>781, 929=>698, 931=>688, 932=>688, 933=>804, 934=>777, 935=>783,
936=>805, 937=>780, 938=>278, 939=>804, 940=>660, 941=>559, 942=>560, 943=>356, 944=>575, 945=>656, 946=>576, 947=>591, 948=>620, 949=>570, 950=>522, 951=>586,
952=>586, 953=>346, 954=>576, 955=>620, 956=>667, 957=>564, 958=>530, 959=>610, 960=>721, 961=>626, 962=>595, 963=>676, 964=>592, 965=>575, 966=>801, 967=>632,
968=>722, 969=>800, 970=>346, 971=>575, 972=>599, 973=>567, 974=>1125, 1024=>667, 1025=>709, 1026=>790, 1028=>722, 1029=>667, 1030=>278, 1031=>278, 1032=>556, 1033=>1110,
1034=>1113, 1035=>790, 1037=>726, 1038=>718, 1040=>722, 1041=>722, 1042=>722, 1043=>611, 1044=>900, 1045=>709, 1046=>1093, 1047=>672, 1048=>757, 1049=>757, 1050=>750, 1051=>729,
1052=>874, 1053=>753, 1054=>778, 1055=>753, 1056=>671, 1057=>722, 1058=>611, 1059=>718, 1060=>892, 1061=>667, 1062=>816, 1063=>685, 1064=>1057, 1065=>1183, 1066=>928, 1067=>949,
1068=>687, 1069=>722, 1070=>1109, 1071=>698, 1072=>556, 1073=>606, 1074=>572, 1075=>454, 1076=>685, 1077=>556, 1078=>809, 1079=>546, 1080=>615, 1081=>615, 1082=>573, 1083=>577,
1084=>666, 1085=>603, 1086=>611, 1087=>603, 1088=>611, 1089=>556, 1090=>454, 1091=>556, 1092=>957, 1093=>556, 1094=>652, 1095=>578, 1096=>886, 1097=>968, 1098=>693, 1099=>811,
1100=>562, 1101=>564, 1102=>908, 1103=>596, 1104=>556, 1105=>556, 1106=>606, 1107=>454, 1108=>556, 1109=>556, 1110=>278, 1111=>278, 1112=>278, 1113=>900, 1114=>611, 1115=>606,
1117=>608, 1118=>556, 1119=>608, 1164=>687, 1165=>562, 1166=>667, 1167=>611, 1168=>611, 1169=>454, 1170=>611, 1171=>454, 1172=>611, 1173=>454, 1174=>1093, 1175=>809, 1176=>672,
1177=>546, 1178=>722, 1179=>573, 1180=>722, 1181=>573, 1182=>722, 1183=>573, 1184=>722, 1185=>573, 1186=>722, 1187=>608, 1188=>722, 1189=>608, 1190=>722, 1191=>608, 1192=>722,
1193=>556, 1194=>722, 1195=>556, 1196=>611, 1197=>454, 1198=>667, 1199=>556, 1200=>667, 1201=>556, 1202=>667, 1203=>556, 1204=>814, 1205=>685, 1206=>675, 1207=>580, 1208=>675,
1209=>580, 1210=>675, 1211=>580, 1212=>722, 1213=>556, 1214=>722, 1215=>556, 1216=>278, 1217=>1093, 1218=>809, 1219=>722, 1220=>573, 1223=>722, 1224=>608, 1227=>675, 1228=>580,
1232=>722, 1233=>556, 1234=>722, 1235=>556, 1236=>1000, 1237=>889, 1238=>709, 1239=>556, 1240=>722, 1241=>556, 1242=>722, 1243=>556, 1244=>1093, 1245=>809, 1246=>672, 1247=>546,
1248=>672, 1249=>546, 1250=>757, 1251=>615, 1252=>757, 1253=>615, 1254=>778, 1255=>611, 1256=>778, 1257=>611, 1258=>778, 1259=>611, 1260=>722, 1261=>564, 1262=>718, 1263=>556,
1264=>718, 1265=>556, 1266=>718, 1267=>556, 1268=>685, 1269=>578, 1272=>949, 1273=>811, 1456=>82, 1457=>347, 1458=>341, 1459=>341, 1460=>82, 1461=>211, 1462=>211, 1463=>200,
1464=>200, 1465=>82, 1467=>341, 1468=>82, 1469=>82, 1470=>516, 1471=>200, 1472=>297, 1473=>1038, 1474=>1038, 1475=>333, 1476=>82, 1488=>714, 1489=>651, 1490=>557, 1491=>638,
1492=>682, 1493=>297, 1494=>443, 1495=>682, 1496=>670, 1497=>284, 1498=>590, 1499=>595, 1500=>667, 1501=>683, 1502=>704, 1503=>297, 1504=>429, 1505=>670, 1506=>653, 1507=>661,
1508=>660, 1509=>616, 1510=>671, 1511=>672, 1512=>600, 1513=>840, 1514=>756, 1520=>554, 1521=>550, 1522=>542, 1523=>238, 1524=>474, 1559=>556, 1560=>778, 1561=>944, 1562=>611,
1563=>278, 1564=>889, 1569=>844, 1576=>923, 1578=>922, 1579=>922, 1581=>649, 1582=>704, 1587=>1221, 7936=>656, 7937=>656, 7938=>656, 7939=>656, 7940=>656, 7941=>656, 7942=>656,
7943=>656, 7944=>722, 7945=>722, 7946=>722, 7947=>722, 7948=>722, 7949=>722, 7950=>722, 7951=>722, 7952=>570, 7953=>570, 7954=>570, 7955=>570, 7956=>570, 7957=>570, 7960=>667,
7961=>667, 7962=>667, 7963=>667, 7964=>667, 7965=>667, 7968=>586, 7969=>586, 7970=>586, 7971=>586, 7972=>586, 7973=>586, 7974=>586, 7975=>586, 7976=>722, 7977=>722, 7978=>722,
7979=>722, 7980=>722, 7981=>722, 7982=>722, 7983=>722, 7984=>346, 7985=>346, 7986=>346, 7987=>346, 7988=>346, 7989=>346, 7990=>346, 7991=>346, 7992=>278, 7993=>278, 7994=>278,
7995=>278, 7996=>278, 7997=>278, 7998=>278, 7999=>278, 8000=>610, 8001=>610, 8002=>610, 8003=>610, 8004=>610, 8005=>610, 8008=>822, 8009=>822, 8010=>822, 8011=>822, 8012=>822,
8013=>822, 8016=>575, 8017=>575, 8018=>575, 8019=>575, 8020=>575, 8021=>575, 8022=>575, 8023=>575, 8025=>804, 8027=>804, 8029=>804, 8031=>804, 8032=>800, 8033=>800, 8034=>800,
8035=>800, 8036=>800, 8037=>800, 8038=>800, 8039=>800, 8040=>780, 8041=>780, 8042=>780, 8043=>780, 8044=>780, 8045=>780, 8046=>780, 8047=>780, 8048=>656, 8049=>656, 8050=>570,
8051=>570, 8052=>586, 8053=>586, 8054=>346, 8055=>346, 8056=>610, 8057=>610, 8058=>575, 8059=>575, 8060=>800, 8061=>800, 8064=>656, 8065=>656, 8066=>656, 8067=>656, 8068=>656,
8069=>656, 8070=>656, 8071=>656, 8072=>968, 8073=>968, 8074=>968, 8075=>968, 8076=>968, 8077=>968, 8078=>968, 8079=>968, 8080=>586, 8081=>586, 8082=>586, 8083=>586, 8084=>586,
8085=>586, 8086=>586, 8087=>586, 8088=>968, 8089=>968, 8090=>968, 8091=>968, 8092=>968, 8093=>968, 8094=>968, 8095=>968, 8096=>800, 8097=>800, 8098=>800, 8099=>800, 8100=>800,
8101=>800, 8102=>800, 8103=>800, 8104=>1026, 8105=>1026, 8106=>1026, 8107=>1026, 8108=>1026, 8109=>1026, 8110=>1026, 8111=>1026, 8112=>656, 8113=>656, 8114=>656, 8115=>656, 8116=>660,
8118=>656, 8119=>656, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>968, 8125=>278, 8126=>346, 8127=>278, 8128=>278, 8129=>333, 8130=>586, 8131=>586, 8132=>560, 8134=>586,
8135=>586, 8136=>667, 8137=>667, 8138=>722, 8139=>722, 8140=>968, 8141=>492, 8142=>489, 8143=>394, 8144=>346, 8145=>346, 8146=>346, 8147=>346, 8150=>346, 8151=>346, 8152=>278,
8153=>278, 8154=>278, 8155=>278, 8157=>481, 8158=>589, 8159=>333, 8160=>575, 8161=>575, 8162=>575, 8163=>575, 8164=>626, 8165=>626, 8166=>575, 8167=>575, 8168=>804, 8169=>804,
8170=>804, 8171=>804, 8172=>698, 8173=>333, 8174=>333, 8175=>333, 8178=>800, 8179=>800, 8180=>1125, 8182=>800, 8183=>800, 8184=>822, 8185=>822, 8186=>780, 8187=>780, 8188=>1111,
8189=>333, 8190=>278, 8260=>167, 8308=>351, 8321=>351, 8322=>351, 8323=>351, 8324=>351, 8362=>1049, 8543=>869, 8706=>490, 8710=>729, 8721=>711, 8722=>584, 8730=>542, 8800=>548,
8804=>584, 8805=>584, 9674=>489, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556, 63171=>333, 63196=>556, 64257=>611, 64258=>611,
64285=>284, 64286=>305, 64287=>542, 64288=>653, 64289=>964, 64290=>888, 64291=>932, 64292=>845, 64293=>917, 64294=>933, 64295=>850, 64296=>1006, 64297=>584, 64298=>840, 64299=>840, 64300=>840,
64301=>840, 64302=>714, 64303=>714, 64304=>714, 64305=>651, 64306=>557, 64307=>638, 64308=>682, 64309=>367, 64310=>443, 64312=>670, 64313=>354, 64314=>590, 64315=>595, 64316=>667, 64318=>704,
64320=>429, 64321=>670, 64323=>661, 64324=>660, 64326=>671, 64327=>672, 64328=>600, 64329=>840, 64330=>756, 64331=>297, 64332=>651, 64333=>595, 64334=>660, 64335=>714, 65182=>636);
$enc='';
$diff='';
$file='FreeSansBold.z';
$ctg='FreeSansBold.ctg.z';
$originalsize=91432;
?>

View File

@ -1,76 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeSansBoldOblique';
$desc=array('Ascent'=>979,'Descent'=>-309,'CapHeight'=>979,'Flags'=>96,'FontBBox'=>'[-379 -309 1283 979]','ItalicAngle'=>-12,'StemV'=>120,'MissingWidth'=>600);
$up=-111;
$ut=69;
$cw=array(
13=>333, 32=>278, 33=>333, 34=>474, 35=>556, 36=>556, 37=>889, 38=>722, 39=>238, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278,
47=>278, 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>333, 59=>333, 60=>584, 61=>584, 62=>584,
63=>611, 64=>975, 65=>722, 66=>722, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>556, 75=>722, 76=>611, 77=>833, 78=>722,
79=>778, 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>333, 92=>278, 93=>333, 94=>584,
95=>556, 96=>333, 97=>556, 98=>611, 99=>556, 100=>611, 101=>556, 102=>333, 103=>611, 104=>611, 105=>278, 106=>278, 107=>556, 108=>278, 109=>889, 110=>611,
111=>611, 112=>611, 113=>611, 114=>389, 115=>556, 116=>333, 117=>611, 118=>556, 119=>778, 120=>556, 121=>556, 122=>500, 123=>389, 124=>280, 125=>389, 126=>584,
8364=>556, 1027=>611, 8218=>278, 402=>556, 8222=>500, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>722, 381=>611, 1039=>722,
8216=>278, 8217=>278, 8220=>500, 8221=>500, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>556, 8250=>333, 339=>944, 1116=>556, 382=>500, 376=>667, 161=>333,
162=>556, 163=>556, 164=>556, 165=>556, 166=>280, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 174=>737, 175=>333, 176=>606, 177=>584, 178=>444,
179=>444, 180=>333, 181=>611, 182=>556, 183=>278, 184=>333, 185=>444, 186=>365, 187=>556, 188=>1055, 189=>1055, 190=>1055, 191=>611, 192=>722, 193=>722, 194=>722,
195=>722, 196=>722, 197=>722, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722, 209=>722, 210=>778,
211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556, 226=>556,
227=>556, 228=>556, 229=>556, 230=>889, 231=>556, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>611, 241=>611, 242=>611,
243=>611, 244=>611, 245=>611, 246=>611, 247=>584, 248=>611, 249=>611, 250=>611, 251=>611, 252=>611, 253=>556, 254=>611, 255=>556, 256=>722, 257=>556, 258=>722,
259=>556, 260=>722, 261=>556, 262=>722, 263=>556, 264=>722, 265=>556, 266=>722, 267=>556, 268=>722, 269=>556, 270=>722, 271=>722, 272=>722, 273=>611, 274=>667,
275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>611, 286=>778, 287=>611, 288=>778, 289=>611, 290=>778,
291=>611, 292=>722, 293=>611, 294=>722, 295=>611, 296=>278, 297=>278, 298=>278, 299=>278, 300=>278, 301=>278, 302=>278, 303=>268, 304=>278, 305=>278, 306=>278,
307=>278, 308=>556, 309=>278, 310=>722, 311=>556, 312=>529, 313=>611, 314=>278, 315=>611, 316=>278, 317=>611, 318=>384, 319=>611, 320=>556, 321=>611, 322=>278,
323=>722, 324=>611, 325=>722, 326=>611, 327=>722, 328=>611, 329=>611, 330=>722, 331=>611, 332=>778, 333=>611, 334=>778, 335=>611, 336=>778, 337=>611, 340=>722,
341=>389, 342=>722, 343=>389, 344=>722, 345=>389, 346=>667, 347=>556, 348=>667, 349=>556, 350=>667, 351=>556, 354=>611, 355=>333, 356=>611, 357=>404, 358=>611,
359=>333, 360=>722, 361=>611, 362=>722, 363=>611, 364=>722, 365=>611, 366=>722, 367=>611, 368=>722, 369=>611, 370=>722, 371=>611, 372=>944, 373=>778, 374=>667,
375=>556, 377=>611, 378=>500, 379=>611, 380=>500, 383=>333, 536=>667, 537=>556, 538=>611, 539=>333, 711=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333,
768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 780=>0, 783=>0, 785=>0, 787=>0, 788=>0, 884=>208,
885=>247, 890=>364, 894=>333, 900=>308, 901=>446, 902=>688, 903=>418, 904=>642, 905=>743, 906=>228, 908=>754, 910=>736, 911=>743, 912=>346, 913=>764, 914=>688,
915=>642, 916=>744, 917=>710, 918=>688, 919=>743, 920=>810, 921=>296, 922=>744, 923=>744, 924=>860, 925=>714, 926=>690, 927=>822, 928=>781, 929=>698, 931=>688,
932=>688, 933=>744, 934=>777, 935=>783, 936=>805, 937=>780, 938=>296, 939=>744, 940=>640, 941=>530, 942=>597, 943=>339, 944=>575, 945=>656, 946=>576, 947=>591,
948=>620, 949=>570, 950=>522, 951=>586, 952=>586, 953=>346, 954=>576, 955=>620, 956=>667, 957=>564, 958=>530, 959=>610, 960=>721, 961=>626, 962=>595, 963=>676,
964=>592, 965=>575, 966=>801, 967=>632, 968=>722, 969=>800, 970=>346, 971=>575, 972=>609, 973=>604, 974=>769, 1024=>666, 1025=>666, 1026=>790, 1028=>722, 1029=>667,
1030=>278, 1031=>278, 1032=>556, 1033=>1110, 1034=>1088, 1035=>790, 1037=>722, 1038=>718, 1040=>722, 1041=>722, 1042=>723, 1043=>611, 1044=>918, 1045=>666, 1046=>1054, 1047=>659,
1048=>722, 1049=>722, 1050=>720, 1051=>722, 1052=>843, 1053=>722, 1054=>778, 1055=>722, 1056=>649, 1057=>837, 1058=>611, 1059=>698, 1060=>902, 1061=>664, 1062=>730, 1063=>671,
1064=>1101, 1065=>1179, 1066=>816, 1067=>939, 1068=>639, 1069=>737, 1070=>1080, 1071=>690, 1072=>554, 1073=>611, 1074=>621, 1075=>475, 1076=>804, 1077=>552, 1078=>775, 1079=>556,
1080=>636, 1081=>636, 1082=>529, 1083=>608, 1084=>697, 1085=>636, 1086=>611, 1087=>636, 1088=>611, 1089=>554, 1090=>454, 1091=>552, 1092=>989, 1093=>554, 1094=>690, 1095=>606,
1096=>934, 1097=>987, 1098=>741, 1099=>839, 1100=>619, 1101=>575, 1102=>908, 1103=>636, 1104=>552, 1105=>552, 1106=>606, 1107=>454, 1108=>556, 1109=>556, 1110=>278, 1111=>278,
1112=>278, 1113=>900, 1114=>611, 1115=>606, 1117=>636, 1118=>556, 1119=>636, 1164=>639, 1165=>619, 1166=>649, 1167=>611, 1168=>611, 1169=>454, 1170=>611, 1171=>475, 1172=>611,
1173=>475, 1174=>1054, 1175=>775, 1176=>659, 1177=>556, 1178=>720, 1179=>529, 1180=>720, 1181=>529, 1182=>720, 1183=>529, 1184=>720, 1185=>529, 1186=>722, 1187=>636, 1188=>722,
1189=>636, 1190=>722, 1191=>636, 1192=>837, 1193=>554, 1194=>837, 1195=>554, 1196=>611, 1197=>454, 1198=>667, 1199=>556, 1200=>667, 1201=>556, 1202=>664, 1203=>554, 1204=>730,
1205=>690, 1206=>671, 1207=>606, 1208=>671, 1209=>606, 1210=>671, 1211=>606, 1212=>837, 1213=>554, 1214=>837, 1215=>554, 1216=>278, 1217=>1054, 1218=>775, 1219=>720, 1220=>529,
1223=>722, 1224=>636, 1227=>671, 1228=>606, 1232=>722, 1233=>554, 1234=>722, 1235=>554, 1236=>1000, 1237=>889, 1238=>666, 1239=>552, 1240=>837, 1241=>554, 1242=>837, 1243=>554,
1244=>1054, 1245=>775, 1246=>659, 1247=>556, 1248=>659, 1249=>556, 1250=>722, 1251=>636, 1252=>722, 1253=>636, 1254=>778, 1255=>611, 1256=>778, 1257=>611, 1258=>778, 1259=>611,
1260=>737, 1261=>575, 1262=>698, 1263=>552, 1264=>698, 1265=>552, 1266=>698, 1267=>552, 1268=>671, 1269=>606, 1272=>939, 1273=>839, 1456=>82, 1457=>347, 1458=>341, 1459=>341,
1460=>82, 1461=>211, 1462=>211, 1463=>200, 1464=>200, 1465=>82, 1467=>341, 1468=>82, 1469=>82, 1470=>516, 1471=>200, 1472=>297, 1473=>1038, 1474=>1038, 1475=>333, 1476=>82,
1488=>714, 1489=>651, 1490=>557, 1491=>638, 1492=>682, 1493=>297, 1494=>443, 1495=>682, 1496=>670, 1497=>284, 1498=>590, 1499=>595, 1500=>667, 1501=>683, 1502=>704, 1503=>297,
1504=>429, 1505=>670, 1506=>653, 1507=>661, 1508=>660, 1509=>616, 1510=>671, 1511=>672, 1512=>600, 1513=>840, 1514=>756, 1520=>554, 1521=>550, 1522=>542, 1523=>238, 1524=>474,
7936=>656, 7937=>656, 7938=>656, 7939=>656, 7940=>656, 7941=>656, 7942=>656, 7943=>656, 7944=>764, 7945=>764, 7946=>764, 7947=>764, 7948=>764, 7949=>764, 7950=>764, 7951=>764,
7952=>570, 7953=>570, 7954=>570, 7955=>570, 7956=>570, 7957=>570, 7960=>710, 7961=>710, 7962=>710, 7963=>710, 7964=>710, 7965=>710, 7968=>586, 7969=>586, 7970=>586, 7971=>586,
7972=>586, 7973=>586, 7974=>586, 7975=>586, 7976=>743, 7977=>743, 7978=>743, 7979=>743, 7980=>743, 7981=>743, 7982=>743, 7983=>743, 7984=>346, 7985=>346, 7986=>346, 7987=>346,
7988=>346, 7989=>346, 7990=>346, 7991=>346, 7992=>296, 7993=>296, 7994=>296, 7995=>296, 7996=>296, 7997=>296, 7998=>296, 7999=>296, 8000=>610, 8001=>610, 8002=>610, 8003=>610,
8004=>610, 8005=>610, 8008=>822, 8009=>822, 8010=>822, 8011=>822, 8012=>822, 8013=>822, 8016=>575, 8017=>575, 8018=>575, 8019=>575, 8020=>575, 8021=>575, 8022=>575, 8023=>575,
8025=>744, 8027=>744, 8029=>744, 8031=>744, 8032=>800, 8033=>800, 8034=>800, 8035=>800, 8036=>800, 8037=>800, 8038=>800, 8039=>800, 8040=>780, 8041=>780, 8042=>780, 8043=>780,
8044=>780, 8045=>780, 8046=>780, 8047=>780, 8048=>656, 8049=>656, 8050=>570, 8051=>570, 8052=>586, 8053=>586, 8054=>346, 8055=>346, 8056=>610, 8057=>610, 8058=>575, 8059=>575,
8060=>800, 8061=>800, 8064=>656, 8065=>656, 8066=>656, 8067=>656, 8068=>656, 8069=>656, 8070=>656, 8071=>656, 8072=>1007, 8073=>1007, 8074=>1007, 8075=>1007, 8076=>1007, 8077=>1007,
8078=>1007, 8079=>1007, 8080=>586, 8081=>586, 8082=>586, 8083=>586, 8084=>586, 8085=>586, 8086=>586, 8087=>586, 8088=>986, 8089=>986, 8090=>986, 8091=>986, 8092=>986, 8093=>986,
8094=>986, 8095=>986, 8096=>800, 8097=>800, 8098=>800, 8099=>800, 8100=>800, 8101=>800, 8102=>800, 8103=>800, 8104=>1023, 8105=>1023, 8106=>1023, 8107=>1023, 8108=>1023, 8109=>1023,
8110=>1023, 8111=>1023, 8112=>656, 8113=>656, 8114=>656, 8115=>656, 8116=>640, 8118=>656, 8119=>656, 8120=>764, 8121=>764, 8122=>764, 8123=>764, 8124=>1007, 8125=>278, 8126=>201,
8127=>147, 8128=>278, 8129=>333, 8130=>586, 8131=>586, 8132=>597, 8134=>586, 8135=>586, 8136=>710, 8137=>710, 8138=>743, 8139=>743, 8140=>986, 8141=>402, 8142=>403, 8143=>147,
8144=>346, 8145=>346, 8146=>346, 8147=>346, 8150=>346, 8151=>346, 8152=>296, 8153=>296, 8154=>296, 8155=>296, 8157=>434, 8158=>433, 8159=>333, 8160=>575, 8161=>575, 8162=>575,
8163=>575, 8164=>626, 8165=>626, 8166=>575, 8167=>575, 8168=>744, 8169=>744, 8173=>333, 8174=>351, 8175=>303, 8182=>800, 8183=>800, 8184=>822, 8185=>822, 8186=>780, 8187=>780,
8188=>1023, 8189=>333, 8190=>159, 8260=>167, 8263=>1222, 8264=>944, 8265=>944, 8362=>1049, 8706=>490, 8710=>729, 8721=>711, 8722=>584, 8730=>542, 8800=>584, 8804=>584, 8805=>584,
9674=>489, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556, 63166=>278, 63171=>333, 63196=>556, 64256=>666, 64257=>611, 64258=>611,
64259=>944, 64260=>944, 64261=>666, 64262=>889, 64285=>284, 64286=>305, 64287=>542, 64288=>653, 64289=>964, 64290=>888, 64291=>932, 64292=>845, 64293=>917, 64294=>933, 64295=>850, 64296=>1006,
64297=>584, 64298=>840, 64299=>840, 64300=>840, 64301=>840, 64302=>714, 64303=>714, 64304=>714, 64305=>651, 64306=>557, 64307=>638, 64308=>682, 64309=>367, 64310=>443, 64312=>670, 64313=>354,
64314=>590, 64315=>595, 64316=>667, 64318=>704, 64320=>429, 64321=>670, 64323=>661, 64324=>660, 64326=>671, 64327=>672, 64328=>600, 64329=>840, 64330=>756, 64331=>297, 64332=>651, 64333=>595,
64334=>660, 64335=>714);
$enc='';
$diff='';
$file='FreeSansBoldOblique.z';
$ctg='FreeSansBoldOblique.ctg.z';
$originalsize=95508;
?>

View File

@ -1,85 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeSansOblique';
$desc=array('Ascent'=>1141,'Descent'=>-419,'CapHeight'=>1141,'Flags'=>96,'FontBBox'=>'[-313 -419 1129 1141]','ItalicAngle'=>-12,'StemV'=>70,'MissingWidth'=>600);
$up=-151;
$ut=50;
$cw=array(
13=>333, 32=>278, 33=>278, 34=>355, 35=>556, 36=>556, 37=>889, 38=>667, 39=>191, 40=>333, 41=>333, 42=>389, 43=>584, 44=>278, 45=>333, 46=>278,
47=>278, 48=>556, 49=>556, 50=>556, 51=>556, 52=>556, 53=>556, 54=>556, 55=>556, 56=>556, 57=>556, 58=>278, 59=>278, 60=>584, 61=>584, 62=>584,
63=>556, 64=>1015, 65=>667, 66=>667, 67=>722, 68=>722, 69=>667, 70=>611, 71=>778, 72=>722, 73=>278, 74=>500, 75=>667, 76=>556, 77=>833, 78=>722,
79=>778, 80=>667, 81=>778, 82=>722, 83=>667, 84=>611, 85=>722, 86=>667, 87=>944, 88=>667, 89=>667, 90=>611, 91=>278, 92=>278, 93=>278, 94=>469,
95=>556, 96=>333, 97=>556, 98=>556, 99=>500, 100=>556, 101=>556, 102=>278, 103=>556, 104=>556, 105=>222, 106=>222, 107=>500, 108=>222, 109=>833, 110=>556,
111=>556, 112=>556, 113=>556, 114=>333, 115=>500, 116=>278, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, 122=>500, 123=>334, 124=>260, 125=>334, 126=>584,
8364=>556, 1027=>611, 8218=>222, 402=>556, 8222=>333, 8230=>1000, 8224=>556, 8225=>556, 710=>333, 8240=>1000, 352=>667, 8249=>333, 338=>1000, 1036=>667, 381=>611, 1039=>722,
8216=>222, 8217=>222, 8220=>333, 8221=>333, 8226=>350, 8211=>556, 8212=>1000, 732=>333, 8482=>1000, 353=>500, 8250=>333, 339=>944, 1116=>500, 382=>500, 376=>667, 161=>333,
162=>556, 163=>556, 164=>556, 165=>556, 166=>260, 167=>556, 168=>333, 169=>737, 170=>370, 171=>556, 172=>584, 173=>333, 174=>737, 175=>333, 176=>606, 177=>584,
178=>390, 179=>390, 180=>333, 181=>556, 182=>537, 183=>278, 184=>333, 185=>390, 186=>365, 187=>556, 188=>947, 189=>947, 190=>947, 191=>611, 192=>667, 193=>667,
194=>667, 195=>667, 196=>667, 197=>667, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>278, 205=>278, 206=>278, 207=>278, 208=>722, 209=>722,
210=>778, 211=>778, 212=>778, 213=>778, 214=>778, 215=>584, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>667, 222=>667, 223=>611, 224=>556, 225=>556,
226=>556, 227=>556, 228=>556, 229=>556, 230=>889, 231=>500, 232=>556, 233=>556, 234=>556, 235=>556, 236=>278, 237=>278, 238=>278, 239=>278, 240=>556, 241=>556,
242=>556, 243=>556, 244=>556, 245=>556, 246=>556, 247=>584, 248=>611, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>556, 255=>500, 256=>667, 257=>556,
258=>667, 259=>556, 260=>667, 261=>556, 262=>722, 263=>500, 264=>722, 265=>500, 266=>722, 267=>500, 268=>722, 269=>500, 270=>722, 271=>650, 272=>722, 273=>556,
274=>667, 275=>556, 276=>667, 277=>556, 278=>667, 279=>556, 280=>667, 281=>556, 282=>667, 283=>556, 284=>778, 285=>556, 286=>778, 287=>556, 288=>778, 289=>556,
290=>778, 291=>527, 292=>722, 293=>556, 294=>722, 295=>556, 296=>278, 297=>278, 298=>278, 299=>222, 300=>278, 301=>278, 302=>278, 303=>222, 304=>278, 305=>278,
306=>742, 307=>362, 308=>500, 309=>222, 310=>667, 311=>500, 312=>510, 313=>556, 314=>222, 315=>556, 316=>222, 317=>556, 318=>307, 319=>556, 320=>500, 321=>556,
322=>222, 323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>556, 330=>722, 331=>556, 332=>778, 333=>556, 334=>778, 335=>556, 336=>778, 337=>556,
340=>722, 341=>333, 342=>722, 343=>333, 344=>722, 345=>333, 346=>667, 347=>500, 348=>667, 349=>500, 350=>667, 351=>500, 354=>611, 355=>278, 356=>611, 357=>319,
358=>611, 359=>278, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>944, 373=>722,
374=>667, 375=>500, 377=>611, 378=>500, 379=>611, 380=>500, 383=>278, 461=>667, 462=>556, 463=>278, 464=>278, 465=>778, 466=>556, 467=>722, 468=>556, 469=>722,
470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556, 478=>667, 479=>556, 482=>1000, 483=>889, 486=>778, 487=>556, 488=>667, 489=>500, 490=>778,
491=>556, 492=>778, 493=>556, 496=>222, 500=>778, 501=>556, 504=>722, 505=>556, 506=>667, 507=>556, 508=>1000, 509=>889, 510=>778, 511=>611, 512=>667, 513=>556,
514=>667, 515=>556, 516=>667, 517=>556, 518=>667, 519=>556, 520=>278, 521=>278, 522=>278, 523=>278, 524=>778, 525=>556, 526=>778, 527=>556, 528=>722, 529=>333,
530=>722, 531=>333, 532=>722, 533=>556, 534=>722, 535=>556, 536=>667, 537=>500, 538=>611, 539=>278, 711=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333,
768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 774=>0, 775=>0, 776=>0, 778=>0, 779=>0, 783=>0, 785=>0, 787=>0, 788=>0, 884=>199, 885=>199,
890=>332, 894=>278, 900=>291, 901=>624, 902=>659, 903=>358, 904=>657, 905=>678, 906=>183, 908=>729, 910=>699, 911=>747, 912=>286, 913=>684, 914=>628, 915=>582,
916=>684, 917=>650, 918=>628, 919=>683, 920=>750, 921=>236, 922=>684, 923=>684, 924=>800, 925=>654, 926=>630, 927=>750, 928=>721, 929=>638, 931=>628, 932=>628,
933=>684, 934=>717, 935=>723, 936=>745, 937=>720, 938=>236, 939=>684, 940=>593, 941=>519, 942=>595, 943=>271, 944=>515, 945=>596, 946=>516, 947=>531, 948=>560,
949=>510, 950=>462, 951=>526, 952=>526, 953=>286, 954=>516, 955=>560, 956=>607, 957=>504, 958=>470, 959=>550, 960=>661, 961=>566, 962=>535, 963=>616, 964=>532,
965=>515, 966=>741, 967=>572, 968=>662, 969=>740, 970=>286, 971=>515, 972=>535, 973=>503, 974=>725, 1024=>667, 1025=>667, 1026=>766, 1028=>722, 1029=>667, 1030=>278,
1031=>278, 1032=>500, 1033=>968, 1034=>1173, 1035=>766, 1037=>731, 1038=>650, 1040=>667, 1041=>639, 1042=>667, 1043=>611, 1044=>816, 1045=>667, 1046=>897, 1047=>652, 1048=>731,
1049=>731, 1050=>664, 1051=>646, 1052=>833, 1053=>722, 1054=>778, 1055=>722, 1056=>667, 1057=>722, 1058=>611, 1059=>530, 1060=>891, 1061=>667, 1062=>722, 1063=>642, 1064=>836,
1065=>837, 1066=>866, 1067=>886, 1068=>698, 1069=>717, 1070=>1079, 1071=>691, 1072=>556, 1073=>556, 1074=>538, 1075=>430, 1076=>640, 1077=>556, 1078=>818, 1079=>495, 1080=>560,
1081=>560, 1082=>510, 1083=>556, 1084=>621, 1085=>561, 1086=>556, 1087=>560, 1088=>556, 1089=>500, 1090=>400, 1091=>500, 1092=>916, 1093=>500, 1094=>560, 1095=>497, 1096=>695,
1097=>695, 1098=>640, 1099=>734, 1100=>523, 1101=>534, 1102=>788, 1103=>564, 1104=>556, 1105=>556, 1106=>568, 1107=>430, 1108=>500, 1109=>500, 1110=>222, 1111=>278, 1112=>222,
1113=>840, 1114=>850, 1115=>568, 1117=>560, 1118=>500, 1119=>560, 1164=>698, 1165=>523, 1166=>667, 1167=>556, 1168=>611, 1169=>430, 1170=>611, 1171=>430, 1172=>611, 1173=>430,
1174=>897, 1175=>818, 1176=>652, 1177=>495, 1178=>664, 1179=>510, 1180=>664, 1181=>510, 1182=>664, 1183=>510, 1184=>664, 1185=>510, 1186=>722, 1187=>561, 1188=>722, 1189=>561,
1190=>722, 1191=>560, 1192=>722, 1193=>495, 1194=>722, 1195=>495, 1196=>611, 1197=>400, 1198=>667, 1199=>500, 1200=>667, 1201=>500, 1202=>665, 1203=>496, 1204=>722, 1205=>560,
1206=>642, 1207=>497, 1208=>642, 1209=>497, 1210=>642, 1211=>497, 1212=>722, 1213=>495, 1214=>722, 1215=>495, 1216=>278, 1217=>897, 1218=>818, 1219=>664, 1220=>510, 1223=>722,
1224=>561, 1227=>642, 1228=>497, 1232=>667, 1233=>556, 1234=>667, 1235=>556, 1236=>1000, 1237=>889, 1238=>667, 1239=>556, 1240=>722, 1241=>495, 1242=>722, 1243=>495, 1244=>897,
1245=>818, 1246=>652, 1247=>495, 1248=>652, 1249=>495, 1250=>731, 1251=>560, 1252=>731, 1253=>560, 1254=>778, 1255=>556, 1256=>780, 1257=>554, 1258=>780, 1259=>554, 1260=>717,
1261=>534, 1262=>530, 1263=>500, 1264=>530, 1265=>500, 1266=>530, 1267=>500, 1268=>642, 1269=>497, 1272=>886, 1273=>734, 1329=>722, 1330=>705, 1331=>774, 1332=>754, 1333=>722,
1334=>751, 1335=>485, 1336=>722, 1337=>782, 1338=>655, 1339=>699, 1340=>417, 1341=>853, 1342=>791, 1343=>711, 1344=>588, 1345=>663, 1346=>665, 1347=>665, 1348=>756, 1349=>623,
1350=>773, 1351=>603, 1352=>722, 1353=>648, 1354=>722, 1355=>751, 1356=>750, 1357=>722, 1358=>748, 1359=>667, 1360=>699, 1361=>623, 1362=>417, 1363=>785, 1364=>638, 1365=>778,
1366=>716, 1370=>222, 1371=>133, 1372=>325, 1373=>333, 1374=>344, 1377=>833, 1378=>556, 1379=>572, 1380=>581, 1381=>550, 1382=>588, 1383=>448, 1384=>556, 1385=>568, 1386=>582,
1387=>545, 1388=>301, 1389=>799, 1390=>556, 1391=>554, 1392=>533, 1393=>548, 1394=>552, 1395=>552, 1396=>544, 1397=>222, 1398=>544, 1399=>456, 1400=>556, 1401=>390, 1402=>833,
1403=>509, 1404=>547, 1405=>533, 1406=>610, 1407=>887, 1408=>556, 1409=>545, 1410=>352, 1411=>853, 1412=>588, 1413=>579, 1414=>690, 1415=>545, 1417=>278, 1418=>367, 1456=>70,
1457=>335, 1458=>329, 1459=>329, 1460=>70, 1461=>200, 1462=>200, 1463=>188, 1464=>188, 1465=>70, 1467=>329, 1468=>70, 1469=>70, 1470=>488, 1471=>200, 1472=>212, 1473=>0,
1474=>0, 1475=>278, 1476=>70, 1488=>640, 1489=>591, 1490=>466, 1491=>598, 1492=>622, 1493=>212, 1494=>351, 1495=>623, 1496=>608, 1497=>200, 1498=>526, 1499=>550, 1500=>600,
1501=>623, 1502=>621, 1503=>212, 1504=>378, 1505=>607, 1506=>587, 1507=>575, 1508=>568, 1509=>540, 1510=>590, 1511=>606, 1512=>547, 1513=>776, 1514=>687, 1520=>424, 1521=>412,
1522=>400, 1523=>184, 1524=>344, 7936=>596, 7937=>596, 7938=>596, 7939=>596, 7940=>596, 7941=>596, 7942=>596, 7943=>596, 7944=>684, 7945=>684, 7946=>684, 7947=>684, 7948=>684,
7949=>684, 7950=>684, 7951=>684, 7952=>510, 7953=>510, 7954=>510, 7955=>510, 7956=>510, 7957=>510, 7960=>650, 7961=>650, 7962=>650, 7963=>650, 7964=>650, 7965=>650, 7968=>526,
7969=>526, 7970=>526, 7971=>526, 7972=>526, 7973=>526, 7974=>526, 7975=>526, 7976=>683, 7977=>683, 7978=>683, 7979=>683, 7980=>683, 7981=>683, 7982=>683, 7983=>683, 7984=>286,
7985=>286, 7986=>286, 7987=>286, 7988=>286, 7989=>286, 7990=>286, 7991=>286, 7992=>236, 7993=>236, 7994=>236, 7995=>236, 7996=>236, 7997=>236, 7998=>236, 7999=>236, 8000=>550,
8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>750, 8009=>750, 8010=>750, 8011=>750, 8012=>750, 8013=>750, 8016=>515, 8017=>515, 8018=>515, 8019=>515, 8020=>515,
8021=>515, 8022=>515, 8023=>515, 8025=>684, 8027=>684, 8029=>684, 8031=>684, 8032=>740, 8033=>740, 8034=>740, 8035=>740, 8036=>740, 8037=>740, 8038=>740, 8039=>740, 8040=>720,
8041=>720, 8042=>720, 8043=>720, 8044=>720, 8045=>720, 8046=>720, 8047=>720, 8048=>596, 8049=>596, 8050=>510, 8051=>510, 8052=>526, 8053=>526, 8054=>286, 8055=>286, 8056=>550,
8057=>550, 8058=>515, 8059=>515, 8060=>740, 8061=>740, 8064=>596, 8065=>596, 8066=>596, 8067=>596, 8068=>596, 8069=>596, 8070=>596, 8071=>596, 8072=>900, 8073=>900, 8074=>900,
8075=>900, 8076=>900, 8077=>900, 8078=>900, 8079=>900, 8080=>526, 8081=>526, 8082=>526, 8083=>526, 8084=>526, 8085=>526, 8086=>526, 8087=>526, 8088=>899, 8089=>899, 8090=>899,
8091=>899, 8092=>899, 8093=>899, 8094=>899, 8095=>899, 8096=>740, 8097=>740, 8098=>740, 8099=>740, 8100=>740, 8101=>740, 8102=>740, 8103=>740, 8104=>936, 8105=>936, 8106=>936,
8107=>936, 8108=>936, 8109=>936, 8110=>936, 8111=>936, 8112=>596, 8113=>596, 8114=>596, 8115=>596, 8116=>593, 8118=>596, 8119=>596, 8120=>684, 8121=>684, 8122=>684, 8123=>684,
8124=>900, 8125=>278, 8126=>201, 8127=>147, 8128=>278, 8129=>333, 8130=>526, 8131=>526, 8132=>595, 8134=>526, 8135=>526, 8136=>650, 8137=>650, 8138=>683, 8139=>683, 8140=>899,
8141=>602, 8142=>601, 8143=>333, 8144=>286, 8145=>286, 8146=>286, 8147=>286, 8150=>286, 8151=>286, 8152=>236, 8153=>236, 8154=>236, 8155=>236, 8157=>434, 8158=>433, 8159=>333,
8160=>515, 8161=>515, 8162=>515, 8163=>515, 8164=>566, 8165=>566, 8166=>515, 8167=>515, 8168=>684, 8169=>684, 8170=>684, 8171=>684, 8172=>638, 8173=>333, 8174=>624, 8175=>303,
8178=>740, 8179=>740, 8180=>725, 8182=>740, 8183=>740, 8184=>750, 8185=>750, 8186=>720, 8187=>720, 8188=>936, 8189=>333, 8190=>159, 8260=>167, 8362=>869, 8706=>490, 8710=>712,
8721=>711, 8722=>584, 8730=>542, 8800=>584, 8804=>584, 8805=>584, 9674=>489, 63033=>556, 63034=>556, 63035=>556, 63036=>556, 63037=>556, 63038=>556, 63039=>556, 63040=>556, 63041=>556,
63166=>222, 63171=>333, 63196=>556, 64256=>556, 64257=>500, 64258=>500, 64259=>778, 64260=>778, 64261=>556, 64262=>778, 64285=>200, 64286=>305, 64287=>400, 64288=>587, 64289=>890, 64290=>848,
64291=>872, 64292=>800, 64293=>850, 64294=>873, 64295=>797, 64296=>937, 64297=>584, 64298=>776, 64299=>776, 64300=>776, 64301=>776, 64302=>640, 64303=>640, 64304=>640, 64305=>591, 64306=>466,
64307=>598, 64308=>622, 64309=>262, 64310=>351, 64312=>608, 64313=>270, 64314=>526, 64315=>550, 64316=>600, 64318=>621, 64320=>378, 64321=>607, 64323=>575, 64324=>568, 64326=>590, 64327=>606,
64328=>547, 64329=>776, 64330=>687, 64331=>212, 64332=>591, 64333=>550, 64334=>568, 64335=>640);
$enc='';
$diff='';
$file='FreeSansOblique.z';
$ctg='FreeSansOblique.ctg.z';
$originalsize=110740;
?>

View File

@ -1,233 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeSerif';
$desc=array('Ascent'=>1166,'Descent'=>-446,'CapHeight'=>1166,'Flags'=>32,'FontBBox'=>'[-672 -446 1588 1166]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
13=>333, 32=>250, 33=>333, 34=>408, 35=>500, 36=>500, 37=>833, 38=>778, 39=>180, 40=>333, 41=>333, 42=>500, 43=>564, 44=>250, 45=>333, 46=>250,
47=>278, 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>278, 59=>278, 60=>564, 61=>564, 62=>564,
63=>444, 64=>921, 65=>722, 66=>667, 67=>667, 68=>722, 69=>611, 70=>556, 71=>722, 72=>722, 73=>333, 74=>389, 75=>722, 76=>611, 77=>889, 78=>722,
79=>722, 80=>556, 81=>722, 82=>667, 83=>556, 84=>611, 85=>722, 86=>722, 87=>944, 88=>722, 89=>722, 90=>611, 91=>333, 92=>278, 93=>333, 94=>469,
95=>500, 96=>333, 97=>444, 98=>500, 99=>444, 100=>500, 101=>444, 102=>333, 103=>500, 104=>500, 105=>278, 106=>278, 107=>500, 108=>278, 109=>778, 110=>500,
111=>500, 112=>500, 113=>500, 114=>333, 115=>389, 116=>278, 117=>500, 118=>500, 119=>722, 120=>500, 121=>500, 122=>444, 123=>480, 124=>200, 125=>480, 126=>541,
8364=>500, 1027=>556, 8218=>333, 1107=>418, 8222=>444, 8230=>1000, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>556, 8249=>333, 338=>889, 1036=>722, 381=>611, 1039=>722,
8216=>333, 8217=>333, 8220=>444, 8221=>444, 8226=>350, 8211=>500, 8212=>1000, 732=>333, 8482=>980, 353=>389, 8250=>333, 339=>722, 1116=>500, 382=>444, 376=>722, 161=>333,
162=>500, 163=>500, 164=>500, 165=>500, 166=>200, 167=>500, 168=>333, 169=>760, 170=>276, 171=>500, 172=>564, 174=>760, 175=>333, 176=>400, 177=>564, 178=>300,
179=>300, 180=>333, 181=>500, 182=>453, 183=>250, 184=>333, 185=>300, 186=>310, 187=>500, 188=>750, 189=>750, 190=>750, 191=>444, 192=>722, 193=>722, 194=>722,
195=>722, 196=>722, 197=>722, 198=>889, 199=>667, 200=>611, 201=>611, 202=>611, 203=>611, 204=>333, 205=>333, 206=>333, 207=>333, 208=>722, 209=>722, 210=>722,
211=>722, 212=>722, 213=>722, 214=>722, 215=>564, 216=>722, 217=>722, 218=>722, 219=>722, 220=>722, 221=>722, 222=>556, 223=>500, 224=>444, 225=>444, 226=>444,
227=>444, 228=>444, 229=>444, 230=>667, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>500, 242=>500,
243=>500, 244=>500, 245=>500, 246=>500, 247=>564, 248=>500, 249=>500, 250=>500, 251=>500, 252=>500, 253=>500, 254=>500, 255=>500, 256=>722, 257=>444, 258=>722,
259=>444, 260=>722, 261=>444, 262=>667, 263=>444, 264=>667, 265=>444, 266=>667, 267=>444, 268=>667, 269=>444, 270=>722, 271=>600, 272=>722, 273=>500, 274=>611,
275=>444, 276=>611, 277=>444, 278=>611, 279=>444, 280=>611, 281=>444, 282=>611, 283=>444, 284=>722, 285=>500, 286=>722, 287=>500, 288=>722, 289=>500, 290=>722,
291=>500, 292=>722, 293=>500, 294=>722, 295=>548, 296=>333, 297=>278, 298=>333, 299=>278, 300=>333, 301=>278, 302=>333, 303=>278, 304=>333, 305=>278, 306=>728,
307=>480, 308=>389, 309=>278, 310=>722, 311=>500, 312=>500, 313=>611, 314=>278, 315=>611, 316=>278, 317=>611, 318=>348, 319=>832, 320=>444, 321=>611, 322=>278,
323=>722, 324=>500, 325=>722, 326=>500, 327=>722, 328=>500, 329=>556, 330=>722, 331=>500, 332=>722, 333=>500, 334=>722, 335=>500, 336=>722, 337=>500, 340=>667,
341=>333, 342=>667, 343=>333, 344=>667, 345=>333, 346=>556, 347=>389, 348=>556, 349=>389, 350=>556, 351=>389, 354=>611, 355=>278, 356=>611, 357=>278, 358=>611,
359=>278, 360=>722, 361=>500, 362=>722, 363=>500, 364=>722, 365=>500, 366=>722, 367=>500, 368=>722, 369=>500, 370=>722, 371=>500, 372=>944, 373=>722, 374=>722,
375=>500, 377=>611, 378=>444, 379=>611, 380=>444, 383=>333, 439=>1000, 450=>600, 452=>1333, 453=>1166, 454=>944, 455=>1000, 456=>889, 457=>556, 458=>1120, 459=>990,
460=>778, 461=>722, 462=>444, 463=>333, 464=>278, 465=>722, 466=>500, 467=>722, 468=>500, 469=>722, 470=>500, 471=>722, 472=>500, 473=>722, 474=>500, 475=>722,
476=>500, 477=>444, 478=>722, 479=>444, 480=>722, 481=>444, 482=>889, 483=>667, 484=>722, 485=>500, 486=>722, 487=>500, 488=>722, 489=>500, 490=>722, 491=>500,
492=>722, 493=>500, 494=>615, 495=>456, 496=>278, 497=>1333, 498=>1166, 499=>944, 500=>722, 501=>500, 504=>722, 505=>500, 506=>722, 507=>444, 508=>889, 509=>667,
510=>722, 511=>500, 512=>722, 513=>444, 514=>722, 515=>444, 516=>611, 517=>444, 518=>611, 519=>444, 520=>333, 521=>278, 522=>333, 523=>278, 524=>722, 525=>500,
526=>722, 527=>500, 528=>667, 529=>333, 530=>667, 531=>333, 532=>722, 533=>500, 534=>722, 535=>500, 536=>556, 537=>389, 538=>611, 539=>278, 542=>722, 543=>500,
550=>722, 551=>444, 552=>611, 553=>444, 554=>722, 555=>500, 556=>722, 557=>500, 558=>722, 559=>500, 560=>722, 561=>500, 562=>722, 563=>500, 601=>1000, 658=>1000,
699=>333, 700=>500, 701=>500, 702=>333, 703=>333, 711=>333, 713=>333, 714=>333, 715=>333, 718=>333, 719=>333, 724=>333, 725=>333, 726=>333, 727=>333, 728=>333,
729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0,
780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0,
796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0,
812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0,
828=>0, 829=>0, 830=>0, 831=>0, 832=>0, 833=>0, 834=>0, 835=>0, 836=>0, 837=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>332, 894=>278,
900=>186, 901=>332, 902=>722, 903=>250, 904=>611, 905=>722, 906=>333, 908=>722, 910=>696, 911=>757, 912=>267, 913=>722, 914=>667, 915=>586, 916=>660, 917=>611,
918=>611, 919=>722, 920=>726, 921=>333, 922=>722, 923=>722, 924=>889, 925=>722, 926=>628, 927=>722, 928=>722, 929=>556, 931=>627, 932=>611, 933=>696, 934=>742,
935=>722, 936=>863, 937=>757, 938=>333, 939=>656, 940=>587, 941=>426, 942=>534, 943=>267, 944=>534, 945=>587, 946=>534, 947=>480, 948=>534, 949=>426, 950=>480,
951=>534, 952=>534, 953=>267, 954=>527, 955=>480, 956=>534, 957=>480, 958=>480, 959=>534, 960=>587, 961=>534, 962=>439, 963=>534, 964=>426, 965=>534, 966=>640,
967=>480, 968=>693, 969=>693, 970=>267, 971=>534, 972=>534, 973=>534, 974=>693, 976=>534, 977=>534, 978=>696, 979=>696, 980=>696, 981=>640, 982=>587, 986=>510,
987=>426, 988=>611, 989=>470, 990=>613, 991=>613, 992=>627, 993=>526, 1024=>611, 1025=>667, 1026=>768, 1028=>667, 1029=>556, 1030=>333, 1031=>333, 1032=>389, 1033=>969,
1034=>980, 1035=>698, 1037=>722, 1038=>746, 1040=>771, 1041=>646, 1042=>667, 1043=>626, 1044=>747, 1045=>667, 1046=>997, 1047=>532, 1048=>824, 1049=>715, 1050=>750, 1051=>750,
1052=>990, 1053=>823, 1054=>771, 1055=>818, 1056=>604, 1057=>719, 1058=>667, 1059=>731, 1060=>869, 1061=>771, 1062=>823, 1063=>747, 1064=>1122, 1065=>1122, 1066=>757, 1067=>981,
1068=>646, 1069=>698, 1070=>1104, 1071=>749, 1072=>500, 1073=>552, 1074=>500, 1075=>443, 1076=>531, 1077=>438, 1078=>716, 1079=>417, 1080=>527, 1081=>527, 1082=>525, 1083=>530,
1084=>666, 1085=>565, 1086=>552, 1087=>565, 1088=>552, 1089=>438, 1090=>476, 1091=>500, 1092=>667, 1093=>500, 1094=>497, 1095=>531, 1096=>810, 1097=>810, 1098=>556, 1099=>719,
1100=>491, 1101=>445, 1102=>783, 1103=>487, 1104=>444, 1105=>438, 1106=>548, 1108=>444, 1109=>389, 1110=>278, 1111=>278, 1112=>278, 1113=>714, 1114=>706, 1115=>548, 1117=>500,
1118=>500, 1119=>500, 1120=>1056, 1121=>693, 1122=>654, 1123=>567, 1124=>969, 1125=>686, 1126=>730, 1127=>502, 1128=>1059, 1129=>765, 1130=>997, 1131=>716, 1132=>1295, 1133=>963,
1134=>532, 1135=>473, 1136=>863, 1137=>693, 1138=>726, 1139=>500, 1140=>801, 1141=>480, 1142=>801, 1143=>480, 1144=>1356, 1145=>969, 1146=>771, 1147=>500, 1148=>1056, 1149=>693,
1150=>1056, 1151=>693, 1152=>754, 1153=>497, 1154=>424, 1155=>369, 1156=>689, 1157=>445, 1158=>445, 1160=>1080, 1161=>1076, 1162=>824, 1163=>565, 1164=>556, 1165=>504, 1166=>556,
1167=>500, 1168=>556, 1169=>418, 1170=>556, 1171=>418, 1172=>573, 1173=>468, 1174=>1053, 1175=>766, 1176=>556, 1177=>389, 1178=>722, 1179=>500, 1180=>722, 1181=>500, 1182=>722,
1183=>500, 1184=>852, 1185=>671, 1186=>722, 1187=>500, 1188=>984, 1189=>660, 1190=>1014, 1191=>714, 1192=>722, 1193=>542, 1194=>667, 1195=>444, 1196=>611, 1197=>484, 1198=>722,
1199=>500, 1200=>722, 1201=>500, 1202=>722, 1203=>500, 1204=>967, 1205=>723, 1206=>722, 1207=>500, 1208=>722, 1209=>500, 1210=>722, 1211=>500, 1212=>866, 1213=>561, 1214=>866,
1215=>561, 1216=>333, 1217=>1053, 1218=>766, 1219=>722, 1220=>500, 1221=>750, 1222=>530, 1223=>722, 1224=>500, 1225=>823, 1226=>565, 1227=>722, 1228=>500, 1229=>990, 1230=>666,
1231=>500, 1232=>722, 1233=>444, 1234=>722, 1235=>444, 1236=>889, 1237=>667, 1238=>611, 1239=>444, 1240=>722, 1241=>444, 1242=>716, 1243=>444, 1244=>1053, 1245=>766, 1246=>556,
1247=>389, 1248=>556, 1249=>389, 1250=>722, 1251=>500, 1252=>722, 1253=>500, 1254=>722, 1255=>500, 1256=>722, 1257=>500, 1258=>722, 1259=>500, 1260=>667, 1261=>444, 1262=>746,
1263=>500, 1264=>746, 1265=>500, 1266=>746, 1267=>500, 1268=>722, 1269=>500, 1272=>940, 1273=>710, 1280=>556, 1281=>500, 1282=>900, 1283=>819, 1284=>605, 1285=>515, 1286=>841,
1287=>566, 1288=>974, 1289=>530, 1290=>1035, 1291=>565, 1292=>722, 1293=>444, 1294=>611, 1295=>476, 1457=>0, 1458=>0, 1460=>0, 1461=>0, 1462=>0, 1463=>0, 1464=>0,
1465=>0, 1467=>0, 1468=>0, 1472=>126, 1475=>418, 1488=>537, 1489=>537, 1490=>350, 1491=>537, 1492=>537, 1493=>350, 1494=>350, 1495=>537, 1496=>537, 1497=>350, 1498=>537,
1499=>537, 1500=>537, 1501=>537, 1502=>537, 1503=>350, 1504=>350, 1505=>537, 1506=>537, 1507=>537, 1508=>537, 1509=>537, 1510=>537, 1511=>537, 1512=>537, 1513=>537, 1514=>537,
1520=>537, 1521=>537, 1522=>537, 1523=>396, 1524=>396, 1548=>226, 1563=>250, 1567=>473, 1569=>350, 1570=>321, 1571=>249, 1572=>399, 1573=>249, 1574=>776, 1575=>249, 1576=>950,
1577=>424, 1578=>925, 1579=>924, 1580=>750, 1581=>748, 1582=>701, 1583=>397, 1584=>399, 1585=>328, 1586=>331, 1587=>951, 1588=>949, 1589=>949, 1590=>949, 1591=>557, 1592=>550,
1593=>625, 1594=>602, 1601=>801, 1602=>696, 1603=>757, 1604=>655, 1605=>549, 1606=>651, 1607=>424, 1608=>399, 1609=>776, 1610=>776, 1611=>300, 1613=>300, 1614=>300, 1615=>300,
1616=>300, 1617=>300, 1632=>297, 1633=>254, 1634=>427, 1635=>497, 1636=>440, 1637=>465, 1638=>466, 1639=>421, 1640=>459, 1641=>424, 1643=>212, 1652=>300, 1662=>926, 1670=>750,
1688=>338, 1711=>874, 1740=>776, 1748=>176, 1920=>395, 1921=>440, 1922=>511, 1923=>478, 1924=>424, 1925=>380, 1926=>394, 1927=>406, 1928=>416, 1929=>414, 1930=>412, 1931=>472,
1932=>439, 1933=>452, 1934=>414, 1935=>503, 1936=>773, 1937=>387, 1938=>419, 1939=>522, 1940=>412, 1941=>394, 1942=>388, 1943=>456, 1944=>504, 1945=>404, 1946=>393, 1947=>436,
1948=>475, 1949=>779, 1950=>775, 1951=>846, 1952=>490, 1953=>444, 1954=>414, 1955=>487, 1956=>404, 1957=>427, 1958=>32, 1959=>32, 1960=>39, 1961=>40, 1962=>39, 1963=>40,
1964=>40, 1965=>40, 1966=>40, 1967=>40, 1968=>0, 2305=>415, 2306=>398, 2307=>398, 2309=>862, 2310=>1042, 2311=>553, 2312=>553, 2313=>597, 2314=>848, 2315=>967, 2316=>828,
2317=>654, 2319=>654, 2321=>1042, 2323=>1042, 2324=>1042, 2325=>743, 2326=>798, 2327=>694, 2328=>694, 2329=>730, 2330=>734, 2331=>888, 2332=>814, 2333=>834, 2334=>734, 2335=>629,
2336=>629, 2337=>653, 2338=>609, 2339=>694, 2340=>654, 2341=>694, 2342=>588, 2343=>694, 2344=>654, 2345=>654, 2346=>615, 2347=>788, 2348=>621, 2349=>694, 2350=>694, 2351=>694,
2352=>575, 2353=>575, 2354=>787, 2355=>848, 2356=>848, 2357=>621, 2359=>615, 2360=>734, 2361=>609, 2364=>398, 2365=>569, 2366=>341, 2367=>341, 2368=>341, 2369=>0, 2370=>0,
2371=>0, 2372=>0, 2373=>415, 2375=>615, 2376=>615, 2377=>341, 2379=>341, 2380=>341, 2381=>0, 2384=>1047, 2392=>743, 2393=>798, 2394=>694, 2395=>814, 2396=>653, 2397=>609,
2398=>788, 2400=>967, 2401=>828, 2402=>0, 2403=>0, 2404=>398, 2405=>478, 2406=>455, 2407=>420, 2408=>569, 2409=>509, 2410=>702, 2411=>629, 2412=>569, 2413=>702, 2414=>609,
2415=>609, 2416=>626, 2433=>300, 2434=>400, 2435=>300, 2437=>640, 2438=>780, 2439=>520, 2440=>520, 2441=>530, 2442=>550, 2443=>610, 2444=>420, 2447=>480, 2448=>620, 2451=>620,
2452=>720, 2453=>652, 2454=>490, 2455=>490, 2456=>466, 2457=>540, 2458=>490, 2459=>540, 2460=>630, 2461=>590, 2462=>680, 2463=>510, 2464=>490, 2465=>520, 2466=>520, 2467=>470,
2468=>540, 2469=>490, 2470=>470, 2471=>490, 2472=>452, 2474=>560, 2475=>650, 2476=>480, 2477=>588, 2478=>470, 2479=>470, 2480=>480, 2482=>472, 2486=>512, 2487=>470, 2488=>470,
2489=>520, 2492=>160, 2494=>180, 2495=>180, 2496=>180, 2497=>320, 2498=>329, 2499=>195, 2500=>260, 2503=>340, 2504=>340, 2507=>740, 2508=>740, 2509=>400, 2519=>180, 2524=>540,
2525=>520, 2527=>470, 2528=>612, 2529=>420, 2530=>234, 2531=>360, 2534=>460, 2535=>420, 2536=>520, 2537=>540, 2538=>400, 2539=>400, 2540=>560, 2541=>390, 2542=>480, 2543=>420,
2544=>480, 2545=>470, 2546=>400, 2547=>470, 2548=>400, 2549=>400, 2550=>400, 2551=>120, 2552=>440, 2553=>420, 2554=>420, 2565=>744, 2566=>914, 2567=>690, 2568=>670, 2569=>596,
2570=>596, 2575=>498, 2576=>744, 2579=>596, 2580=>744, 2581=>550, 2582=>534, 2583=>618, 2584=>690, 2585=>546, 2586=>518, 2587=>592, 2588=>492, 2589=>574, 2590=>514, 2591=>526,
2592=>556, 2593=>524, 2594=>528, 2595=>574, 2596=>484, 2597=>534, 2598=>504, 2599=>534, 2600=>538, 2602=>534, 2603=>506, 2604=>562, 2605=>516, 2606=>546, 2607=>670, 2608=>538,
2610=>726, 2611=>726, 2613=>514, 2614=>546, 2616=>546, 2617=>517, 2620=>286, 2622=>172, 2623=>190, 2624=>190, 2625=>1, 2626=>1, 2631=>1, 2632=>1, 2635=>1, 2636=>1,
2637=>1, 2649=>534, 2650=>618, 2651=>492, 2652=>484, 2654=>506, 2662=>616, 2663=>480, 2664=>560, 2665=>480, 2666=>468, 2667=>492, 2668=>514, 2669=>538, 2670=>572, 2671=>560,
2672=>1, 2674=>498, 2675=>596, 2676=>900, 2947=>806, 2949=>861, 2950=>1076, 2951=>861, 2952=>595, 2953=>861, 2954=>1206, 2958=>689, 2959=>689, 2960=>753, 2962=>689, 2963=>689,
2965=>646, 2969=>646, 2970=>646, 2972=>753, 2974=>972, 2975=>753, 2979=>1261, 2980=>732, 2984=>646, 2985=>861, 2986=>658, 2990=>689, 2991=>646, 2992=>499, 2993=>560, 2994=>603,
2995=>753, 2996=>689, 2997=>714, 2999=>947, 3000=>1033, 3001=>1292, 3006=>499, 3007=>418, 3014=>603, 3015=>603, 3016=>861, 3021=>278, 3074=>330, 3075=>225, 3077=>450, 3078=>457,
3079=>397, 3080=>726, 3081=>439, 3082=>686, 3083=>824, 3084=>539, 3086=>395, 3087=>395, 3088=>423, 3090=>447, 3091=>442, 3092=>604, 3093=>370, 3094=>452, 3095=>398, 3096=>634,
3097=>445, 3098=>433, 3099=>433, 3100=>445, 3101=>390, 3102=>592, 3103=>453, 3104=>388, 3105=>440, 3106=>439, 3107=>478, 3108=>420, 3109=>420, 3110=>421, 3111=>420, 3112=>413,
3114=>424, 3115=>427, 3116=>415, 3117=>422, 3120=>396, 3122=>419, 3585=>581, 3586=>529, 3587=>596, 3588=>581, 3589=>594, 3590=>649, 3591=>494, 3592=>561, 3593=>690, 3594=>529,
3595=>596, 3596=>792, 3597=>793, 3598=>632, 3599=>632, 3600=>562, 3601=>707, 3602=>795, 3603=>891, 3604=>580, 3605=>591, 3606=>581, 3607=>642, 3608=>555, 3609=>689, 3610=>615,
3611=>615, 3612=>600, 3613=>600, 3614=>671, 3615=>671, 3616=>632, 3617=>591, 3618=>536, 3619=>511, 3620=>581, 3621=>561, 3622=>632, 3623=>559, 3624=>593, 3625=>701, 3626=>573,
3627=>643, 3628=>773, 3629=>561, 3630=>561, 3631=>506, 3632=>501, 3633=>0, 3634=>466, 3635=>467, 3636=>0, 3637=>0, 3638=>0, 3639=>0, 3640=>0, 3641=>0, 3642=>0,
3647=>667, 3648=>329, 3649=>582, 3650=>406, 3651=>406, 3652=>406, 3653=>267, 3654=>525, 3655=>0, 3656=>0, 3657=>0, 3658=>0, 3659=>0, 3660=>0, 3661=>0, 3662=>0,
3663=>707, 3664=>568, 3665=>568, 3666=>615, 3667=>639, 3668=>679, 3669=>680, 3670=>515, 3671=>767, 3672=>643, 3673=>608, 3674=>683, 3675=>1485, 4608=>583, 4609=>770, 4610=>560,
4611=>525, 4612=>525, 4613=>583, 4614=>758, 4616=>598, 4617=>787, 4618=>817, 4619=>583, 4620=>758, 4621=>612, 4622=>875, 4623=>817, 4624=>817, 4625=>1050, 4626=>1050, 4627=>817,
4628=>1050, 4629=>817, 4630=>787, 4631=>1021, 4632=>933, 4633=>1137, 4634=>1067, 4635=>980, 4636=>1065, 4637=>962, 4638=>962, 4639=>1097, 4640=>831, 4641=>1021, 4642=>851, 4643=>735,
4644=>875, 4645=>968, 4646=>817, 4647=>881, 4648=>583, 4649=>642, 4650=>583, 4651=>758, 4652=>700, 4653=>583, 4654=>700, 4655=>758, 4656=>583, 4657=>787, 4658=>787, 4659=>583,
4660=>729, 4661=>583, 4662=>583, 4663=>817, 4664=>642, 4665=>817, 4666=>846, 4667=>642, 4668=>758, 4669=>744, 4670=>642, 4671=>817, 4672=>700, 4673=>700, 4674=>700, 4675=>758,
4676=>700, 4677=>700, 4678=>729, 4680=>846, 4682=>1079, 4683=>700, 4684=>700, 4685=>1021, 4688=>700, 4689=>700, 4690=>700, 4691=>758, 4692=>700, 4693=>758, 4694=>729, 4696=>846,
4698=>1079, 4699=>700, 4700=>700, 4701=>1021, 4704=>525, 4705=>758, 4706=>758, 4707=>525, 4708=>700, 4709=>773, 4710=>525, 4711=>787, 4712=>525, 4713=>758, 4714=>758, 4715=>525,
4716=>700, 4717=>773, 4718=>525, 4719=>525, 4720=>729, 4721=>729, 4722=>729, 4723=>802, 4724=>729, 4725=>729, 4726=>758, 4727=>729, 4728=>758, 4729=>758, 4730=>758, 4731=>817,
4732=>758, 4733=>817, 4734=>758, 4735=>758, 4736=>612, 4737=>817, 4738=>817, 4739=>612, 4740=>787, 4741=>583, 4742=>875, 4744=>962, 4746=>992, 4747=>700, 4748=>758, 4749=>904,
4752=>408, 4753=>583, 4754=>525, 4755=>554, 4756=>481, 4757=>554, 4758=>642, 4759=>671, 4760=>700, 4761=>758, 4762=>729, 4763=>700, 4764=>671, 4765=>700, 4766=>758, 4767=>700,
4768=>583, 4769=>735, 4770=>822, 4771=>583, 4772=>793, 4773=>583, 4774=>583, 4775=>694, 4776=>554, 4777=>729, 4778=>773, 4779=>554, 4780=>700, 4781=>554, 4782=>554, 4784=>992,
4786=>1021, 4787=>671, 4788=>787, 4789=>904, 4792=>729, 4793=>904, 4794=>948, 4795=>729, 4796=>875, 4797=>729, 4798=>729, 4800=>1137, 4801=>1000, 4802=>1167, 4803=>758, 4804=>875,
4805=>1108, 4808=>758, 4809=>875, 4810=>700, 4811=>700, 4812=>700, 4813=>992, 4814=>758, 4816=>554, 4817=>787, 4818=>758, 4819=>583, 4820=>758, 4821=>496, 4822=>612, 4824=>525,
4825=>700, 4826=>700, 4827=>525, 4828=>685, 4829=>729, 4830=>510, 4831=>729, 4832=>962, 4833=>962, 4834=>962, 4835=>962, 4836=>962, 4837=>1021, 4838=>962, 4839=>962, 4840=>467,
4841=>525, 4842=>671, 4843=>612, 4844=>612, 4845=>671, 4846=>671, 4848=>612, 4849=>875, 4850=>817, 4851=>642, 4852=>729, 4853=>729, 4854=>758, 4855=>817, 4856=>700, 4857=>758,
4858=>715, 4859=>700, 4860=>700, 4861=>787, 4862=>758, 4863=>700, 4864=>700, 4865=>758, 4866=>715, 4867=>700, 4868=>700, 4869=>787, 4870=>758, 4871=>700, 4872=>467, 4873=>671,
4874=>671, 4875=>612, 4876=>612, 4877=>583, 4878=>525, 4880=>846, 4882=>904, 4883=>554, 4884=>700, 4885=>817, 4888=>525, 4889=>729, 4890=>729, 4891=>612, 4892=>671, 4893=>583,
4894=>525, 4896=>817, 4897=>1021, 4898=>1021, 4899=>817, 4900=>992, 4901=>758, 4902=>817, 4903=>1021, 4904=>1079, 4905=>1137, 4906=>1137, 4907=>1050, 4908=>1312, 4909=>1050, 4910=>1050,
4911=>1123, 4912=>647, 4913=>793, 4914=>822, 4915=>647, 4916=>793, 4917=>764, 4918=>583, 4919=>647, 4920=>583, 4921=>793, 4922=>822, 4923=>583, 4924=>793, 4925=>764, 4926=>583,
4927=>793, 4928=>540, 4929=>758, 4930=>583, 4931=>467, 4932=>583, 4933=>481, 4934=>612, 4936=>758, 4937=>700, 4938=>758, 4939=>700, 4940=>831, 4941=>671, 4942=>758, 4943=>700,
4944=>758, 4945=>758, 4946=>758, 4947=>817, 4948=>758, 4949=>758, 4950=>817, 4951=>758, 4952=>642, 4953=>980, 4954=>758, 4961=>233, 4962=>583, 4963=>408, 4964=>408, 4965=>525,
4966=>525, 4967=>233, 4968=>700, 4969=>671, 4970=>612, 4971=>642, 4972=>642, 4973=>642, 4974=>583, 4975=>700, 4976=>758, 4977=>642, 4978=>583, 4979=>700, 4980=>729, 4981=>720,
4982=>583, 4983=>758, 4984=>700, 4985=>904, 4986=>612, 4987=>583, 4988=>875, 7680=>722, 7681=>444, 7682=>667, 7683=>500, 7684=>667, 7685=>500, 7686=>667, 7687=>500, 7688=>667,
7689=>444, 7690=>722, 7691=>500, 7692=>722, 7693=>500, 7694=>722, 7695=>500, 7696=>722, 7697=>500, 7698=>722, 7699=>500, 7700=>611, 7701=>444, 7702=>611, 7703=>444, 7704=>611,
7705=>444, 7706=>611, 7707=>444, 7708=>611, 7709=>444, 7710=>556, 7711=>333, 7712=>722, 7713=>500, 7714=>722, 7715=>500, 7716=>722, 7717=>500, 7718=>722, 7719=>500, 7720=>722,
7721=>500, 7722=>722, 7723=>500, 7724=>333, 7725=>278, 7726=>333, 7727=>278, 7728=>722, 7729=>500, 7730=>722, 7731=>500, 7732=>722, 7733=>500, 7734=>611, 7735=>278, 7736=>611,
7737=>278, 7738=>611, 7739=>278, 7740=>611, 7741=>278, 7742=>889, 7743=>778, 7744=>889, 7745=>778, 7746=>889, 7747=>778, 7748=>722, 7749=>500, 7750=>722, 7751=>500, 7752=>722,
7753=>500, 7754=>722, 7755=>500, 7756=>722, 7757=>500, 7758=>722, 7759=>500, 7760=>722, 7761=>500, 7762=>722, 7763=>500, 7764=>556, 7765=>500, 7766=>556, 7767=>500, 7768=>667,
7769=>333, 7770=>667, 7771=>333, 7772=>667, 7773=>333, 7774=>667, 7775=>333, 7776=>556, 7777=>389, 7778=>556, 7779=>389, 7780=>556, 7781=>389, 7782=>556, 7783=>389, 7784=>556,
7785=>389, 7786=>611, 7787=>278, 7788=>611, 7789=>278, 7790=>611, 7791=>278, 7792=>611, 7793=>278, 7794=>722, 7795=>500, 7796=>722, 7797=>500, 7798=>722, 7799=>500, 7800=>722,
7801=>500, 7802=>722, 7803=>500, 7804=>722, 7805=>500, 7806=>722, 7807=>500, 7808=>944, 7809=>722, 7810=>944, 7811=>722, 7812=>944, 7813=>722, 7814=>944, 7815=>722, 7816=>944,
7817=>722, 7818=>722, 7819=>500, 7820=>722, 7821=>500, 7822=>722, 7823=>500, 7824=>611, 7825=>444, 7826=>611, 7827=>444, 7828=>611, 7829=>444, 7830=>500, 7831=>278, 7832=>722,
7833=>500, 7835=>333, 7840=>722, 7841=>444, 7842=>722, 7843=>444, 7844=>722, 7845=>444, 7846=>722, 7847=>444, 7848=>722, 7849=>444, 7850=>722, 7851=>444, 7852=>722, 7853=>444,
7854=>722, 7855=>444, 7856=>722, 7857=>444, 7858=>722, 7859=>444, 7860=>722, 7861=>444, 7862=>722, 7863=>444, 7864=>611, 7865=>444, 7866=>611, 7867=>444, 7868=>611, 7869=>444,
7870=>611, 7871=>444, 7872=>611, 7873=>444, 7874=>611, 7875=>444, 7876=>611, 7877=>444, 7878=>611, 7879=>444, 7880=>333, 7881=>278, 7882=>333, 7883=>278, 7884=>722, 7885=>500,
7886=>722, 7887=>500, 7888=>722, 7889=>500, 7890=>722, 7891=>500, 7892=>722, 7893=>500, 7894=>722, 7895=>500, 7896=>722, 7897=>500, 7908=>722, 7909=>500, 7910=>722, 7911=>500,
7922=>722, 7923=>500, 7924=>722, 7925=>500, 7926=>722, 7927=>500, 7928=>722, 7929=>500, 7936=>587, 7937=>587, 7938=>587, 7939=>587, 7940=>587, 7941=>587, 7942=>587, 7943=>587,
7944=>722, 7945=>722, 7946=>722, 7947=>722, 7948=>722, 7949=>722, 7950=>722, 7951=>722, 7952=>426, 7953=>426, 7954=>426, 7955=>426, 7956=>426, 7957=>426, 7960=>611, 7961=>611,
7962=>611, 7963=>611, 7964=>611, 7965=>611, 7968=>534, 7969=>534, 7970=>534, 7971=>534, 7972=>534, 7973=>534, 7974=>534, 7975=>534, 7976=>722, 7977=>722, 7978=>722, 7979=>722,
7980=>722, 7981=>722, 7982=>722, 7983=>722, 7984=>267, 7985=>267, 7986=>267, 7987=>267, 7988=>267, 7989=>267, 7990=>267, 7991=>267, 7992=>333, 7993=>333, 7994=>333, 7995=>333,
7996=>333, 7997=>333, 7998=>333, 7999=>333, 8000=>534, 8001=>534, 8002=>534, 8003=>534, 8004=>534, 8005=>534, 8008=>722, 8009=>722, 8010=>722, 8011=>722, 8012=>722, 8013=>722,
8016=>534, 8017=>534, 8018=>534, 8019=>534, 8020=>534, 8021=>534, 8022=>534, 8023=>534, 8025=>696, 8027=>696, 8029=>696, 8031=>696, 8032=>693, 8033=>693, 8034=>693, 8035=>693,
8036=>693, 8037=>693, 8038=>693, 8039=>693, 8040=>757, 8041=>757, 8042=>757, 8043=>757, 8044=>757, 8045=>757, 8046=>757, 8047=>757, 8048=>587, 8049=>587, 8050=>426, 8051=>426,
8052=>534, 8053=>534, 8054=>267, 8055=>267, 8056=>534, 8057=>534, 8058=>534, 8059=>534, 8060=>693, 8061=>693, 8064=>587, 8065=>587, 8066=>587, 8067=>587, 8068=>587, 8069=>587,
8070=>587, 8071=>587, 8072=>722, 8073=>722, 8074=>722, 8075=>722, 8076=>722, 8077=>722, 8078=>722, 8079=>722, 8080=>534, 8081=>534, 8082=>534, 8083=>534, 8084=>534, 8085=>534,
8086=>534, 8087=>534, 8088=>722, 8089=>722, 8090=>722, 8091=>722, 8092=>722, 8093=>722, 8094=>722, 8095=>722, 8096=>693, 8097=>693, 8098=>693, 8099=>693, 8100=>693, 8101=>693,
8102=>693, 8103=>693, 8104=>757, 8105=>757, 8106=>757, 8107=>757, 8108=>757, 8109=>757, 8110=>757, 8111=>757, 8112=>587, 8113=>587, 8114=>587, 8115=>587, 8116=>587, 8118=>587,
8119=>587, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>722, 8125=>250, 8126=>332, 8127=>500, 8128=>500, 8129=>534, 8130=>534, 8131=>534, 8132=>534, 8134=>534, 8135=>534,
8136=>611, 8137=>611, 8138=>722, 8139=>722, 8140=>722, 8141=>500, 8142=>500, 8143=>500, 8144=>267, 8145=>267, 8146=>267, 8147=>267, 8150=>267, 8151=>267, 8152=>333, 8153=>333,
8154=>333, 8155=>333, 8157=>500, 8158=>500, 8159=>500, 8160=>534, 8161=>534, 8162=>534, 8163=>534, 8164=>534, 8165=>534, 8166=>534, 8167=>534, 8168=>696, 8169=>696, 8170=>696,
8171=>696, 8172=>556, 8173=>534, 8174=>534, 8175=>500, 8178=>693, 8179=>693, 8180=>693, 8182=>693, 8183=>693, 8184=>722, 8185=>722, 8186=>757, 8187=>757, 8188=>757, 8189=>500,
8190=>500, 8219=>333, 8223=>444, 8227=>350, 8241=>1363, 8242=>247, 8243=>411, 8244=>611, 8245=>220, 8248=>469, 8251=>629, 8253=>444, 8255=>953, 8256=>953, 8257=>314, 8258=>931,
8259=>333, 8260=>167, 8261=>383, 8262=>383, 8267=>453, 8304=>300, 8305=>300, 8308=>300, 8309=>300, 8310=>300, 8311=>300, 8312=>300, 8313=>300, 8314=>1000, 8320=>300, 8321=>300,
8322=>300, 8323=>300, 8324=>300, 8325=>300, 8326=>300, 8327=>300, 8328=>300, 8329=>300, 8352=>698, 8353=>667, 8354=>667, 8355=>556, 8356=>500, 8357=>778, 8358=>722, 8359=>630,
8361=>944, 8413=>788, 8450=>667, 8451=>954, 8453=>1000, 8457=>822, 8458=>500, 8459=>969, 8460=>663, 8461=>822, 8462=>500, 8463=>500, 8464=>809, 8465=>686, 8466=>874, 8467=>417,
8469=>822, 8470=>954, 8471=>760, 8472=>987, 8473=>656, 8474=>722, 8475=>850, 8476=>795, 8477=>767, 8479=>667, 8480=>879, 8483=>722, 8484=>731, 8486=>757, 8487=>757, 8488=>663,
8490=>722, 8491=>722, 8492=>908, 8493=>614, 8494=>533, 8496=>562, 8497=>895, 8498=>556, 8499=>1080, 8501=>823, 8502=>642, 8503=>315, 8504=>532, 8505=>417, 8531=>750, 8532=>750,
8533=>750, 8534=>750, 8535=>750, 8536=>750, 8537=>750, 8538=>750, 8539=>750, 8540=>750, 8541=>750, 8542=>750, 8543=>750, 8544=>333, 8545=>630, 8546=>927, 8547=>1019, 8548=>722,
8549=>1019, 8550=>1316, 8551=>1629, 8552=>1019, 8553=>722, 8554=>1019, 8555=>1316, 8556=>611, 8557=>667, 8558=>722, 8559=>889, 8560=>278, 8561=>556, 8562=>834, 8563=>778, 8564=>500,
8565=>778, 8566=>1056, 8567=>1334, 8568=>778, 8569=>500, 8570=>778, 8571=>1056, 8572=>278, 8573=>444, 8574=>500, 8575=>778, 8592=>964, 8593=>499, 8594=>964, 8595=>499, 8596=>964,
8597=>499, 8598=>964, 8599=>964, 8600=>964, 8601=>964, 8602=>964, 8603=>964, 8604=>1009, 8605=>1009, 8606=>964, 8608=>964, 8610=>1093, 8611=>1093, 8612=>1093, 8614=>1093, 8619=>964,
8620=>964, 8621=>1151, 8622=>964, 8624=>482, 8625=>482, 8626=>482, 8627=>482, 8628=>658, 8629=>658, 8630=>1069, 8631=>1069, 8634=>939, 8635=>939, 8636=>964, 8637=>964, 8638=>499,
8639=>499, 8640=>964, 8641=>964, 8642=>499, 8643=>499, 8644=>964, 8645=>840, 8646=>964, 8647=>964, 8648=>840, 8649=>964, 8650=>840, 8651=>964, 8652=>964, 8653=>964, 8654=>964,
8655=>964, 8656=>964, 8657=>550, 8658=>964, 8659=>550, 8660=>964, 8661=>550, 8662=>1047, 8663=>1047, 8664=>1047, 8665=>1047, 8666=>964, 8667=>964, 8668=>1092, 8669=>1092, 8672=>964,
8674=>964, 8704=>587, 8705=>716, 8706=>494, 8707=>587, 8708=>587, 8709=>500, 8710=>612, 8711=>713, 8712=>536, 8713=>536, 8714=>439, 8715=>536, 8716=>536, 8717=>439, 8719=>823,
8720=>823, 8721=>713, 8722=>636, 8723=>636, 8724=>636, 8727=>471, 8728=>497, 8729=>497, 8730=>549, 8731=>549, 8732=>549, 8733=>636, 8734=>853, 8735=>509, 8736=>509, 8737=>509,
8738=>509, 8741=>320, 8742=>320, 8743=>654, 8744=>654, 8745=>654, 8746=>654, 8747=>416, 8748=>750, 8749=>1083, 8750=>722, 8751=>750, 8756=>629, 8757=>629, 8758=>250, 8759=>629,
8760=>636, 8761=>847, 8762=>636, 8763=>636, 8764=>636, 8765=>636, 8768=>264, 8769=>636, 8770=>636, 8771=>636, 8772=>636, 8773=>636, 8774=>636, 8775=>636, 8776=>636, 8777=>636,
8778=>636, 8779=>636, 8781=>636, 8782=>636, 8783=>636, 8784=>636, 8785=>636, 8786=>636, 8787=>636, 8788=>847, 8789=>847, 8790=>636, 8791=>636, 8796=>636, 8800=>636, 8801=>636,
8802=>636, 8803=>636, 8804=>636, 8805=>636, 8806=>636, 8807=>636, 8808=>636, 8809=>636, 8810=>918, 8811=>918, 8812=>410, 8813=>636, 8814=>636, 8815=>636, 8816=>636, 8817=>636,
8818=>636, 8819=>636, 8820=>636, 8821=>636, 8822=>636, 8823=>636, 8824=>636, 8825=>636, 8826=>636, 8827=>636, 8828=>636, 8829=>636, 8830=>636, 8831=>636, 8832=>636, 8833=>636,
8834=>636, 8835=>636, 8836=>636, 8837=>636, 8838=>636, 8839=>636, 8840=>636, 8841=>636, 8842=>636, 8843=>636, 8844=>654, 8845=>654, 8846=>654, 8847=>636, 8848=>636, 8849=>636,
8850=>636, 8851=>654, 8852=>654, 8853=>636, 8854=>636, 8855=>636, 8856=>636, 8857=>636, 8858=>636, 8859=>636, 8860=>636, 8861=>636, 8862=>636, 8863=>636, 8864=>636, 8865=>636,
8866=>466, 8867=>466, 8868=>712, 8869=>712, 8871=>466, 8873=>588, 8874=>710, 8875=>588, 8876=>466, 8877=>466, 8878=>588, 8879=>588, 8882=>636, 8883=>636, 8884=>636, 8885=>636,
8886=>1296, 8887=>1296, 8888=>966, 8891=>654, 8892=>654, 8893=>654, 8896=>654, 8897=>654, 8898=>654, 8899=>654, 8900=>512, 8901=>250, 8902=>471, 8903=>629, 8904=>722, 8907=>816,
8908=>816, 8909=>636, 8910=>636, 8911=>636, 8912=>636, 8913=>636, 8914=>654, 8915=>654, 8916=>654, 8917=>636, 8918=>636, 8919=>636, 8920=>1215, 8921=>1215, 8922=>636, 8923=>636,
8924=>636, 8925=>636, 8926=>636, 8927=>636, 8928=>636, 8929=>636, 8930=>636, 8931=>636, 8932=>636, 8933=>636, 8934=>636, 8935=>636, 8936=>636, 8937=>636, 8938=>636, 8939=>636,
8940=>636, 8941=>636, 8942=>250, 8943=>1000, 8944=>1000, 8945=>1000, 8960=>780, 8961=>444, 8976=>564, 8986=>805, 8992=>686, 8993=>686, 9001=>329, 9002=>329, 9031=>777, 9032=>777,
9040=>777, 9047=>777, 9054=>777, 9251=>500, 9312=>788, 9313=>788, 9314=>788, 9315=>788, 9316=>788, 9317=>788, 9318=>788, 9319=>788, 9320=>788, 9321=>788, 9472=>889, 9473=>889,
9474=>889, 9475=>889, 9476=>889, 9477=>889, 9478=>889, 9479=>889, 9480=>889, 9481=>889, 9482=>889, 9483=>889, 9484=>889, 9485=>889, 9486=>889, 9487=>889, 9488=>889, 9489=>889,
9490=>889, 9491=>889, 9492=>889, 9493=>889, 9494=>889, 9495=>889, 9496=>889, 9497=>889, 9498=>889, 9499=>889, 9500=>889, 9501=>889, 9502=>889, 9503=>889, 9504=>889, 9505=>889,
9506=>889, 9507=>889, 9508=>889, 9509=>889, 9510=>889, 9511=>889, 9512=>889, 9513=>889, 9514=>889, 9515=>889, 9516=>889, 9517=>889, 9518=>889, 9519=>889, 9520=>889, 9521=>889,
9522=>889, 9523=>889, 9524=>889, 9525=>889, 9526=>889, 9527=>889, 9528=>889, 9529=>889, 9530=>889, 9531=>889, 9532=>889, 9533=>889, 9534=>889, 9535=>889, 9536=>889, 9537=>889,
9538=>889, 9539=>889, 9540=>889, 9541=>889, 9542=>889, 9543=>889, 9544=>889, 9545=>889, 9546=>889, 9547=>889, 9552=>889, 9553=>889, 9554=>889, 9555=>889, 9556=>889, 9557=>889,
9558=>889, 9559=>889, 9560=>889, 9561=>889, 9562=>889, 9563=>889, 9564=>889, 9565=>889, 9566=>889, 9567=>889, 9568=>889, 9569=>889, 9570=>889, 9571=>889, 9572=>889, 9573=>889,
9574=>889, 9575=>889, 9576=>889, 9577=>889, 9578=>889, 9579=>889, 9580=>889, 9581=>889, 9600=>761, 9601=>761, 9602=>761, 9603=>761, 9604=>761, 9605=>761, 9606=>761, 9607=>761,
9608=>761, 9609=>761, 9610=>761, 9611=>761, 9612=>761, 9613=>761, 9614=>761, 9615=>761, 9616=>761, 9620=>761, 9621=>761, 9632=>761, 9633=>761, 9650=>892, 9654=>892, 9660=>892,
9664=>892, 9670=>788, 9674=>494, 9675=>791, 9679=>791, 9680=>791, 9681=>791, 9682=>791, 9683=>791, 9684=>791, 9685=>791, 9686=>791, 9687=>791, 9698=>761, 9699=>761, 9700=>761,
9701=>761, 9703=>761, 9704=>761, 9705=>761, 9706=>761, 9733=>816, 9734=>823, 9740=>799, 9741=>972, 9742=>719, 9744=>761, 9745=>761, 9746=>761, 9753=>760, 9754=>960, 9755=>960,
9756=>939, 9757=>500, 9758=>939, 9759=>500, 9760=>500, 9762=>805, 9763=>805, 9766=>494, 9768=>494, 9770=>805, 9772=>640, 9774=>805, 9775=>805, 9776=>600, 9777=>600, 9778=>600,
9779=>600, 9780=>600, 9781=>600, 9782=>600, 9783=>600, 9784=>805, 9785=>805, 9786=>805, 9787=>805, 9788=>805, 9789=>777, 9790=>777, 9791=>541, 9792=>541, 9793=>541, 9794=>799,
9795=>700, 9796=>583, 9797=>541, 9798=>652, 9799=>583, 9800=>805, 9801=>805, 9802=>805, 9803=>1013, 9804=>833, 9805=>1152, 9806=>1152, 9807=>1152, 9808=>704, 9809=>805, 9810=>1152,
9811=>805, 9812=>800, 9813=>800, 9814=>800, 9815=>800, 9816=>800, 9817=>800, 9818=>800, 9819=>800, 9820=>800, 9821=>800, 9822=>800, 9823=>800, 9824=>626, 9825=>694, 9826=>595,
9827=>776, 9829=>694, 9830=>595, 9833=>333, 9834=>555, 9835=>722, 9836=>722, 9837=>415, 9838=>377, 9839=>402, 9840=>776, 9841=>776, 9985=>974, 9986=>961, 9987=>974, 9988=>980,
9990=>789, 9991=>790, 9992=>791, 9993=>690, 9996=>549, 9997=>855, 9998=>911, 9999=>933, 10000=>911, 10001=>945, 10002=>974, 10003=>755, 10004=>846, 10005=>762, 10006=>761, 10007=>571,
10008=>677, 10009=>763, 10010=>760, 10011=>759, 10012=>754, 10013=>494, 10014=>552, 10015=>537, 10016=>577, 10017=>692, 10018=>786, 10019=>788, 10020=>788, 10021=>790, 10022=>793, 10023=>794,
10025=>823, 10026=>789, 10027=>841, 10028=>823, 10029=>833, 10030=>816, 10031=>831, 10032=>923, 10033=>744, 10034=>723, 10035=>749, 10036=>790, 10037=>792, 10038=>695, 10039=>776, 10040=>768,
10041=>792, 10042=>759, 10043=>707, 10044=>708, 10045=>682, 10046=>701, 10047=>826, 10048=>815, 10049=>789, 10050=>789, 10051=>707, 10052=>687, 10053=>696, 10054=>689, 10055=>786, 10056=>787,
10057=>713, 10058=>791, 10059=>785, 10061=>873, 10063=>762, 10064=>762, 10065=>759, 10066=>759, 10070=>784, 10072=>138, 10073=>277, 10074=>415, 10075=>392, 10076=>392, 10077=>668, 10078=>668,
10081=>732, 10082=>544, 10083=>544, 10084=>910, 10085=>667, 10086=>760, 10087=>760, 10102=>788, 10103=>788, 10104=>788, 10105=>788, 10106=>788, 10107=>788, 10108=>788, 10109=>788, 10110=>788,
10111=>788, 10112=>788, 10113=>788, 10114=>788, 10115=>788, 10116=>788, 10117=>788, 10118=>788, 10119=>788, 10120=>788, 10121=>788, 10122=>788, 10123=>788, 10124=>788, 10125=>788, 10126=>788,
10127=>788, 10128=>788, 10129=>788, 10130=>788, 10131=>788, 10132=>894, 10136=>748, 10137=>924, 10138=>748, 10139=>918, 10140=>927, 10141=>928, 10142=>928, 10143=>834, 10144=>873, 10145=>828,
10146=>924, 10147=>924, 10148=>917, 10149=>930, 10150=>931, 10151=>463, 10152=>883, 10153=>836, 10154=>836, 10155=>867, 10156=>867, 10157=>696, 10158=>696, 10159=>874, 10161=>874, 10162=>760,
10163=>946, 10164=>771, 10165=>865, 10166=>771, 10167=>888, 10168=>967, 10169=>888, 10170=>831, 10171=>873, 10172=>927, 10173=>970, 10174=>918, 12289=>1000, 12290=>1000, 12291=>1000, 12293=>1000,
12295=>1000, 12296=>1000, 12297=>1000, 12298=>1000, 12299=>1000, 12300=>1000, 12301=>1000, 12302=>1000, 12303=>1000, 12304=>1000, 12305=>1000, 12306=>1000, 12308=>1000, 12309=>1000, 12353=>1000, 12354=>1000,
12355=>1000, 12356=>1000, 12357=>1000, 12358=>1000, 12359=>1000, 12360=>1000, 12361=>1000, 12362=>1000, 12363=>1000, 12364=>1000, 12365=>1000, 12366=>1000, 12367=>1000, 12368=>1000, 12369=>1000, 12370=>1000,
12371=>1000, 12372=>1000, 12373=>1000, 12374=>1000, 12375=>1000, 12376=>1000, 12377=>1000, 12378=>1000, 12379=>1000, 12380=>1000, 12381=>1000, 12382=>1000, 12383=>1000, 12384=>1000, 12385=>1000, 12386=>1000,
12387=>1000, 12388=>1000, 12389=>1000, 12390=>1000, 12391=>1000, 12392=>1000, 12393=>1000, 12394=>1000, 12395=>1000, 12396=>1000, 12397=>1000, 12398=>1000, 12399=>1000, 12400=>1000, 12401=>1000, 12402=>1000,
12403=>1000, 12404=>1000, 12405=>1000, 12406=>1000, 12407=>1000, 12408=>1000, 12409=>1000, 12410=>1000, 12411=>1000, 12412=>1000, 12413=>1000, 12414=>1000, 12415=>1000, 12416=>1000, 12417=>1000, 12418=>1000,
12419=>1000, 12420=>1000, 12421=>1000, 12422=>1000, 12423=>1000, 12424=>1000, 12425=>1000, 12426=>1000, 12427=>1000, 12428=>1000, 12429=>1000, 12430=>1000, 12431=>1000, 12432=>1000, 12433=>1000, 12434=>1000,
12435=>1000, 12436=>1273, 12441=>1000, 12443=>1000, 12449=>1000, 12450=>1000, 12451=>1000, 12452=>1000, 12453=>1000, 12454=>1000, 12455=>1000, 12456=>1000, 12457=>1000, 12458=>1000, 12459=>1000, 12460=>1000,
12461=>1000, 12462=>1000, 12463=>1000, 12464=>1000, 12465=>1000, 12466=>1000, 12467=>1000, 12468=>1000, 12469=>1000, 12470=>1000, 12471=>1000, 12472=>1000, 12473=>1000, 12474=>1000, 12475=>1000, 12476=>1000,
12477=>1000, 12478=>1000, 12479=>1000, 12480=>1000, 12481=>1000, 12482=>1000, 12483=>1000, 12484=>1000, 12485=>1000, 12486=>1000, 12487=>1000, 12488=>1000, 12489=>1000, 12490=>1000, 12491=>1000, 12492=>1000,
12493=>1000, 12494=>1000, 12495=>1000, 12496=>1000, 12497=>1000, 12498=>1000, 12499=>1000, 12500=>1000, 12501=>1000, 12502=>1000, 12503=>1000, 12504=>1000, 12505=>1000, 12506=>1000, 12507=>1000, 12508=>1000,
12509=>1000, 12510=>1000, 12511=>1000, 12512=>1000, 12513=>1000, 12514=>1000, 12515=>1000, 12516=>1000, 12517=>1000, 12518=>1000, 12519=>1000, 12520=>1000, 12521=>1000, 12522=>1000, 12523=>1000, 12524=>1000,
12525=>1000, 12526=>1000, 12527=>1000, 12528=>1000, 12529=>1000, 12530=>1000, 12531=>1000, 12532=>1000, 12533=>1000, 12534=>1000, 12535=>1273, 12536=>1273, 12537=>1273, 12538=>1273, 12539=>250, 12540=>1000,
63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500, 63038=>500, 63039=>500, 63040=>500, 63041=>500, 63171=>333, 63193=>790, 63194=>790, 63195=>890, 63196=>500, 63718=>603, 63719=>1000,
63720=>790, 63721=>790, 63722=>786, 63723=>384, 63724=>384, 63725=>384, 63726=>384, 63727=>384, 63728=>384, 63729=>494, 63730=>494, 63731=>494, 63732=>494, 63733=>686, 63734=>384, 63735=>384,
63736=>384, 63737=>384, 63738=>384, 63739=>384, 63740=>494, 63741=>494, 63742=>494, 64256=>605, 64257=>556, 64258=>556, 64259=>824, 64260=>821, 64262=>677, 64298=>537, 64299=>537, 64300=>537,
64301=>537, 64302=>537, 64303=>537, 64304=>537, 64305=>537, 64306=>350, 64307=>537, 64308=>537, 64309=>350, 64310=>350, 64312=>537, 64313=>350, 64314=>537, 64315=>537, 64316=>537, 64318=>537,
64320=>350, 64321=>537, 64323=>537, 64324=>537, 64326=>537, 64327=>537, 64328=>537, 64329=>537, 64330=>537, 64331=>350, 64332=>537, 64333=>537, 64334=>537, 64342=>926, 64343=>926, 64344=>308,
64345=>308, 64378=>750, 64379=>750, 64380=>580, 64381=>580, 64394=>338, 64395=>338, 64402=>874, 64403=>874, 64404=>329, 64405=>329, 64508=>776, 64509=>700, 64510=>304, 64511=>304, 65010=>640,
65020=>837, 65136=>300, 65140=>300, 65142=>300, 65144=>300, 65146=>300, 65148=>300, 65153=>321, 65164=>301, 65165=>249, 65166=>275, 65167=>950, 65168=>950, 65169=>293, 65170=>293, 65173=>925,
65174=>925, 65175=>308, 65176=>308, 65177=>924, 65178=>924, 65179=>298, 65180=>298, 65181=>750, 65182=>750, 65183=>574, 65184=>574, 65185=>748, 65186=>750, 65187=>600, 65188=>600, 65189=>701,
65190=>775, 65191=>596, 65192=>596, 65193=>397, 65194=>397, 65195=>399, 65196=>399, 65197=>328, 65198=>328, 65199=>331, 65200=>331, 65201=>951, 65202=>951, 65203=>600, 65204=>600, 65205=>949,
65206=>949, 65207=>649, 65208=>649, 65209=>949, 65210=>949, 65211=>823, 65212=>823, 65213=>949, 65214=>949, 65215=>805, 65216=>805, 65217=>557, 65221=>550, 65225=>625, 65226=>575, 65227=>674,
65228=>550, 65229=>602, 65230=>577, 65231=>578, 65232=>577, 65233=>801, 65234=>801, 65235=>300, 65236=>300, 65237=>696, 65238=>696, 65239=>650, 65240=>650, 65241=>757, 65242=>757, 65243=>318,
65244=>318, 65245=>655, 65246=>655, 65247=>206, 65248=>206, 65249=>549, 65250=>549, 65251=>403, 65252=>403, 65253=>651, 65254=>651, 65255=>323, 65256=>323, 65257=>424, 65258=>622, 65259=>525,
65260=>476, 65261=>399, 65262=>399, 65275=>676, 65276=>724, 65533=>788);
$enc='';
$diff='';
$file='FreeSerif.z';
$ctg='FreeSerif.ctg.z';
$originalsize=621136;
?>

View File

@ -1,110 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeSerifBold';
$desc=array('Ascent'=>1173,'Descent'=>-488,'CapHeight'=>1173,'Flags'=>32,'FontBBox'=>'[-500 -488 1860 1173]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
13=>333, 32=>250, 33=>333, 34=>555, 35=>500, 36=>500, 37=>1000, 38=>833, 39=>278, 40=>333, 41=>333, 42=>500, 43=>570, 44=>250, 45=>333, 46=>250,
47=>278, 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>333, 59=>333, 60=>570, 61=>570, 62=>570,
63=>500, 64=>930, 65=>722, 66=>667, 67=>722, 68=>724, 69=>667, 70=>611, 71=>778, 72=>774, 73=>386, 74=>500, 75=>764, 76=>664, 77=>943, 78=>722,
79=>778, 80=>611, 81=>778, 82=>712, 83=>556, 84=>667, 85=>722, 86=>722, 87=>1000, 88=>722, 89=>722, 90=>667, 91=>333, 92=>278, 93=>333, 94=>581,
95=>500, 96=>333, 97=>500, 98=>556, 99=>444, 100=>556, 101=>444, 102=>333, 103=>500, 104=>556, 105=>278, 106=>333, 107=>556, 108=>278, 109=>833, 110=>556,
111=>500, 112=>556, 113=>556, 114=>444, 115=>389, 116=>333, 117=>556, 118=>500, 119=>722, 120=>500, 121=>500, 122=>444, 123=>394, 124=>220, 125=>394, 126=>520,
8364=>500, 1027=>611, 8218=>333, 1107=>458, 8222=>500, 8230=>1000, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>556, 8249=>333, 338=>1000, 1036=>778, 381=>667, 1039=>778,
8216=>333, 8217=>333, 8220=>500, 8221=>500, 8226=>350, 8211=>500, 8212=>1000, 732=>333, 8482=>1000, 353=>389, 8250=>333, 339=>722, 1116=>534, 382=>444, 376=>722, 161=>333,
162=>500, 163=>500, 164=>500, 165=>500, 166=>220, 167=>500, 168=>333, 169=>747, 170=>300, 171=>500, 172=>570, 174=>747, 175=>333, 176=>400, 177=>570, 178=>300,
179=>300, 180=>333, 181=>556, 182=>540, 183=>250, 184=>333, 185=>300, 186=>330, 187=>500, 188=>750, 189=>750, 190=>750, 191=>500, 192=>722, 193=>722, 194=>722,
195=>722, 196=>722, 197=>722, 198=>1000, 199=>722, 200=>667, 201=>667, 202=>667, 203=>667, 204=>389, 205=>389, 206=>389, 207=>389, 208=>722, 209=>722, 210=>778,
211=>778, 212=>778, 213=>778, 214=>778, 215=>570, 216=>778, 217=>722, 218=>722, 219=>722, 220=>722, 221=>722, 222=>611, 223=>556, 224=>500, 225=>500, 226=>500,
227=>500, 228=>500, 229=>500, 230=>722, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>556, 242=>500,
243=>500, 244=>500, 245=>500, 246=>500, 247=>570, 248=>500, 249=>556, 250=>556, 251=>556, 252=>556, 253=>500, 254=>556, 255=>500, 256=>722, 257=>500, 258=>722,
259=>500, 260=>722, 261=>500, 262=>722, 263=>444, 264=>722, 265=>444, 266=>722, 267=>444, 268=>722, 269=>444, 270=>722, 271=>556, 272=>722, 273=>556, 274=>667,
275=>444, 276=>667, 277=>444, 278=>667, 279=>444, 280=>667, 281=>444, 282=>667, 283=>444, 284=>778, 285=>500, 286=>778, 287=>500, 288=>778, 289=>500, 290=>778,
291=>500, 292=>778, 293=>556, 294=>778, 295=>556, 296=>389, 297=>278, 298=>389, 299=>278, 300=>389, 301=>278, 302=>389, 303=>278, 304=>389, 305=>278, 306=>882,
307=>486, 308=>500, 309=>333, 310=>778, 311=>556, 312=>534, 313=>667, 314=>278, 315=>667, 316=>278, 317=>667, 318=>278, 319=>667, 320=>528, 321=>667, 322=>278,
323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>704, 330=>722, 331=>556, 332=>778, 333=>500, 334=>778, 335=>500, 336=>778, 337=>500, 340=>722,
341=>444, 342=>722, 343=>444, 344=>722, 345=>444, 346=>556, 347=>389, 348=>556, 349=>389, 350=>556, 351=>389, 354=>667, 355=>333, 356=>667, 357=>333, 358=>667,
359=>333, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>1000, 373=>722, 374=>722,
375=>500, 377=>667, 378=>444, 379=>667, 380=>444, 383=>333, 439=>1000, 450=>570, 461=>722, 462=>500, 463=>386, 464=>278, 465=>778, 466=>500, 467=>722, 468=>556,
469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556, 477=>444, 478=>722, 479=>500, 482=>1000, 483=>722, 484=>778, 485=>500, 486=>778,
487=>500, 488=>764, 489=>556, 490=>778, 491=>500, 492=>778, 493=>500, 494=>654, 495=>508, 500=>778, 501=>500, 504=>722, 505=>556, 506=>722, 507=>500, 508=>1000,
509=>722, 510=>778, 511=>500, 512=>722, 513=>500, 514=>722, 515=>500, 516=>667, 517=>444, 518=>667, 519=>444, 520=>386, 521=>278, 522=>386, 523=>278, 524=>778,
525=>500, 526=>778, 527=>500, 528=>712, 529=>444, 530=>712, 531=>444, 532=>722, 533=>556, 534=>722, 535=>556, 536=>556, 537=>389, 538=>667, 539=>333, 542=>774,
543=>556, 550=>722, 551=>500, 552=>667, 553=>444, 554=>778, 555=>500, 556=>778, 557=>500, 558=>778, 559=>500, 560=>778, 561=>500, 562=>722, 563=>500, 658=>508,
711=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0,
778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0,
794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0,
810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0,
826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>0, 894=>333, 900=>180, 901=>330, 902=>722, 903=>250,
904=>811, 905=>958, 906=>569, 908=>811, 910=>902, 911=>811, 912=>330, 913=>722, 914=>667, 915=>611, 916=>759, 917=>667, 918=>667, 919=>778, 920=>778, 921=>389,
922=>778, 923=>722, 924=>944, 925=>722, 926=>650, 927=>778, 928=>812, 929=>611, 931=>650, 932=>667, 933=>722, 934=>868, 935=>722, 936=>868, 937=>811, 938=>0,
939=>722, 940=>605, 941=>440, 942=>605, 943=>330, 944=>550, 945=>605, 946=>550, 947=>550, 948=>550, 949=>440, 950=>495, 951=>605, 952=>550, 953=>330, 954=>608,
955=>495, 956=>605, 957=>495, 958=>495, 959=>550, 960=>605, 961=>550, 962=>440, 963=>550, 964=>440, 965=>550, 966=>660, 967=>495, 968=>715, 969=>715, 970=>330,
971=>550, 972=>550, 973=>550, 974=>715, 976=>550, 977=>550, 978=>722, 979=>722, 980=>722, 981=>660, 982=>605, 986=>510, 987=>426, 988=>611, 989=>470, 1024=>667,
1025=>667, 1026=>667, 1028=>722, 1029=>556, 1030=>389, 1031=>389, 1032=>500, 1033=>1032, 1034=>1032, 1035=>808, 1037=>778, 1038=>722, 1040=>722, 1041=>667, 1042=>667, 1043=>591,
1044=>778, 1045=>667, 1046=>1107, 1047=>564, 1048=>773, 1049=>773, 1050=>764, 1051=>778, 1052=>944, 1053=>778, 1054=>778, 1055=>774, 1056=>611, 1057=>722, 1058=>667, 1059=>722,
1060=>800, 1061=>722, 1062=>773, 1063=>778, 1064=>1113, 1065=>1112, 1066=>867, 1067=>970, 1068=>630, 1069=>722, 1070=>1114, 1071=>735, 1072=>500, 1073=>500, 1074=>502, 1075=>443,
1076=>556, 1077=>444, 1078=>750, 1079=>408, 1080=>574, 1081=>574, 1082=>534, 1083=>544, 1084=>676, 1085=>556, 1086=>500, 1087=>556, 1088=>556, 1089=>444, 1090=>494, 1091=>500,
1092=>825, 1093=>500, 1094=>556, 1095=>556, 1096=>818, 1097=>818, 1098=>612, 1099=>762, 1100=>512, 1101=>444, 1102=>790, 1103=>512, 1104=>444, 1105=>444, 1106=>556, 1108=>444,
1109=>389, 1110=>278, 1111=>278, 1112=>333, 1113=>792, 1114=>786, 1115=>556, 1117=>556, 1118=>500, 1119=>556, 1164=>611, 1165=>512, 1166=>611, 1167=>556, 1168=>611, 1169=>458,
1170=>611, 1171=>458, 1172=>611, 1173=>458, 1174=>1107, 1175=>750, 1176=>580, 1177=>389, 1178=>778, 1179=>534, 1180=>778, 1181=>534, 1182=>778, 1183=>534, 1184=>967, 1185=>633,
1186=>778, 1187=>556, 1188=>1014, 1189=>735, 1190=>778, 1191=>830, 1192=>722, 1193=>444, 1194=>722, 1195=>444, 1196=>667, 1197=>494, 1198=>722, 1199=>500, 1200=>722, 1201=>500,
1202=>722, 1203=>500, 1204=>1046, 1205=>778, 1206=>778, 1207=>556, 1208=>778, 1209=>556, 1210=>778, 1211=>556, 1212=>660, 1213=>444, 1214=>660, 1215=>444, 1216=>389, 1217=>1107,
1218=>750, 1219=>778, 1220=>534, 1223=>778, 1224=>556, 1227=>778, 1228=>556, 1232=>722, 1233=>500, 1234=>722, 1235=>500, 1236=>1000, 1237=>722, 1238=>667, 1239=>444, 1240=>660,
1241=>444, 1242=>660, 1243=>444, 1244=>1107, 1245=>750, 1246=>564, 1247=>408, 1248=>580, 1249=>389, 1250=>778, 1251=>556, 1252=>778, 1253=>556, 1254=>778, 1255=>500, 1256=>778,
1257=>500, 1258=>778, 1259=>500, 1260=>722, 1261=>444, 1262=>722, 1263=>500, 1264=>722, 1265=>500, 1266=>722, 1267=>500, 1268=>778, 1269=>556, 1272=>987, 1273=>762, 1488=>504,
1489=>504, 1490=>313, 1491=>504, 1492=>504, 1493=>285, 1494=>285, 1495=>504, 1496=>504, 1497=>285, 1498=>517, 1499=>504, 1500=>504, 1501=>504, 1502=>504, 1503=>281, 1504=>285,
1505=>504, 1506=>504, 1507=>526, 1508=>504, 1509=>491, 1510=>504, 1511=>549, 1512=>513, 1513=>538, 1514=>504, 1548=>250, 7680=>722, 7681=>500, 7682=>667, 7683=>556, 7684=>667,
7685=>556, 7686=>667, 7687=>556, 7688=>722, 7689=>444, 7690=>724, 7691=>556, 7692=>724, 7693=>556, 7694=>724, 7695=>556, 7696=>724, 7697=>556, 7698=>724, 7699=>556, 7700=>667,
7701=>444, 7702=>667, 7703=>444, 7704=>667, 7705=>444, 7706=>667, 7707=>444, 7708=>667, 7709=>444, 7710=>611, 7711=>333, 7712=>778, 7713=>500, 7714=>774, 7715=>556, 7716=>774,
7717=>556, 7718=>774, 7719=>556, 7720=>774, 7721=>556, 7722=>774, 7723=>556, 7724=>386, 7725=>278, 7726=>389, 7727=>278, 7728=>764, 7729=>556, 7730=>764, 7731=>556, 7732=>764,
7733=>556, 7734=>664, 7735=>278, 7736=>664, 7737=>278, 7738=>664, 7739=>278, 7740=>664, 7741=>278, 7742=>943, 7743=>833, 7744=>943, 7745=>833, 7746=>943, 7747=>833, 7748=>722,
7749=>556, 7750=>722, 7751=>556, 7752=>722, 7753=>556, 7754=>722, 7755=>556, 7756=>778, 7757=>500, 7758=>778, 7759=>500, 7760=>778, 7761=>500, 7762=>778, 7763=>500, 7764=>611,
7765=>556, 7766=>611, 7767=>556, 7768=>712, 7769=>444, 7770=>712, 7771=>444, 7772=>712, 7773=>444, 7774=>712, 7775=>444, 7776=>556, 7777=>389, 7778=>556, 7779=>389, 7780=>556,
7781=>389, 7782=>556, 7783=>389, 7784=>556, 7785=>389, 7786=>667, 7787=>333, 7788=>667, 7789=>333, 7790=>667, 7791=>333, 7792=>667, 7793=>333, 7794=>722, 7795=>556, 7796=>722,
7797=>556, 7798=>722, 7799=>556, 7800=>722, 7801=>556, 7802=>722, 7803=>556, 7804=>722, 7805=>500, 7806=>722, 7807=>500, 7808=>1000, 7809=>722, 7810=>1000, 7811=>722, 7812=>1000,
7813=>722, 7814=>1000, 7815=>722, 7816=>1000, 7817=>722, 7818=>722, 7819=>500, 7820=>722, 7821=>500, 7822=>722, 7823=>500, 7824=>667, 7825=>444, 7826=>667, 7827=>444, 7828=>667,
7829=>444, 7830=>556, 7831=>333, 7832=>722, 7833=>500, 7835=>333, 7840=>722, 7841=>500, 7842=>722, 7843=>500, 7844=>722, 7845=>500, 7846=>722, 7847=>500, 7848=>722, 7849=>500,
7850=>722, 7851=>500, 7852=>722, 7853=>500, 7854=>722, 7855=>500, 7856=>722, 7857=>500, 7858=>722, 7859=>500, 7860=>722, 7861=>500, 7862=>722, 7863=>500, 7864=>667, 7865=>444,
7866=>667, 7867=>444, 7868=>667, 7869=>444, 7870=>667, 7871=>444, 7872=>667, 7873=>444, 7874=>667, 7875=>444, 7876=>667, 7877=>444, 7878=>667, 7879=>444, 7880=>386, 7881=>278,
7882=>386, 7883=>278, 7884=>778, 7885=>500, 7886=>778, 7887=>500, 7888=>778, 7889=>500, 7890=>778, 7891=>500, 7892=>778, 7893=>500, 7894=>778, 7895=>500, 7896=>778, 7897=>500,
7908=>722, 7909=>556, 7910=>722, 7911=>556, 7922=>722, 7923=>500, 7924=>722, 7925=>500, 7926=>722, 7927=>500, 7928=>722, 7929=>500, 7936=>605, 7937=>605, 7938=>605, 7939=>605,
7940=>605, 7941=>605, 7942=>605, 7943=>605, 7944=>722, 7945=>722, 7946=>722, 7947=>722, 7948=>722, 7949=>722, 7950=>722, 7951=>722, 7952=>440, 7953=>440, 7954=>440, 7955=>440,
7956=>440, 7957=>440, 7960=>667, 7961=>667, 7962=>667, 7963=>667, 7964=>667, 7965=>667, 7968=>605, 7969=>605, 7970=>605, 7971=>605, 7972=>605, 7973=>605, 7974=>605, 7975=>605,
7976=>778, 7977=>778, 7978=>778, 7979=>778, 7980=>778, 7981=>778, 7982=>778, 7983=>778, 7984=>330, 7985=>330, 7986=>330, 7987=>330, 7988=>330, 7989=>330, 7990=>330, 7991=>330,
7992=>389, 7993=>389, 7994=>389, 7995=>389, 7996=>389, 7997=>389, 7998=>389, 7999=>389, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>778, 8009=>778,
8010=>778, 8011=>778, 8012=>778, 8013=>778, 8016=>550, 8017=>550, 8018=>550, 8019=>550, 8020=>550, 8021=>550, 8022=>550, 8023=>550, 8025=>722, 8027=>722, 8029=>722, 8031=>722,
8032=>715, 8033=>715, 8034=>715, 8035=>715, 8036=>715, 8037=>715, 8038=>715, 8039=>715, 8040=>811, 8041=>811, 8042=>811, 8043=>811, 8044=>811, 8045=>811, 8046=>811, 8047=>811,
8048=>605, 8049=>605, 8050=>440, 8051=>440, 8052=>605, 8053=>605, 8054=>330, 8055=>330, 8056=>550, 8057=>550, 8058=>550, 8059=>550, 8060=>715, 8061=>715, 8064=>605, 8065=>605,
8066=>605, 8067=>605, 8068=>605, 8069=>605, 8070=>605, 8071=>605, 8072=>722, 8073=>722, 8074=>722, 8075=>722, 8076=>722, 8077=>722, 8078=>722, 8079=>722, 8080=>605, 8081=>605,
8082=>605, 8083=>605, 8084=>605, 8085=>605, 8086=>605, 8087=>605, 8088=>778, 8089=>778, 8090=>778, 8091=>778, 8092=>778, 8093=>778, 8094=>778, 8095=>778, 8096=>715, 8097=>715,
8098=>715, 8099=>715, 8100=>715, 8101=>715, 8102=>715, 8103=>715, 8104=>811, 8105=>811, 8106=>811, 8107=>811, 8108=>811, 8109=>811, 8110=>811, 8111=>811, 8112=>605, 8113=>605,
8114=>605, 8115=>605, 8116=>605, 8118=>605, 8119=>605, 8120=>722, 8121=>722, 8122=>722, 8123=>722, 8124=>722, 8125=>500, 8126=>0, 8127=>500, 8128=>500, 8129=>550, 8130=>605,
8131=>605, 8132=>605, 8134=>605, 8135=>605, 8136=>667, 8137=>667, 8138=>778, 8139=>778, 8140=>778, 8141=>500, 8142=>500, 8143=>500, 8144=>330, 8145=>330, 8146=>330, 8147=>330,
8150=>330, 8151=>330, 8152=>389, 8153=>389, 8154=>389, 8155=>389, 8157=>500, 8158=>500, 8159=>500, 8160=>550, 8161=>550, 8162=>550, 8163=>550, 8164=>550, 8165=>550, 8166=>550,
8167=>550, 8168=>722, 8169=>722, 8170=>722, 8171=>722, 8172=>611, 8173=>550, 8174=>550, 8175=>500, 8178=>715, 8179=>715, 8180=>715, 8182=>715, 8183=>715, 8184=>778, 8185=>778,
8186=>811, 8187=>811, 8188=>811, 8189=>500, 8190=>500, 8208=>333, 8209=>333, 8219=>333, 8223=>500, 8227=>560, 8228=>250, 8229=>500, 8241=>1820, 8248=>469, 8251=>727, 8252=>666,
8253=>695, 8255=>953, 8256=>953, 8257=>338, 8258=>931, 8259=>333, 8260=>167, 8261=>332, 8262=>332, 8263=>1000, 8264=>833, 8265=>833, 8267=>540, 8308=>300, 8309=>1000, 8321=>300,
8322=>300, 8323=>300, 8324=>300, 8352=>710, 8353=>722, 8354=>783, 8355=>611, 8356=>500, 8357=>833, 8358=>722, 8359=>700, 8361=>1000, 8451=>1122, 8470=>954, 8471=>747, 8479=>722,
8483=>722, 8486=>811, 8487=>811, 8490=>764, 8491=>722, 8494=>551, 8498=>611, 8543=>750, 8544=>386, 8545=>772, 8546=>1158, 8547=>1108, 8548=>722, 8549=>1108, 8550=>1494, 8551=>1880,
8552=>1108, 8553=>722, 8554=>1108, 8555=>1494, 8556=>664, 8557=>722, 8558=>724, 8559=>943, 8560=>278, 8561=>556, 8562=>834, 8563=>778, 8564=>500, 8565=>778, 8566=>1056, 8567=>1334,
8568=>778, 8569=>500, 8570=>778, 8571=>1056, 8572=>278, 8573=>444, 8574=>556, 8575=>833, 8706=>494, 8710=>612, 8721=>713, 8722=>570, 8730=>549, 8734=>752, 8800=>570, 8804=>570,
8805=>570, 9674=>494, 12353=>1000, 12354=>1000, 12355=>1000, 12356=>1000, 12357=>1000, 12358=>1000, 12359=>1000, 12360=>1000, 12361=>1000, 12362=>1000, 12363=>1000, 12364=>1000, 12365=>1000, 12366=>1000,
12367=>1000, 12368=>1000, 12369=>1000, 12370=>1000, 12371=>1000, 12372=>1000, 12373=>1000, 12374=>1000, 12375=>1000, 12376=>1000, 12377=>1000, 12378=>1000, 12379=>1000, 12380=>1000, 12381=>1000, 12382=>1000,
12383=>1000, 12384=>1000, 12385=>1000, 12386=>1000, 12387=>1000, 12388=>1000, 12389=>1000, 12390=>1000, 12391=>1000, 12392=>1000, 12393=>1000, 12394=>1000, 12395=>1000, 12396=>1000, 12397=>1000, 12398=>1000,
12399=>1000, 12400=>1000, 12401=>1000, 12402=>1000, 12403=>1000, 12404=>1000, 12405=>1000, 12406=>1000, 12407=>1000, 12408=>1000, 12409=>1000, 12410=>1000, 12411=>1000, 12412=>1000, 12413=>1000, 12414=>1000,
12415=>1000, 12416=>1000, 12417=>1000, 12418=>1000, 12419=>1000, 12420=>1000, 12421=>1000, 12422=>1000, 12423=>1000, 12424=>1000, 12425=>1000, 12426=>1000, 12427=>1000, 12428=>1000, 12429=>1000, 12430=>1000,
12431=>1000, 12432=>1000, 12433=>1000, 12434=>1000, 12435=>1000, 12449=>1000, 12450=>1000, 12451=>1000, 12452=>1000, 12453=>1000, 12454=>1000, 12455=>1000, 12456=>1000, 12457=>1000, 12458=>1000, 12459=>1000,
12460=>1000, 12461=>1000, 12462=>1000, 12463=>1000, 12464=>1000, 12465=>1000, 12466=>1000, 12467=>1000, 12468=>1000, 12469=>1000, 12470=>1000, 12471=>1000, 12472=>1000, 12473=>1000, 12474=>1000, 12475=>1000,
12476=>1000, 12477=>1000, 12478=>1000, 12479=>1000, 12480=>1000, 12481=>1000, 12482=>1000, 12483=>1000, 12484=>1000, 12485=>1000, 12486=>1000, 12487=>1000, 12488=>1000, 12489=>1000, 12490=>1000, 12491=>1000,
12492=>1000, 12493=>1000, 12494=>1000, 12495=>1000, 12496=>1000, 12497=>1000, 12498=>1000, 12499=>1000, 12500=>1000, 12501=>1000, 12502=>1000, 12503=>1000, 12504=>1000, 12505=>1000, 12506=>1000, 12507=>1000,
12508=>1000, 12509=>1000, 12510=>1000, 12511=>1000, 12512=>1000, 12513=>1000, 12514=>1000, 12515=>1000, 12516=>1000, 12517=>1000, 12518=>1000, 12519=>1000, 12520=>1000, 12521=>1000, 12522=>1000, 12523=>1000,
12524=>1000, 12525=>1000, 12526=>1000, 12527=>1000, 12528=>1000, 12529=>1000, 12530=>1000, 12531=>1000, 12532=>1000, 12533=>1000, 12534=>1000, 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500,
63038=>500, 63039=>500, 63040=>500, 63041=>500, 63171=>333, 63196=>500, 64256=>556, 64257=>556, 64258=>556, 64259=>834, 64260=>834, 64262=>723);
$enc='';
$diff='';
$file='FreeSerifBold.z';
$ctg='FreeSerifBold.ctg.z';
$originalsize=198992;
?>

View File

@ -1,97 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeSerifBoldItalic';
$desc=array('Ascent'=>1171,'Descent'=>-488,'CapHeight'=>1171,'Flags'=>96,'FontBBox'=>'[-575 -488 1577 1171]','ItalicAngle'=>-16.3,'StemV'=>120,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
13=>333, 32=>250, 33=>389, 34=>555, 35=>500, 36=>500, 37=>833, 38=>778, 39=>278, 40=>333, 41=>333, 42=>500, 43=>570, 44=>250, 45=>333, 46=>250,
47=>278, 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>333, 59=>333, 60=>570, 61=>570, 62=>570,
63=>500, 64=>832, 65=>667, 66=>667, 67=>667, 68=>744, 69=>670, 70=>656, 71=>722, 72=>778, 73=>393, 74=>500, 75=>664, 76=>609, 77=>896, 78=>722,
79=>722, 80=>614, 81=>722, 82=>672, 83=>556, 84=>611, 85=>722, 86=>667, 87=>889, 88=>667, 89=>611, 90=>611, 91=>333, 92=>278, 93=>333, 94=>570,
95=>500, 96=>333, 97=>500, 98=>500, 99=>444, 100=>500, 101=>444, 102=>333, 103=>500, 104=>556, 105=>278, 106=>278, 107=>500, 108=>278, 109=>778, 110=>556,
111=>500, 112=>500, 113=>500, 114=>389, 115=>389, 116=>278, 117=>556, 118=>444, 119=>667, 120=>500, 121=>444, 122=>389, 123=>348, 124=>220, 125=>348, 126=>570,
8364=>500, 1027=>667, 8218=>333, 1107=>458, 8222=>500, 8230=>1000, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>556, 8249=>333, 338=>944, 1036=>778, 381=>611, 1039=>869,
8216=>333, 8217=>333, 8220=>500, 8221=>500, 8226=>350, 8211=>500, 8212=>1000, 732=>333, 8482=>1000, 353=>389, 8250=>333, 339=>722, 1116=>558, 382=>389, 376=>611, 161=>389,
162=>500, 163=>500, 164=>500, 165=>500, 166=>220, 167=>500, 168=>333, 169=>747, 170=>266, 171=>500, 172=>606, 174=>747, 175=>333, 176=>400, 177=>570, 178=>300,
179=>300, 180=>333, 181=>576, 182=>500, 183=>250, 184=>333, 185=>300, 186=>300, 187=>500, 188=>750, 189=>750, 190=>750, 191=>500, 192=>667, 193=>667, 194=>667,
195=>667, 196=>667, 197=>667, 198=>944, 199=>667, 200=>667, 201=>667, 202=>667, 203=>667, 204=>389, 205=>389, 206=>389, 207=>389, 208=>722, 209=>722, 210=>722,
211=>722, 212=>722, 213=>722, 214=>722, 215=>570, 216=>722, 217=>722, 218=>722, 219=>722, 220=>722, 221=>611, 222=>611, 223=>500, 224=>500, 225=>500, 226=>500,
227=>500, 228=>500, 229=>500, 230=>722, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>556, 242=>500,
243=>500, 244=>500, 245=>500, 246=>500, 247=>570, 248=>500, 249=>556, 250=>556, 251=>556, 252=>556, 253=>444, 254=>500, 255=>444, 256=>667, 257=>500, 258=>667,
259=>500, 260=>667, 261=>500, 262=>667, 263=>444, 264=>667, 265=>444, 266=>667, 267=>444, 268=>667, 269=>444, 270=>722, 271=>644, 272=>722, 273=>500, 274=>667,
275=>444, 276=>667, 277=>444, 278=>667, 279=>444, 280=>667, 281=>444, 282=>667, 283=>444, 284=>722, 285=>500, 286=>722, 287=>500, 288=>722, 289=>500, 290=>722,
291=>500, 292=>778, 293=>556, 294=>778, 295=>556, 296=>389, 297=>278, 298=>389, 299=>278, 300=>389, 301=>278, 302=>389, 303=>278, 304=>389, 305=>278, 306=>826,
307=>547, 308=>500, 309=>278, 310=>667, 311=>500, 312=>534, 313=>611, 314=>278, 315=>611, 316=>278, 317=>638, 318=>424, 319=>611, 320=>528, 321=>611, 322=>278,
323=>722, 324=>556, 325=>722, 326=>556, 327=>722, 328=>556, 329=>556, 330=>722, 331=>556, 332=>722, 333=>500, 334=>722, 335=>500, 336=>722, 337=>500, 340=>667,
341=>389, 342=>667, 343=>389, 344=>667, 345=>389, 346=>556, 347=>389, 348=>556, 349=>389, 350=>556, 351=>389, 354=>611, 355=>278, 356=>611, 357=>278, 358=>611,
359=>278, 360=>722, 361=>556, 362=>722, 363=>556, 364=>722, 365=>556, 366=>722, 367=>556, 368=>722, 369=>556, 370=>722, 371=>556, 372=>889, 373=>667, 374=>611,
375=>444, 377=>611, 378=>389, 379=>611, 380=>389, 383=>333, 439=>1000, 452=>1355, 453=>1133, 454=>889, 455=>1109, 456=>887, 457=>556, 458=>1222, 459=>1000, 460=>834,
461=>667, 462=>500, 463=>393, 464=>278, 465=>722, 466=>500, 467=>722, 468=>556, 469=>722, 470=>556, 471=>722, 472=>556, 473=>722, 474=>556, 475=>722, 476=>556,
477=>444, 478=>667, 479=>500, 480=>667, 481=>500, 482=>944, 483=>722, 484=>722, 485=>500, 486=>722, 487=>500, 488=>664, 489=>500, 490=>722, 491=>500, 492=>722,
493=>500, 494=>614, 495=>461, 496=>278, 497=>1355, 498=>1133, 499=>889, 500=>722, 501=>500, 504=>722, 505=>556, 506=>667, 507=>500, 508=>944, 509=>722, 510=>722,
511=>500, 512=>667, 513=>500, 514=>667, 515=>500, 516=>670, 517=>444, 518=>670, 519=>444, 520=>393, 521=>278, 522=>393, 523=>278, 524=>722, 525=>500, 526=>722,
527=>500, 528=>672, 529=>389, 530=>672, 531=>389, 532=>722, 533=>556, 534=>722, 535=>556, 536=>556, 537=>389, 538=>611, 539=>278, 542=>778, 543=>556, 550=>667,
551=>500, 552=>670, 553=>444, 554=>722, 555=>500, 556=>722, 557=>500, 558=>722, 559=>500, 560=>722, 561=>500, 562=>611, 563=>444, 658=>461, 711=>333, 714=>333,
715=>333, 728=>333, 729=>333, 730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0,
778=>0, 779=>0, 780=>0, 781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>-113, 790=>0, 791=>0, 792=>0, 793=>0,
794=>0, 795=>0, 796=>0, 797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0,
810=>0, 811=>0, 812=>0, 813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0,
826=>0, 827=>0, 828=>0, 829=>0, 830=>0, 831=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>0, 894=>333, 900=>180, 901=>330, 902=>667, 903=>250,
904=>667, 905=>778, 906=>389, 908=>722, 910=>722, 911=>741, 912=>330, 913=>667, 914=>667, 915=>637, 916=>740, 917=>667, 918=>611, 919=>778, 920=>722, 921=>389,
922=>677, 923=>667, 924=>889, 925=>722, 926=>650, 927=>722, 928=>778, 929=>611, 931=>730, 932=>621, 933=>722, 934=>748, 935=>667, 936=>868, 937=>741, 938=>389,
939=>722, 940=>605, 941=>440, 942=>605, 943=>330, 944=>550, 945=>605, 946=>550, 947=>550, 948=>550, 949=>440, 950=>495, 951=>605, 952=>550, 953=>330, 954=>608,
955=>495, 956=>605, 957=>495, 958=>495, 959=>550, 960=>605, 961=>550, 962=>440, 963=>550, 964=>440, 965=>550, 966=>660, 967=>495, 968=>715, 969=>715, 970=>330,
971=>550, 972=>550, 973=>550, 974=>715, 976=>550, 977=>550, 978=>722, 979=>722, 980=>722, 981=>660, 982=>605, 1024=>667, 1025=>667, 1026=>611, 1028=>722, 1029=>556,
1030=>389, 1031=>389, 1032=>500, 1033=>778, 1034=>778, 1035=>611, 1037=>870, 1038=>722, 1040=>667, 1041=>733, 1042=>667, 1043=>656, 1044=>864, 1045=>667, 1046=>1107, 1047=>564,
1048=>870, 1049=>870, 1050=>775, 1051=>855, 1052=>889, 1053=>778, 1054=>722, 1055=>869, 1056=>611, 1057=>667, 1058=>611, 1059=>766, 1060=>833, 1061=>667, 1062=>869, 1063=>823,
1064=>1208, 1065=>1209, 1066=>796, 1067=>1060, 1068=>712, 1069=>732, 1070=>1195, 1071=>821, 1072=>500, 1073=>500, 1074=>444, 1075=>389, 1076=>534, 1077=>444, 1078=>1051, 1079=>408,
1080=>556, 1081=>556, 1082=>534, 1083=>637, 1084=>859, 1085=>560, 1086=>500, 1087=>556, 1088=>500, 1089=>444, 1090=>778, 1091=>444, 1092=>764, 1093=>500, 1094=>556, 1095=>556,
1096=>806, 1097=>806, 1098=>591, 1099=>744, 1100=>444, 1101=>451, 1102=>765, 1103=>594, 1104=>444, 1105=>444, 1106=>494, 1108=>444, 1109=>389, 1110=>278, 1111=>278, 1112=>278,
1113=>637, 1114=>556, 1115=>494, 1117=>556, 1118=>444, 1119=>556, 1164=>712, 1165=>444, 1166=>611, 1167=>500, 1168=>611, 1169=>458, 1170=>667, 1171=>458, 1172=>667, 1173=>458,
1174=>1107, 1175=>1051, 1176=>657, 1177=>439, 1178=>772, 1179=>534, 1180=>772, 1181=>534, 1182=>772, 1183=>534, 1184=>772, 1185=>534, 1186=>778, 1187=>560, 1188=>778, 1189=>560,
1190=>869, 1191=>556, 1192=>667, 1193=>444, 1194=>667, 1195=>444, 1196=>611, 1197=>494, 1198=>611, 1199=>444, 1200=>611, 1201=>444, 1202=>667, 1203=>500, 1204=>869, 1205=>556,
1206=>823, 1207=>556, 1208=>823, 1209=>556, 1210=>823, 1211=>556, 1212=>620, 1213=>444, 1214=>620, 1215=>444, 1216=>389, 1217=>1107, 1218=>1051, 1219=>772, 1220=>534, 1223=>778,
1224=>560, 1227=>823, 1228=>556, 1232=>667, 1233=>500, 1234=>667, 1235=>500, 1236=>944, 1237=>722, 1238=>667, 1239=>444, 1240=>620, 1241=>444, 1242=>620, 1243=>444, 1244=>1107,
1245=>1051, 1246=>564, 1247=>408, 1248=>657, 1249=>439, 1250=>870, 1251=>556, 1252=>870, 1253=>556, 1254=>722, 1255=>500, 1256=>722, 1257=>500, 1258=>722, 1259=>500, 1260=>732,
1261=>451, 1262=>766, 1263=>444, 1264=>766, 1265=>444, 1266=>766, 1267=>444, 1268=>823, 1269=>556, 1272=>1060, 1273=>744, 1488=>504, 1489=>504, 1490=>313, 1491=>504, 1492=>504,
1493=>285, 1494=>285, 1495=>504, 1496=>504, 1497=>285, 1498=>517, 1499=>504, 1500=>504, 1501=>504, 1502=>504, 1503=>281, 1504=>285, 1505=>504, 1506=>504, 1507=>526, 1508=>504,
1509=>491, 1510=>504, 1511=>549, 1512=>513, 1513=>538, 1514=>504, 7680=>667, 7681=>500, 7682=>667, 7683=>500, 7684=>667, 7685=>500, 7686=>667, 7687=>500, 7688=>667, 7689=>444,
7690=>744, 7691=>500, 7692=>744, 7693=>500, 7694=>744, 7695=>500, 7696=>744, 7697=>500, 7698=>744, 7699=>500, 7700=>667, 7701=>444, 7702=>667, 7703=>444, 7704=>670, 7705=>444,
7706=>670, 7707=>444, 7708=>670, 7709=>444, 7710=>656, 7711=>333, 7712=>722, 7713=>500, 7714=>778, 7715=>556, 7716=>778, 7717=>556, 7718=>778, 7719=>556, 7720=>778, 7721=>556,
7722=>778, 7723=>556, 7724=>393, 7725=>278, 7726=>389, 7727=>278, 7728=>664, 7729=>500, 7730=>664, 7731=>500, 7732=>664, 7733=>500, 7734=>609, 7735=>278, 7736=>609, 7737=>278,
7738=>609, 7739=>278, 7740=>609, 7741=>278, 7742=>896, 7743=>778, 7744=>896, 7745=>778, 7746=>896, 7747=>778, 7748=>722, 7749=>556, 7750=>722, 7751=>556, 7752=>722, 7753=>556,
7754=>722, 7755=>556, 7756=>722, 7757=>500, 7758=>722, 7759=>500, 7760=>722, 7761=>500, 7762=>722, 7763=>500, 7764=>614, 7765=>500, 7766=>614, 7767=>500, 7768=>672, 7769=>389,
7770=>672, 7771=>389, 7772=>672, 7773=>389, 7774=>672, 7775=>389, 7776=>556, 7777=>389, 7778=>556, 7779=>389, 7780=>556, 7781=>389, 7782=>556, 7783=>389, 7784=>556, 7785=>389,
7786=>611, 7787=>278, 7788=>611, 7789=>278, 7790=>611, 7791=>278, 7792=>611, 7793=>278, 7794=>722, 7795=>556, 7796=>722, 7797=>556, 7798=>722, 7799=>556, 7800=>722, 7801=>556,
7802=>722, 7803=>556, 7804=>667, 7805=>444, 7806=>667, 7807=>444, 7808=>889, 7809=>667, 7810=>889, 7811=>667, 7812=>889, 7813=>667, 7814=>889, 7815=>667, 7816=>889, 7817=>667,
7818=>667, 7819=>500, 7820=>667, 7821=>500, 7822=>611, 7823=>444, 7824=>611, 7825=>389, 7826=>611, 7827=>389, 7828=>611, 7829=>389, 7830=>556, 7831=>278, 7832=>667, 7833=>444,
7835=>333, 7840=>667, 7841=>500, 7842=>667, 7843=>500, 7844=>667, 7845=>500, 7846=>667, 7847=>500, 7848=>667, 7849=>500, 7850=>667, 7851=>500, 7852=>667, 7853=>500, 7854=>667,
7855=>500, 7856=>667, 7857=>500, 7858=>667, 7859=>500, 7860=>667, 7861=>500, 7862=>667, 7863=>500, 7864=>670, 7865=>444, 7866=>670, 7867=>444, 7868=>670, 7869=>444, 7870=>667,
7871=>444, 7872=>667, 7873=>444, 7874=>667, 7875=>444, 7876=>667, 7877=>444, 7878=>670, 7879=>444, 7880=>393, 7881=>278, 7882=>393, 7883=>278, 7884=>722, 7885=>500, 7886=>722,
7887=>500, 7888=>722, 7889=>500, 7890=>722, 7891=>500, 7892=>722, 7893=>500, 7894=>722, 7895=>500, 7896=>722, 7897=>500, 7908=>722, 7909=>556, 7910=>722, 7911=>556, 7922=>611,
7923=>444, 7924=>611, 7925=>444, 7926=>611, 7927=>444, 7928=>611, 7929=>444, 7936=>605, 7937=>605, 7938=>605, 7939=>605, 7940=>605, 7941=>605, 7942=>605, 7943=>605, 7944=>667,
7945=>667, 7946=>667, 7947=>667, 7948=>667, 7949=>667, 7950=>667, 7951=>667, 7952=>440, 7953=>440, 7954=>440, 7955=>440, 7956=>440, 7957=>440, 7960=>667, 7961=>667, 7962=>667,
7963=>667, 7964=>667, 7965=>667, 7968=>605, 7969=>605, 7970=>605, 7971=>605, 7972=>605, 7973=>605, 7974=>605, 7975=>605, 7976=>778, 7977=>778, 7978=>778, 7979=>778, 7980=>778,
7981=>778, 7982=>778, 7983=>778, 7984=>330, 7985=>330, 7986=>330, 7987=>330, 7988=>330, 7989=>330, 7990=>330, 7991=>330, 7992=>389, 7993=>389, 7994=>389, 7995=>389, 7996=>389,
7997=>389, 7998=>389, 7999=>389, 8000=>550, 8001=>550, 8002=>550, 8003=>550, 8004=>550, 8005=>550, 8008=>722, 8009=>722, 8010=>722, 8011=>722, 8012=>722, 8013=>722, 8016=>550,
8017=>550, 8018=>550, 8019=>550, 8020=>550, 8021=>550, 8022=>550, 8023=>550, 8025=>722, 8027=>722, 8029=>722, 8031=>722, 8032=>715, 8033=>715, 8034=>715, 8035=>715, 8036=>715,
8037=>715, 8038=>715, 8039=>715, 8040=>741, 8041=>741, 8042=>741, 8043=>741, 8044=>741, 8045=>741, 8046=>741, 8047=>741, 8048=>605, 8049=>605, 8050=>440, 8051=>440, 8052=>605,
8053=>605, 8054=>330, 8055=>330, 8056=>550, 8057=>550, 8058=>550, 8059=>550, 8060=>715, 8061=>715, 8064=>605, 8065=>605, 8066=>605, 8067=>605, 8068=>605, 8069=>605, 8070=>605,
8071=>605, 8072=>667, 8073=>667, 8074=>667, 8075=>667, 8076=>667, 8077=>667, 8078=>667, 8079=>667, 8080=>605, 8081=>605, 8082=>605, 8083=>605, 8084=>605, 8085=>605, 8086=>605,
8087=>605, 8088=>778, 8089=>778, 8090=>778, 8091=>778, 8092=>778, 8093=>778, 8094=>778, 8095=>778, 8096=>715, 8097=>715, 8098=>715, 8099=>715, 8100=>715, 8101=>715, 8102=>715,
8103=>715, 8104=>741, 8105=>741, 8106=>741, 8107=>741, 8108=>741, 8109=>741, 8110=>741, 8111=>741, 8112=>605, 8113=>605, 8114=>605, 8115=>605, 8116=>605, 8118=>605, 8119=>605,
8120=>667, 8121=>667, 8122=>667, 8123=>667, 8124=>667, 8125=>250, 8126=>0, 8127=>500, 8128=>500, 8129=>550, 8130=>605, 8131=>605, 8132=>605, 8134=>605, 8135=>605, 8136=>667,
8137=>667, 8138=>778, 8139=>778, 8140=>778, 8141=>500, 8142=>500, 8143=>500, 8144=>330, 8145=>330, 8146=>330, 8147=>330, 8150=>330, 8151=>330, 8152=>389, 8153=>389, 8154=>389,
8155=>389, 8157=>500, 8158=>500, 8159=>500, 8160=>550, 8161=>550, 8162=>550, 8163=>550, 8164=>550, 8165=>550, 8166=>550, 8167=>550, 8168=>722, 8169=>722, 8170=>722, 8171=>722,
8172=>611, 8173=>550, 8174=>550, 8175=>500, 8178=>715, 8179=>715, 8180=>715, 8182=>715, 8183=>715, 8184=>722, 8185=>722, 8186=>741, 8187=>741, 8188=>741, 8189=>500, 8190=>500,
8219=>333, 8223=>500, 8227=>560, 8241=>1618, 8251=>727, 8253=>733, 8255=>953, 8256=>953, 8257=>338, 8258=>931, 8259=>333, 8260=>167, 8261=>332, 8262=>332, 8352=>667, 8353=>667,
8354=>667, 8355=>667, 8356=>500, 8357=>778, 8358=>722, 8359=>705, 8361=>889, 8470=>981, 8471=>747, 8483=>667, 8494=>551, 8498=>667, 8706=>494, 8710=>612, 8721=>713, 8722=>606,
8730=>549, 8734=>752, 8800=>570, 8804=>570, 8805=>570, 9674=>494, 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500, 63038=>500, 63039=>500, 63040=>500, 63041=>500, 63166=>278,
63171=>333, 63196=>500, 64256=>583, 64257=>556, 64258=>556, 64259=>824, 64260=>821, 64262=>662);
$enc='';
$diff='';
$file='FreeSerifBoldItalic.z';
$ctg='FreeSerifBoldItalic.ctg.z';
$originalsize=126456;
?>

View File

@ -1,104 +0,0 @@
<?php
$type='TrueTypeUnicode';
$name='FreeSerifItalic';
$desc=array('Ascent'=>1122,'Descent'=>-438,'CapHeight'=>1122,'Flags'=>96,'FontBBox'=>'[-674 -438 1558 1122]','ItalicAngle'=>-16.5,'StemV'=>70,'MissingWidth'=>600);
$up=-100;
$ut=50;
$cw=array(
13=>333, 32=>250, 33=>333, 34=>420, 35=>500, 36=>500, 37=>833, 38=>778, 39=>214, 40=>333, 41=>333, 42=>500, 43=>675, 44=>250, 45=>333, 46=>250,
47=>278, 48=>500, 49=>500, 50=>500, 51=>500, 52=>500, 53=>500, 54=>500, 55=>500, 56=>500, 57=>500, 58=>333, 59=>333, 60=>675, 61=>675, 62=>675,
63=>500, 64=>920, 65=>611, 66=>611, 67=>667, 68=>722, 69=>604, 70=>611, 71=>722, 72=>722, 73=>339, 74=>444, 75=>652, 76=>556, 77=>828, 78=>657,
79=>722, 80=>603, 81=>722, 82=>616, 83=>500, 84=>556, 85=>722, 86=>611, 87=>833, 88=>611, 89=>556, 90=>556, 91=>389, 92=>278, 93=>389, 94=>422,
95=>500, 96=>333, 97=>500, 98=>500, 99=>444, 100=>500, 101=>444, 102=>278, 103=>500, 104=>500, 105=>278, 106=>278, 107=>444, 108=>278, 109=>722, 110=>500,
111=>500, 112=>500, 113=>500, 114=>389, 115=>389, 116=>278, 117=>500, 118=>444, 119=>667, 120=>444, 121=>444, 122=>389, 123=>400, 124=>275, 125=>400, 126=>541,
8364=>500, 1027=>556, 8218=>333, 1107=>454, 8222=>556, 8230=>889, 8224=>500, 8225=>500, 710=>333, 8240=>1000, 352=>500, 8249=>333, 338=>944, 1036=>743, 381=>556, 1039=>814,
8216=>333, 8217=>333, 8220=>556, 8221=>556, 8226=>350, 8211=>500, 8212=>889, 732=>333, 8482=>980, 353=>389, 8250=>333, 339=>667, 1116=>491, 382=>389, 376=>556, 161=>389,
162=>500, 163=>500, 164=>500, 165=>500, 166=>275, 167=>500, 168=>333, 169=>760, 170=>276, 171=>500, 172=>675, 174=>760, 175=>333, 176=>400, 177=>675, 178=>300,
179=>300, 180=>333, 181=>500, 182=>523, 183=>250, 184=>333, 185=>300, 186=>310, 187=>500, 188=>750, 189=>750, 190=>750, 191=>500, 192=>611, 193=>611, 194=>611,
195=>611, 196=>611, 197=>611, 198=>889, 199=>667, 200=>611, 201=>611, 202=>611, 203=>611, 204=>333, 205=>333, 206=>333, 207=>333, 208=>722, 209=>667, 210=>722,
211=>722, 212=>722, 213=>722, 214=>722, 215=>675, 216=>722, 217=>722, 218=>722, 219=>722, 220=>722, 221=>556, 222=>611, 223=>500, 224=>500, 225=>500, 226=>500,
227=>500, 228=>500, 229=>500, 230=>667, 231=>444, 232=>444, 233=>444, 234=>444, 235=>444, 236=>278, 237=>278, 238=>278, 239=>278, 240=>500, 241=>500, 242=>500,
243=>500, 244=>500, 245=>500, 246=>500, 247=>675, 248=>500, 249=>500, 250=>500, 251=>500, 252=>500, 253=>444, 254=>500, 255=>444, 256=>611, 257=>500, 258=>611,
259=>500, 260=>611, 261=>500, 262=>667, 263=>444, 264=>667, 265=>444, 266=>667, 267=>444, 268=>667, 269=>444, 270=>722, 271=>500, 272=>722, 273=>500, 274=>611,
275=>444, 276=>611, 277=>444, 278=>611, 279=>444, 280=>611, 281=>444, 282=>611, 283=>444, 284=>722, 285=>500, 286=>722, 287=>500, 288=>722, 289=>500, 290=>722,
291=>500, 292=>722, 293=>500, 294=>722, 295=>500, 296=>333, 297=>278, 298=>333, 299=>278, 300=>333, 301=>278, 302=>333, 303=>278, 304=>333, 305=>278, 306=>707,
307=>553, 308=>444, 309=>278, 310=>667, 311=>444, 312=>491, 313=>556, 314=>278, 315=>556, 316=>278, 317=>556, 318=>278, 319=>556, 320=>528, 321=>556, 322=>278,
323=>667, 324=>500, 325=>667, 326=>500, 327=>667, 328=>500, 329=>500, 330=>667, 331=>500, 332=>722, 333=>500, 334=>722, 335=>500, 336=>722, 337=>500, 340=>611,
341=>389, 342=>611, 343=>389, 344=>611, 345=>389, 346=>500, 347=>389, 348=>500, 349=>389, 350=>500, 351=>389, 354=>556, 355=>278, 356=>556, 357=>278, 358=>556,
359=>278, 360=>722, 361=>500, 362=>722, 363=>500, 364=>722, 365=>500, 366=>722, 367=>500, 368=>722, 369=>500, 370=>722, 371=>500, 372=>833, 373=>667, 374=>556,
375=>444, 377=>556, 378=>389, 379=>556, 380=>389, 383=>278, 399=>1000, 439=>1000, 450=>600, 461=>611, 462=>500, 463=>339, 464=>278, 465=>722, 466=>500, 467=>722,
468=>500, 469=>722, 470=>500, 471=>722, 472=>500, 473=>722, 474=>500, 475=>722, 476=>500, 477=>444, 478=>611, 479=>500, 482=>889, 483=>667, 484=>722, 485=>500,
486=>722, 487=>500, 488=>652, 489=>444, 490=>722, 491=>500, 492=>722, 493=>500, 494=>615, 495=>389, 506=>611, 507=>500, 508=>889, 509=>667, 510=>722, 511=>500,
512=>611, 513=>500, 514=>611, 515=>500, 516=>604, 517=>444, 518=>604, 519=>444, 520=>339, 521=>278, 522=>339, 523=>278, 524=>722, 525=>500, 526=>722, 527=>500,
528=>616, 529=>389, 530=>616, 531=>389, 532=>722, 533=>500, 534=>722, 535=>500, 536=>500, 537=>389, 538=>556, 539=>278, 542=>722, 543=>500, 550=>611, 551=>500,
552=>604, 553=>444, 554=>722, 555=>500, 556=>722, 557=>500, 558=>722, 559=>500, 560=>722, 561=>500, 562=>556, 563=>444, 658=>389, 711=>333, 728=>333, 729=>333,
730=>333, 731=>333, 733=>333, 768=>0, 769=>0, 770=>0, 771=>0, 772=>0, 773=>0, 774=>0, 775=>0, 776=>0, 777=>0, 778=>0, 779=>0, 780=>0,
781=>0, 782=>0, 783=>0, 784=>0, 785=>0, 786=>0, 787=>0, 788=>0, 789=>0, 790=>0, 791=>0, 792=>0, 793=>0, 794=>0, 795=>0, 796=>0,
797=>0, 798=>0, 799=>0, 800=>0, 801=>0, 802=>0, 803=>0, 804=>0, 805=>0, 806=>0, 807=>0, 808=>0, 809=>0, 810=>0, 811=>0, 812=>0,
813=>0, 814=>0, 815=>0, 816=>0, 817=>0, 818=>0, 819=>0, 820=>0, 821=>0, 822=>0, 823=>0, 824=>0, 825=>0, 826=>0, 827=>0, 828=>0,
829=>0, 830=>0, 831=>0, 864=>0, 865=>0, 884=>199, 885=>199, 890=>332, 894=>333, 900=>186, 901=>332, 902=>641, 903=>250, 904=>611, 905=>742, 906=>333,
908=>682, 910=>676, 911=>744, 912=>267, 913=>641, 914=>581, 915=>611, 916=>660, 917=>611, 918=>606, 919=>742, 920=>672, 921=>333, 922=>667, 923=>641, 924=>833,
925=>657, 926=>678, 927=>682, 928=>749, 929=>611, 931=>657, 932=>596, 933=>676, 934=>722, 935=>611, 936=>863, 937=>744, 938=>333, 939=>696, 940=>587, 941=>426,
942=>534, 943=>267, 944=>534, 945=>587, 946=>534, 947=>480, 948=>534, 949=>426, 950=>480, 951=>534, 952=>534, 953=>267, 954=>534, 955=>480, 956=>534, 957=>480,
958=>480, 959=>534, 960=>587, 961=>534, 962=>426, 963=>534, 964=>426, 965=>534, 966=>640, 967=>480, 968=>693, 969=>693, 970=>267, 971=>534, 972=>534, 973=>534,
974=>693, 976=>534, 977=>534, 978=>676, 979=>676, 980=>676, 981=>640, 982=>587, 983=>534, 986=>426, 987=>426, 988=>611, 989=>470, 1024=>611, 1025=>611, 1026=>556,
1028=>667, 1029=>500, 1030=>333, 1031=>333, 1032=>444, 1033=>722, 1034=>722, 1035=>556, 1037=>814, 1038=>730, 1040=>611, 1041=>682, 1042=>611, 1043=>640, 1044=>747, 1045=>611,
1046=>1073, 1047=>508, 1048=>814, 1049=>814, 1050=>729, 1051=>755, 1052=>833, 1053=>722, 1054=>722, 1055=>805, 1056=>611, 1057=>667, 1058=>556, 1059=>730, 1060=>801, 1061=>611,
1062=>807, 1063=>772, 1064=>1063, 1065=>1065, 1066=>731, 1067=>961, 1068=>645, 1069=>671, 1070=>1191, 1071=>746, 1072=>500, 1073=>500, 1074=>429, 1075=>354, 1076=>552, 1077=>444,
1078=>1058, 1079=>363, 1080=>500, 1081=>500, 1082=>491, 1083=>538, 1084=>731, 1085=>500, 1086=>500, 1087=>500, 1088=>500, 1089=>444, 1090=>722, 1091=>444, 1092=>771, 1093=>444,
1094=>500, 1095=>500, 1096=>750, 1097=>750, 1098=>492, 1099=>684, 1100=>420, 1101=>457, 1102=>700, 1103=>560, 1104=>444, 1105=>444, 1106=>484, 1108=>444, 1109=>389, 1110=>278,
1111=>278, 1112=>278, 1113=>538, 1114=>500, 1115=>500, 1117=>500, 1118=>444, 1119=>500, 1164=>645, 1165=>420, 1166=>611, 1167=>500, 1168=>556, 1169=>418, 1170=>556, 1171=>452,
1172=>556, 1173=>452, 1174=>1073, 1175=>1058, 1176=>575, 1177=>391, 1178=>743, 1179=>491, 1180=>743, 1181=>491, 1182=>743, 1183=>491, 1184=>743, 1185=>491, 1186=>722, 1187=>500,
1188=>722, 1189=>500, 1190=>814, 1191=>500, 1192=>667, 1193=>444, 1194=>667, 1195=>444, 1196=>556, 1197=>484, 1198=>556, 1199=>556, 1200=>556, 1201=>556, 1202=>611, 1203=>444,
1204=>807, 1205=>500, 1206=>772, 1207=>500, 1208=>772, 1209=>500, 1210=>772, 1211=>500, 1212=>722, 1213=>444, 1214=>722, 1215=>444, 1216=>333, 1217=>1073, 1218=>1058, 1219=>743,
1220=>491, 1223=>722, 1224=>500, 1227=>772, 1228=>500, 1232=>611, 1233=>500, 1234=>611, 1235=>500, 1236=>889, 1237=>667, 1238=>611, 1239=>444, 1240=>722, 1241=>444, 1242=>444,
1243=>444, 1244=>1073, 1245=>1058, 1246=>575, 1247=>391, 1248=>575, 1249=>391, 1250=>814, 1251=>500, 1252=>814, 1253=>500, 1254=>722, 1255=>500, 1256=>722, 1257=>500, 1258=>722,
1259=>500, 1260=>671, 1261=>457, 1262=>730, 1263=>444, 1264=>730, 1265=>444, 1266=>730, 1267=>444, 1268=>772, 1269=>500, 1272=>1021, 1273=>684, 1457=>0, 1458=>0, 1460=>0,
1461=>0, 1462=>0, 1463=>0, 1464=>0, 1465=>0, 1467=>0, 1472=>126, 1475=>418, 1488=>537, 1489=>537, 1490=>350, 1491=>537, 1492=>537, 1493=>350, 1494=>350, 1495=>537,
1496=>537, 1497=>350, 1498=>537, 1499=>537, 1500=>537, 1501=>537, 1502=>537, 1503=>350, 1504=>350, 1505=>537, 1506=>537, 1507=>537, 1508=>537, 1509=>537, 1510=>537, 1511=>537,
1512=>537, 1513=>537, 1514=>537, 1520=>537, 1521=>537, 1522=>537, 1523=>396, 1524=>396, 3585=>606, 3586=>550, 3587=>622, 3588=>604, 3589=>619, 3590=>674, 3591=>461, 3592=>499,
3593=>613, 3594=>550, 3595=>622, 3596=>817, 3597=>817, 3598=>656, 3599=>656, 3600=>463, 3601=>717, 3602=>820, 3603=>826, 3604=>604, 3605=>616, 3606=>602, 3607=>650, 3608=>514,
3609=>626, 3610=>626, 3611=>626, 3612=>647, 3613=>647, 3614=>676, 3615=>676, 3616=>643, 3617=>616, 3618=>574, 3619=>480, 3620=>602, 3621=>579, 3622=>643, 3623=>483, 3624=>606,
3625=>654, 3626=>579, 3627=>654, 3628=>676, 3629=>584, 3630=>584, 3631=>524, 3632=>444, 3633=>0, 3634=>408, 3635=>408, 3636=>0, 3637=>0, 3638=>0, 3639=>0, 3640=>0,
3641=>0, 3642=>0, 3647=>712, 3648=>320, 3649=>586, 3650=>321, 3651=>317, 3652=>321, 3653=>290, 3654=>599, 3655=>0, 3656=>0, 3657=>0, 3658=>0, 3659=>0, 3660=>0,
3661=>0, 3662=>0, 3663=>780, 3664=>672, 3665=>672, 3666=>672, 3667=>672, 3668=>672, 3669=>672, 3670=>672, 3671=>672, 3672=>672, 3673=>672, 3674=>694, 3675=>938, 7680=>611,
7681=>500, 7682=>611, 7683=>500, 7684=>611, 7685=>500, 7686=>611, 7687=>500, 7688=>667, 7689=>444, 7690=>722, 7691=>500, 7692=>722, 7693=>500, 7694=>722, 7695=>500, 7696=>722,
7697=>500, 7698=>722, 7699=>500, 7700=>611, 7701=>444, 7702=>611, 7703=>444, 7704=>604, 7705=>444, 7706=>604, 7707=>444, 7708=>604, 7709=>444, 7710=>611, 7711=>278, 7712=>722,
7713=>500, 7714=>722, 7715=>500, 7716=>722, 7717=>500, 7718=>722, 7719=>500, 7720=>722, 7721=>500, 7722=>722, 7723=>500, 7724=>339, 7725=>278, 7726=>333, 7727=>278, 7728=>652,
7729=>444, 7730=>652, 7731=>444, 7732=>652, 7733=>444, 7734=>556, 7735=>278, 7736=>556, 7737=>278, 7738=>556, 7739=>278, 7740=>556, 7741=>278, 7742=>828, 7743=>722, 7744=>828,
7745=>722, 7746=>828, 7747=>722, 7748=>657, 7749=>500, 7750=>657, 7751=>500, 7752=>657, 7753=>500, 7754=>657, 7755=>500, 7756=>722, 7757=>500, 7758=>722, 7759=>500, 7760=>722,
7761=>500, 7762=>722, 7763=>500, 7764=>603, 7765=>500, 7766=>603, 7767=>500, 7768=>616, 7769=>389, 7770=>616, 7771=>389, 7772=>616, 7773=>389, 7774=>616, 7775=>389, 7776=>500,
7777=>389, 7778=>500, 7779=>389, 7780=>500, 7781=>389, 7782=>500, 7783=>389, 7784=>500, 7785=>389, 7786=>556, 7787=>278, 7788=>556, 7789=>278, 7790=>556, 7791=>278, 7792=>556,
7793=>278, 7794=>722, 7795=>500, 7796=>722, 7797=>500, 7798=>722, 7799=>500, 7800=>722, 7801=>500, 7802=>722, 7803=>500, 7804=>611, 7805=>444, 7806=>611, 7807=>444, 7808=>833,
7809=>667, 7810=>833, 7811=>667, 7812=>833, 7813=>667, 7814=>833, 7815=>667, 7816=>833, 7817=>667, 7818=>611, 7819=>444, 7820=>611, 7821=>444, 7822=>556, 7823=>444, 7824=>556,
7825=>389, 7826=>556, 7827=>389, 7828=>556, 7829=>389, 7830=>500, 7831=>278, 7832=>667, 7833=>444, 7835=>278, 7840=>611, 7841=>500, 7842=>611, 7843=>500, 7844=>611, 7845=>500,
7846=>611, 7847=>500, 7848=>611, 7849=>500, 7850=>611, 7851=>500, 7852=>611, 7853=>500, 7854=>611, 7855=>500, 7856=>611, 7857=>500, 7858=>611, 7859=>500, 7860=>611, 7861=>500,
7862=>611, 7863=>500, 7864=>604, 7865=>444, 7866=>604, 7867=>444, 7868=>604, 7869=>444, 7870=>611, 7871=>444, 7872=>611, 7873=>444, 7874=>611, 7875=>444, 7876=>611, 7877=>444,
7878=>604, 7879=>444, 7880=>339, 7881=>278, 7882=>339, 7883=>278, 7884=>722, 7885=>500, 7886=>722, 7887=>500, 7888=>722, 7889=>500, 7890=>722, 7891=>500, 7892=>722, 7893=>500,
7894=>722, 7895=>500, 7896=>722, 7897=>500, 7908=>722, 7909=>500, 7910=>722, 7911=>500, 7922=>556, 7923=>444, 7924=>556, 7925=>444, 7926=>556, 7927=>444, 7928=>556, 7929=>444,
7936=>587, 7937=>587, 7938=>587, 7939=>587, 7940=>587, 7941=>587, 7942=>587, 7943=>587, 7944=>641, 7945=>641, 7946=>641, 7947=>641, 7948=>641, 7949=>641, 7950=>641, 7951=>641,
7952=>426, 7953=>426, 7954=>426, 7955=>426, 7956=>426, 7957=>426, 7960=>611, 7961=>611, 7962=>611, 7963=>611, 7964=>611, 7965=>611, 7968=>534, 7969=>534, 7970=>534, 7971=>534,
7972=>534, 7973=>534, 7974=>534, 7975=>534, 7976=>742, 7977=>742, 7978=>742, 7979=>742, 7980=>742, 7981=>742, 7982=>742, 7983=>742, 7984=>267, 7985=>267, 7986=>267, 7987=>267,
7988=>267, 7989=>267, 7990=>267, 7991=>267, 7992=>333, 7993=>333, 7994=>333, 7995=>333, 7996=>333, 7997=>333, 7998=>333, 7999=>333, 8000=>534, 8001=>534, 8002=>534, 8003=>534,
8004=>534, 8005=>534, 8008=>682, 8009=>682, 8010=>682, 8011=>682, 8012=>682, 8013=>682, 8016=>534, 8017=>534, 8018=>534, 8019=>534, 8020=>534, 8021=>534, 8022=>534, 8023=>534,
8025=>676, 8027=>676, 8029=>676, 8031=>676, 8032=>693, 8033=>693, 8034=>693, 8035=>693, 8036=>693, 8037=>693, 8038=>693, 8039=>693, 8040=>744, 8041=>744, 8042=>744, 8043=>744,
8044=>744, 8045=>744, 8046=>744, 8047=>744, 8048=>587, 8049=>587, 8050=>426, 8051=>426, 8052=>534, 8053=>534, 8054=>267, 8055=>267, 8056=>534, 8057=>534, 8058=>534, 8059=>534,
8060=>693, 8061=>693, 8064=>587, 8065=>587, 8066=>587, 8067=>587, 8068=>587, 8069=>587, 8070=>587, 8071=>587, 8072=>641, 8073=>641, 8074=>641, 8075=>641, 8076=>641, 8077=>641,
8078=>641, 8079=>641, 8080=>534, 8081=>534, 8082=>534, 8083=>534, 8084=>534, 8085=>534, 8086=>534, 8087=>534, 8088=>742, 8089=>742, 8090=>742, 8091=>742, 8092=>742, 8093=>742,
8094=>742, 8095=>742, 8096=>693, 8097=>693, 8098=>693, 8099=>693, 8100=>693, 8101=>693, 8102=>693, 8103=>693, 8104=>744, 8105=>744, 8106=>744, 8107=>744, 8108=>744, 8109=>744,
8110=>744, 8111=>744, 8112=>587, 8113=>587, 8114=>587, 8115=>587, 8116=>587, 8118=>587, 8119=>587, 8120=>641, 8121=>641, 8122=>641, 8123=>641, 8124=>641, 8125=>250, 8126=>332,
8127=>500, 8128=>500, 8129=>534, 8130=>534, 8131=>534, 8132=>534, 8134=>534, 8135=>534, 8136=>611, 8137=>611, 8138=>742, 8139=>742, 8140=>742, 8141=>500, 8142=>500, 8143=>500,
8144=>267, 8145=>267, 8146=>267, 8147=>267, 8150=>267, 8151=>267, 8152=>333, 8153=>333, 8154=>333, 8155=>333, 8157=>500, 8158=>500, 8159=>500, 8160=>534, 8161=>534, 8162=>534,
8163=>534, 8164=>534, 8165=>534, 8166=>534, 8167=>534, 8168=>676, 8169=>676, 8170=>676, 8171=>676, 8172=>611, 8173=>534, 8174=>534, 8175=>500, 8178=>693, 8179=>693, 8180=>693,
8182=>693, 8183=>693, 8184=>682, 8185=>682, 8186=>744, 8187=>744, 8188=>744, 8189=>500, 8190=>500, 8219=>333, 8223=>556, 8227=>350, 8228=>250, 8229=>500, 8241=>1601, 8248=>469,
8251=>629, 8252=>666, 8253=>500, 8255=>953, 8256=>953, 8257=>314, 8258=>931, 8259=>333, 8260=>167, 8261=>480, 8262=>480, 8263=>1000, 8264=>833, 8265=>833, 8304=>300, 8308=>300,
8309=>300, 8310=>300, 8311=>300, 8312=>300, 8313=>300, 8320=>300, 8321=>300, 8322=>300, 8323=>300, 8324=>300, 8325=>300, 8326=>300, 8327=>300, 8328=>300, 8329=>300, 8352=>698,
8353=>667, 8354=>667, 8355=>611, 8356=>500, 8357=>722, 8358=>667, 8359=>611, 8361=>833, 8470=>1023, 8471=>760, 8479=>610, 8483=>611, 8494=>533, 8498=>611, 8543=>750, 8706=>494,
8710=>612, 8721=>713, 8722=>675, 8725=>750, 8730=>549, 8734=>677, 8800=>564, 8804=>675, 8805=>675, 9674=>494, 63033=>500, 63034=>500, 63035=>500, 63036=>500, 63037=>500, 63038=>500,
63039=>500, 63040=>500, 63041=>500, 63171=>333, 63196=>500, 64256=>526, 64257=>500, 64258=>500, 64259=>747, 64260=>748, 64262=>665);
$enc='';
$diff='';
$file='FreeSerifItalic.z';
$ctg='FreeSerifItalic.ctg.z';
$originalsize=154900;
?>

View File

@ -1,7 +0,0 @@
<?php
for($i=0;$i<=255;$i++)
$fpdf_charwidths['courier'][chr($i)]=600;
$fpdf_charwidths['courierB']=$fpdf_charwidths['courier'];
$fpdf_charwidths['courierI']=$fpdf_charwidths['courier'];
$fpdf_charwidths['courierBI']=$fpdf_charwidths['courier'];
?>

View File

@ -1,15 +0,0 @@
<?php
$fpdf_charwidths['helvetica']=array(
chr(0)=>278,chr(1)=>278,chr(2)=>278,chr(3)=>278,chr(4)=>278,chr(5)=>278,chr(6)=>278,chr(7)=>278,chr(8)=>278,chr(9)=>278,chr(10)=>278,chr(11)=>278,chr(12)=>278,chr(13)=>278,chr(14)=>278,chr(15)=>278,chr(16)=>278,chr(17)=>278,chr(18)=>278,chr(19)=>278,chr(20)=>278,chr(21)=>278,
chr(22)=>278,chr(23)=>278,chr(24)=>278,chr(25)=>278,chr(26)=>278,chr(27)=>278,chr(28)=>278,chr(29)=>278,chr(30)=>278,chr(31)=>278,' '=>278,'!'=>278,'"'=>355,'#'=>556,'$'=>556,'%'=>889,'&'=>667,'\''=>191,'('=>333,')'=>333,'*'=>389,'+'=>584,
','=>278,'-'=>333,'.'=>278,'/'=>278,'0'=>556,'1'=>556,'2'=>556,'3'=>556,'4'=>556,'5'=>556,'6'=>556,'7'=>556,'8'=>556,'9'=>556,':'=>278,';'=>278,'<'=>584,'='=>584,'>'=>584,'?'=>556,'@'=>1015,'A'=>667,
'B'=>667,'C'=>722,'D'=>722,'E'=>667,'F'=>611,'G'=>778,'H'=>722,'I'=>278,'J'=>500,'K'=>667,'L'=>556,'M'=>833,'N'=>722,'O'=>778,'P'=>667,'Q'=>778,'R'=>722,'S'=>667,'T'=>611,'U'=>722,'V'=>667,'W'=>944,
'X'=>667,'Y'=>667,'Z'=>611,'['=>278,'\\'=>278,']'=>278,'^'=>469,'_'=>556,'`'=>333,'a'=>556,'b'=>556,'c'=>500,'d'=>556,'e'=>556,'f'=>278,'g'=>556,'h'=>556,'i'=>222,'j'=>222,'k'=>500,'l'=>222,'m'=>833,
'n'=>556,'o'=>556,'p'=>556,'q'=>556,'r'=>333,'s'=>500,'t'=>278,'u'=>556,'v'=>500,'w'=>722,'x'=>500,'y'=>500,'z'=>500,'{'=>334,'|'=>260,'}'=>334,'~'=>584,chr(127)=>350,chr(128)=>556,chr(129)=>350,chr(130)=>222,chr(131)=>556,
chr(132)=>333,chr(133)=>1000,chr(134)=>556,chr(135)=>556,chr(136)=>333,chr(137)=>1000,chr(138)=>667,chr(139)=>333,chr(140)=>1000,chr(141)=>350,chr(142)=>611,chr(143)=>350,chr(144)=>350,chr(145)=>222,chr(146)=>222,chr(147)=>333,chr(148)=>333,chr(149)=>350,chr(150)=>556,chr(151)=>1000,chr(152)=>333,chr(153)=>1000,
chr(154)=>500,chr(155)=>333,chr(156)=>944,chr(157)=>350,chr(158)=>500,chr(159)=>667,chr(160)=>278,chr(161)=>333,chr(162)=>556,chr(163)=>556,chr(164)=>556,chr(165)=>556,chr(166)=>260,chr(167)=>556,chr(168)=>333,chr(169)=>737,chr(170)=>370,chr(171)=>556,chr(172)=>584,chr(173)=>333,chr(174)=>737,chr(175)=>333,
chr(176)=>400,chr(177)=>584,chr(178)=>333,chr(179)=>333,chr(180)=>333,chr(181)=>556,chr(182)=>537,chr(183)=>278,chr(184)=>333,chr(185)=>333,chr(186)=>365,chr(187)=>556,chr(188)=>834,chr(189)=>834,chr(190)=>834,chr(191)=>611,chr(192)=>667,chr(193)=>667,chr(194)=>667,chr(195)=>667,chr(196)=>667,chr(197)=>667,
chr(198)=>1000,chr(199)=>722,chr(200)=>667,chr(201)=>667,chr(202)=>667,chr(203)=>667,chr(204)=>278,chr(205)=>278,chr(206)=>278,chr(207)=>278,chr(208)=>722,chr(209)=>722,chr(210)=>778,chr(211)=>778,chr(212)=>778,chr(213)=>778,chr(214)=>778,chr(215)=>584,chr(216)=>778,chr(217)=>722,chr(218)=>722,chr(219)=>722,
chr(220)=>722,chr(221)=>667,chr(222)=>667,chr(223)=>611,chr(224)=>556,chr(225)=>556,chr(226)=>556,chr(227)=>556,chr(228)=>556,chr(229)=>556,chr(230)=>889,chr(231)=>500,chr(232)=>556,chr(233)=>556,chr(234)=>556,chr(235)=>556,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>556,chr(241)=>556,
chr(242)=>556,chr(243)=>556,chr(244)=>556,chr(245)=>556,chr(246)=>556,chr(247)=>584,chr(248)=>611,chr(249)=>556,chr(250)=>556,chr(251)=>556,chr(252)=>556,chr(253)=>500,chr(254)=>556,chr(255)=>500);
?>

Some files were not shown because too many files have changed in this diff Show More