| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373 | <?php/******************************************************************************** TTFontFile class                                                             **                                                                              ** Version:  1.05		                                                       ** Date:     2011-07-21                                                         ** Author:   Ian Back <ianb@bpm1.com>                                           ** License:  LGPL                                                               ** Copyright (c) Ian Back, 2010                                                 ** This class is based on The ReportLab Open Source PDF library                 ** written in Python - http://www.reportlab.com/software/opensource/            ** together with ideas from the OpenOffice source code and others.              * * This header must be retained in any redistribution or                        ** modification of the file.                                                    **                                                                              ********************************************************************************/// Define the value used in the "head" table of a created TTF file// 0x74727565 "true" for Mac// 0x00010000 for Windows// Either seems to work for a font embedded in a PDF file// when read by Adobe Reader on a Windows PC(!)if (!defined('_TTF_MAC_HEADER')) define("_TTF_MAC_HEADER", false);// Recalculate correct metadata/profiles when making subset fonts (not SIP/SMP)// e.g. xMin, xMax, maxNContoursif (!defined('_RECALC_PROFILE')) define("_RECALC_PROFILE", false);// TrueType Font Glyph operatorsdefine("GF_WORDS",(1 << 0));define("GF_SCALE",(1 << 3));define("GF_MORE",(1 << 5));define("GF_XYSCALE",(1 << 6));define("GF_TWOBYTWO",(1 << 7));class TTFontFile {var $panose;var $maxUni;var $sFamilyClass;var $sFamilySubClass;var $sipset;var $smpset;var $_pos;var $numTables;var $searchRange;var $entrySelector;var $rangeShift;var $tables;var $otables;var $filename;var $fh;var $glyphPos;var $charToGlyph;var $ascent;var $descent;var $name;var $familyName;var $styleName;var $fullName;var $uniqueFontID;var $unitsPerEm;var $bbox;var $capHeight;var $stemV;var $italicAngle;var $flags;var $underlinePosition;var $underlineThickness;var $charWidths;var $defaultWidth;var $maxStrLenRead;var $numTTCFonts;var $TTCFonts;var $maxUniChar;var $kerninfo;	function TTFontFile() {		$this->maxStrLenRead = 200000;	// Maximum size of glyf table to read in as string (otherwise reads each glyph from file)	}	function getMetrics($file, $TTCfontID=0, $debug=false, $BMPonly=false, $kerninfo=false) {		$this->filename = $file;		$this->fh = fopen($file,'rb') or die('Can\'t open file ' . $file);		$this->_pos = 0;		$this->charWidths = '';		$this->glyphPos = array();		$this->charToGlyph = array();		$this->tables = array();		$this->otables = array();		$this->kerninfo = array();		$this->ascent = 0;		$this->descent = 0;		$this->numTTCFonts = 0;		$this->TTCFonts = array();		$this->version = $version = $this->read_ulong();		$this->panose = array();		if ($version==0x4F54544F) 			die("Postscript outlines are not supported");		if ($version==0x74746366 && !$TTCfontID) 			die("ERROR - You must define the TTCfontID for a TrueType Collection in config_fonts.php (". $file.")");		if (!in_array($version, array(0x00010000,0x74727565)) && !$TTCfontID)			die("Not a TrueType font: version=".$version);		if ($TTCfontID > 0) {			$this->version = $version = $this->read_ulong();	// TTC Header version now			if (!in_array($version, array(0x00010000,0x00020000)))				die("ERROR - Error parsing TrueType Collection: version=".$version." - " . $file);			$this->numTTCFonts = $this->read_ulong();			for ($i=1; $i<=$this->numTTCFonts; $i++) {	      	      $this->TTCFonts[$i]['offset'] = $this->read_ulong();			}			$this->seek($this->TTCFonts[$TTCfontID]['offset']);			$this->version = $version = $this->read_ulong();	// TTFont version again now		}		$this->readTableDirectory($debug);		$this->extractInfo($debug, $BMPonly, $kerninfo); 		fclose($this->fh);	}	function readTableDirectory($debug=false) {	    $this->numTables = $this->read_ushort();            $this->searchRange = $this->read_ushort();            $this->entrySelector = $this->read_ushort();            $this->rangeShift = $this->read_ushort();            $this->tables = array();	            for ($i=0;$i<$this->numTables;$i++) {                $record = array();                $record['tag'] = $this->read_tag();                $record['checksum'] = array($this->read_ushort(),$this->read_ushort());                $record['offset'] = $this->read_ulong();                $record['length'] = $this->read_ulong();                $this->tables[$record['tag']] = $record;		}		if ($debug) $this->checksumTables();	}	function checksumTables() {		// Check the checksums for all tables		foreach($this->tables AS $t) {		  if ($t['length'] > 0 && $t['length'] < $this->maxStrLenRead) {	// 1.02            	$table = $this->get_chunk($t['offset'], $t['length']);            	$checksum = $this->calcChecksum($table);            	if ($t['tag'] == 'head') {				$up = unpack('n*', substr($table,8,4));				$adjustment[0] = $up[1];				$adjustment[1] = $up[2];            		$checksum = $this->sub32($checksum, $adjustment);			}            	$xchecksum = $t['checksum'];            	if ($xchecksum != $checksum)             	    die(sprintf('TTF file "%s": invalid checksum %s table: %s (expected %s)', $this->filename,dechex($checksum[0]).dechex($checksum[1]),$t['tag'],dechex($xchecksum[0]).dechex($xchecksum[1])));		  }		}	}	function sub32($x, $y) {		$xlo = $x[1];		$xhi = $x[0];		$ylo = $y[1];		$yhi = $y[0];		if ($ylo > $xlo) { $xlo += 1 << 16; $yhi += 1; }		$reslo = $xlo-$ylo;		if ($yhi > $xhi) { $xhi += 1 << 16;  }		$reshi = $xhi-$yhi;		$reshi = $reshi & 0xFFFF;		return array($reshi, $reslo);	}	function calcChecksum($data)  {		if (strlen($data) % 4) { $data .= str_repeat("\0",(4-(strlen($data) % 4))); }		$len = strlen($data);		$hi=0x0000;		$lo=0x0000;		for($i=0;$i<$len;$i+=4) {			$hi += (ord($data[$i])<<8) + ord($data[$i+1]);			$lo += (ord($data[$i+2])<<8) + ord($data[$i+3]);			$hi += ($lo >> 16) & 0xFFFF;	// mPDF 5.3.07			$lo = $lo & 0xFFFF;		}		return array($hi, $lo);	}	function get_table_pos($tag) {		$offset = $this->tables[$tag]['offset'];		$length = $this->tables[$tag]['length'];		return array($offset, $length);	}	function seek($pos) {		$this->_pos = $pos;		fseek($this->fh,$this->_pos);	}	function skip($delta) {		$this->_pos = $this->_pos + $delta;	//	fseek($this->fh,$this->_pos);		fseek($this->fh,$delta,SEEK_CUR);	// mPDF 5.3.19	}	function seek_table($tag, $offset_in_table = 0) {		$tpos = $this->get_table_pos($tag);		$this->_pos = $tpos[0] + $offset_in_table;		fseek($this->fh, $this->_pos);		return $this->_pos;	}	function read_tag() {		$this->_pos += 4;		return fread($this->fh,4);	}	function read_short() {		$this->_pos += 2;		$s = fread($this->fh,2);		$a = (ord($s[0])<<8) + ord($s[1]);		if ($a & (1 << 15) ) { 			$a = ($a - (1 << 16)); 		}		return $a;	}	function unpack_short($s) {		$a = (ord($s[0])<<8) + ord($s[1]);		if ($a & (1 << 15) ) { 			$a = ($a - (1 << 16)); 		}		return $a;	}	function read_ushort() {		$this->_pos += 2;		$s = fread($this->fh,2);		return (ord($s[0])<<8) + ord($s[1]);	}	function read_ulong() {		$this->_pos += 4;		$s = fread($this->fh,4);		// if large uInt32 as an integer, PHP converts it to -ve		return (ord($s[0])*16777216) + (ord($s[1])<<16) + (ord($s[2])<<8) + ord($s[3]); // 	16777216  = 1<<24	}	function get_ushort($pos) {		fseek($this->fh,$pos);		$s = fread($this->fh,2);		return (ord($s[0])<<8) + ord($s[1]);	}	function get_ulong($pos) {		fseek($this->fh,$pos);		$s = fread($this->fh,4);		// iF large uInt32 as an integer, PHP converts it to -ve		return (ord($s[0])*16777216) + (ord($s[1])<<16) + (ord($s[2])<<8) + ord($s[3]); // 	16777216  = 1<<24	}	function pack_short($val) {		if ($val<0) { 			$val = abs($val);			$val = ~$val;			$val += 1;		}		return pack("n",$val); 	}	function splice($stream, $offset, $value) {		return substr($stream,0,$offset) . $value . substr($stream,$offset+strlen($value));	}	function _set_ushort($stream, $offset, $value) {		$up = pack("n", $value);		return $this->splice($stream, $offset, $up);	}	// mPDF 5.0	function _set_short($stream, $offset, $val) {		if ($val<0) { 			$val = abs($val);			$val = ~$val;			$val += 1;		}		$up = pack("n",$val); 		return $this->splice($stream, $offset, $up);	}	function get_chunk($pos, $length) {		fseek($this->fh,$pos);		if ($length <1) { return ''; }		return (fread($this->fh,$length));	}	function get_table($tag) {		list($pos, $length) = $this->get_table_pos($tag);		if ($length == 0) { return ''; }		fseek($this->fh,$pos);		return (fread($this->fh,$length));	}	function add($tag, $data) {		if ($tag == 'head') {			$data = $this->splice($data, 8, "\0\0\0\0");		}		$this->otables[$tag] = $data;	}/////////////////////////////////////////////////////////////////////////////////////////	function getCTG($file, $TTCfontID=0, $debug=false) {		$this->filename = $file;		$this->fh = fopen($file,'rb') or die('Can\'t open file ' . $file);		$this->_pos = 0;		$this->charWidths = '';		$this->glyphPos = array();		$this->charToGlyph = array();		$this->tables = array();		$this->numTTCFonts = 0;		$this->TTCFonts = array();		$this->skip(4);		if ($TTCfontID > 0) {			$this->version = $version = $this->read_ulong();	// TTC Header version now			if (!in_array($version, array(0x00010000,0x00020000)))				die("ERROR - Error parsing TrueType Collection: version=".$version." - " . $file);			$this->numTTCFonts = $this->read_ulong();			for ($i=1; $i<=$this->numTTCFonts; $i++) {	      	      $this->TTCFonts[$i]['offset'] = $this->read_ulong();			}			$this->seek($this->TTCFonts[$TTCfontID]['offset']);			$this->version = $version = $this->read_ulong();	// TTFont version again now		}		$this->readTableDirectory($debug);		// cmap - Character to glyph index mapping table		$cmap_offset = $this->seek_table("cmap");		$this->skip(2);		$cmapTableCount = $this->read_ushort();		$unicode_cmap_offset = 0;		for ($i=0;$i<$cmapTableCount;$i++) {			$platformID = $this->read_ushort();			$encodingID = $this->read_ushort();			$offset = $this->read_ulong();			$save_pos = $this->_pos;			if ($platformID == 3 && $encodingID == 1) { // Microsoft, Unicode				$format = $this->get_ushort($cmap_offset + $offset);				if ($format == 4) {					$unicode_cmap_offset = $cmap_offset + $offset;					break;				}			}			else if ($platformID == 0) { // Unicode -- assume all encodings are compatible				$format = $this->get_ushort($cmap_offset + $offset);				if ($format == 4) {					$unicode_cmap_offset = $cmap_offset + $offset;					break;				}			}			$this->seek($save_pos );		}		$glyphToChar = array();		$charToGlyph = array();		$this->getCMAP4($unicode_cmap_offset, $glyphToChar, $charToGlyph );		fclose($this->fh);		return ($charToGlyph);	}/////////////////////////////////////////////////////////////////////////////////////////	function getTTCFonts($file) {		$this->filename = $file;		$this->fh = fopen($file,'rb');		if (!$this->fh) { return ('ERROR - Can\'t open file ' . $file); }		$this->numTTCFonts = 0;		$this->TTCFonts = array();		$this->version = $version = $this->read_ulong();		if ($version==0x74746366) {			$this->version = $version = $this->read_ulong();	// TTC Header version now			if (!in_array($version, array(0x00010000,0x00020000)))				return("ERROR - Error parsing TrueType Collection: version=".$version." - " . $file);		}		else {			return("ERROR - Not a TrueType Collection: version=".$version." - " . $file);		}		$this->numTTCFonts = $this->read_ulong();		for ($i=1; $i<=$this->numTTCFonts; $i++) {	            $this->TTCFonts[$i]['offset'] = $this->read_ulong();		}	}	// Used to get font information from files in directory for mPDF config	function extractCoreInfo($file, $TTCfontID=0) {		$this->filename = $file;		$this->fh = fopen($file,'rb');		if (!$this->fh) { return ('ERROR - Can\'t open file ' . $file); }		$this->_pos = 0;		$this->charWidths = '';		$this->glyphPos = array();		$this->charToGlyph = array();		$this->tables = array();		$this->otables = array();		$this->ascent = 0;		$this->descent = 0;		$this->numTTCFonts = 0;		$this->TTCFonts = array();		$this->version = $version = $this->read_ulong();		$this->panose = array();	// mPDF 5.0		if ($version==0x4F54544F) 			return("ERROR - NOT ADDED as Postscript outlines are not supported - " . $file);		if ($version==0x74746366) {			if ($TTCfontID > 0) {				$this->version = $version = $this->read_ulong();	// TTC Header version now				if (!in_array($version, array(0x00010000,0x00020000)))					return("ERROR - NOT ADDED as Error parsing TrueType Collection: version=".$version." - " . $file);			}			else return("ERROR - Error parsing TrueType Collection - " . $file);			$this->numTTCFonts = $this->read_ulong();			for ($i=1; $i<=$this->numTTCFonts; $i++) {	      	      $this->TTCFonts[$i]['offset'] = $this->read_ulong();			}			$this->seek($this->TTCFonts[$TTCfontID]['offset']);			$this->version = $version = $this->read_ulong();	// TTFont version again now			$this->readTableDirectory(false);		}		else {			if (!in_array($version, array(0x00010000,0x74727565)))				return("ERROR - NOT ADDED as Not a TrueType font: version=".$version." - " . $file);			$this->readTableDirectory(false);		}/* Included for testing...		$cmap_offset = $this->seek_table("cmap");		$this->skip(2);		$cmapTableCount = $this->read_ushort();		$unicode_cmap_offset = 0;		for ($i=0;$i<$cmapTableCount;$i++) {			$x[$i]['platformId'] = $this->read_ushort();			$x[$i]['encodingId'] = $this->read_ushort();			$x[$i]['offset'] = $this->read_ulong();			$save_pos = $this->_pos;			$x[$i]['format'] = $this->get_ushort($cmap_offset + $x[$i]['offset'] );			$this->seek($save_pos );		}		print_r($x); exit;*/		///////////////////////////////////		// name - Naming table		///////////////////////////////////			$name_offset = $this->seek_table("name");			$format = $this->read_ushort();			if ($format != 0 && $format != 1)	// mPDF 5.3.73				return("ERROR - NOT ADDED as Unknown name table format ".$format." - " . $file);			$numRecords = $this->read_ushort();			$string_data_offset = $name_offset + $this->read_ushort();			$names = array(1=>'',2=>'',3=>'',4=>'',6=>'');			$K = array_keys($names);			$nameCount = count($names);			for ($i=0;$i<$numRecords; $i++) {				$platformId = $this->read_ushort();				$encodingId = $this->read_ushort();				$languageId = $this->read_ushort();				$nameId = $this->read_ushort();				$length = $this->read_ushort();				$offset = $this->read_ushort();				if (!in_array($nameId,$K)) continue;				$N = '';				if ($platformId == 3 && $encodingId == 1 && $languageId == 0x409) { // Microsoft, Unicode, US English, PS Name					$opos = $this->_pos;					$this->seek($string_data_offset + $offset);					if ($length % 2 != 0)						$length += 1;					$length /= 2;					$N = '';					while ($length > 0) {						$char = $this->read_ushort();						$N .= (chr($char));						$length -= 1;					}					$this->_pos = $opos;					$this->seek($opos);				}				else if ($platformId == 1 && $encodingId == 0 && $languageId == 0) { // Macintosh, Roman, English, PS Name					$opos = $this->_pos;					$N = $this->get_chunk($string_data_offset + $offset, $length);					$this->_pos = $opos;					$this->seek($opos);				}				if ($N && $names[$nameId]=='') {					$names[$nameId] = $N;					$nameCount -= 1;					if ($nameCount==0) break;				}			}			if ($names[6])				$psName = preg_replace('/ /','-',$names[6]);			else if ($names[4])				$psName = preg_replace('/ /','-',$names[4]);			else if ($names[1])				$psName = preg_replace('/ /','-',$names[1]);			else				$psName = '';			if (!$names[1] && !$psName)				return("ERROR - NOT ADDED as Could not find valid font name - " . $file);			$this->name = $psName;			if ($names[1]) { $this->familyName = $names[1]; } else { $this->familyName = $psName; }			if ($names[2]) { $this->styleName = $names[2]; } else { $this->styleName = 'Regular'; }		///////////////////////////////////		// head - Font header table		///////////////////////////////////		$this->seek_table("head");		$ver_maj = $this->read_ushort();		$ver_min = $this->read_ushort();		if ($ver_maj != 1)			return('ERROR - NOT ADDED as Unknown head table version '. $ver_maj .'.'. $ver_min." - " . $file);		$this->fontRevision = $this->read_ushort() . $this->read_ushort();		$this->skip(4);		$magic = $this->read_ulong();		if ($magic != 0x5F0F3CF5) 			return('ERROR - NOT ADDED as Invalid head table magic ' .$magic." - " . $file);		$this->skip(2);		$this->unitsPerEm = $unitsPerEm = $this->read_ushort();		$scale = 1000 / $unitsPerEm;		$this->skip(24);		$macStyle = $this->read_short();		$this->skip(4);		$indexLocFormat = $this->read_short();		///////////////////////////////////		// OS/2 - OS/2 and Windows metrics table		///////////////////////////////////		$sFamily = '';		$panose = '';		$fsSelection = '';		if (isset($this->tables["OS/2"])) {			$this->seek_table("OS/2");			$this->skip(30);			$sF = $this->read_short();			$sFamily = ($sF >> 8);			$this->_pos += 10;  //PANOSE = 10 byte length			$panose = fread($this->fh,10);			$this->panose = array();			for ($p=0;$p<strlen($panose);$p++) { $this->panose[] = ord($panose[$p]); }			$this->skip(20); 			$fsSelection = $this->read_short();		}		///////////////////////////////////		// post - PostScript table		///////////////////////////////////		$this->seek_table("post");		$this->skip(4); 		$this->italicAngle = $this->read_short() + $this->read_ushort() / 65536.0;		$this->skip(4);		$isFixedPitch = $this->read_ulong();		///////////////////////////////////		// cmap - Character to glyph index mapping table		///////////////////////////////////		$cmap_offset = $this->seek_table("cmap");		$this->skip(2);		$cmapTableCount = $this->read_ushort();		$unicode_cmap_offset = 0;		for ($i=0;$i<$cmapTableCount;$i++) {			$platformID = $this->read_ushort();			$encodingID = $this->read_ushort();			$offset = $this->read_ulong();			$save_pos = $this->_pos;			if (($platformID == 3 && $encodingID == 1) || $platformID == 0) { // Microsoft, Unicode				$format = $this->get_ushort($cmap_offset + $offset);				if ($format == 4) {					if (!$unicode_cmap_offset) $unicode_cmap_offset = $cmap_offset + $offset;				}			}			else if ((($platformID == 3 && $encodingID == 10) || $platformID == 0)) { // Microsoft, Unicode Format 12 table HKCS				$format = $this->get_ushort($cmap_offset + $offset);				if ($format == 12) {					$unicode_cmap_offset = $cmap_offset + $offset;					break;				}			}			$this->seek($save_pos );		}		if (!$unicode_cmap_offset)			return('ERROR - Font ('.$this->filename .') NOT ADDED as it is not Unicode encoded, and cannot be used by mPDF');		$rtl = false;		$indic = false;		$cjk = false;		$sip = false;		$smp = false;		// Format 12 CMAP does characters above Unicode BMP i.e. some HKCS characters U+20000 and above		if ($format == 12) {			$this->seek($unicode_cmap_offset + 4);			$length = $this->read_ulong();			$limit = $unicode_cmap_offset + $length;			$this->skip(4);			$nGroups = $this->read_ulong();			for($i=0; $i<$nGroups ; $i++) { 				$startCharCode = $this->read_ulong(); 				$endCharCode = $this->read_ulong(); 				$startGlyphCode = $this->read_ulong(); 				if (($endCharCode > 0x20000 && $endCharCode < 0x2A6DF) || ($endCharCode > 0x2F800 && $endCharCode < 0x2FA1F)) {					$sip = true; 				}				else if ($endCharCode > 0x10000 && $endCharCode < 0x1FFFF) {					$smp = true; 				}				else if (($endCharCode > 0x0590 && $endCharCode < 0x077F) || ($endCharCode > 0xFE70 && $endCharCode < 0xFEFF) || ($endCharCode > 0xFB50 && $endCharCode < 0xFDFF)) {					$rtl = true; 				}				else if ($endCharCode > 0x0900 && $endCharCode < 0x0DFF) {					$indic = true; 				}				else if (($endCharCode > 0x2E80 && $endCharCode < 0x4DC0) || ($endCharCode > 0x4E00 && $endCharCode < 0xA4CF) || ($endCharCode > 0xAC00 && $endCharCode < 0xD7AF) || ($endCharCode > 0xF900 && $endCharCode < 0xFAFF) || ($endCharCode > 0xFE30 && $endCharCode < 0xFE4F)) {					$cjk = true; 				}			}		}		else {	// Format 4 CMap			$this->seek($unicode_cmap_offset + 2);			$length = $this->read_ushort();			$limit = $unicode_cmap_offset + $length;			$this->skip(2);			$segCount = $this->read_ushort() / 2;			$this->skip(6);			$endCount = array();			for($i=0; $i<$segCount; $i++) { $endCount[] = $this->read_ushort(); }			$this->skip(2);			$startCount = array();			for($i=0; $i<$segCount; $i++) { $startCount[] = $this->read_ushort(); }			$idDelta = array();			for($i=0; $i<$segCount; $i++) { $idDelta[] = $this->read_short(); }		// ???? was unsigned short			$idRangeOffset_start = $this->_pos;			$idRangeOffset = array();			for($i=0; $i<$segCount; $i++) { $idRangeOffset[] = $this->read_ushort(); }			for ($n=0;$n<$segCount;$n++) {				if (($endCount[$n] > 0x0590 && $endCount[$n] < 0x077F) || ($endCount[$n] > 0xFE70 && $endCount[$n] < 0xFEFF) || ($endCount[$n] > 0xFB50 && $endCount[$n] < 0xFDFF)) {					$rtl = true; 				}				else if ($endCount[$n] > 0x0900 && $endCount[$n] < 0x0DFF) {					$indic = true; 				}				else if (($endCount[$n] > 0x2E80 && $endCount[$n] < 0x4DC0) || ($endCount[$n] > 0x4E00 && $endCount[$n] < 0xA4CF) || ($endCount[$n] > 0xAC00 && $endCount[$n] < 0xD7AF) || ($endCount[$n] > 0xF900 && $endCount[$n] < 0xFAFF) || ($endCount[$n] > 0xFE30 && $endCount[$n] < 0xFE4F)) {					$cjk = true; 				}			}		}		$bold = false; 		$italic = false; 		$ftype = '';		if ($macStyle & (1 << 0)) { $bold = true; }	// bit 0 bold		else if ($fsSelection & (1 << 5)) { $bold = true; }	// 5 	BOLD 	Characters are emboldened		if ($macStyle & (1 << 1)) { $italic = true; }	// bit 1 italic		else if ($fsSelection & (1 << 0)) { $italic = true; }	// 0 	ITALIC 	Font contains Italic characters, otherwise they are upright		else if ($this->italicAngle <> 0) { $italic = true; }		if ($isFixedPitch ) { $ftype = 'mono'; }		else if ($sFamily >0 && $sFamily <8) { $ftype = 'serif'; }		else if ($sFamily ==8) { $ftype = 'sans'; }		else if ($sFamily ==10) { $ftype = 'cursive'; }		// Use PANOSE		if ($panose) { 			$bFamilyType=ord($panose[0]); 			if ($bFamilyType==2) {				$bSerifStyle=ord($panose[1]); 				if (!$ftype) { 					if ($bSerifStyle>1 && $bSerifStyle<11) { $ftype = 'serif'; }					else if ($bSerifStyle>10) { $ftype = 'sans'; }				}				$bProportion=ord($panose[3]);				if ($bProportion==9 || $bProportion==1) { $ftype = 'mono'; }	// ==1 i.e. No Fit needed for OCR-a and -b			}			else if ($bFamilyType==3) {				$ftype = 'cursive'; 			}		}		fclose($this->fh);		return array($this->familyName, $bold, $italic, $ftype, $TTCfontID, $rtl, $indic, $cjk, $sip, $smp);	}//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////	function extractInfo($debug=false, $BMPonly=false, $kerninfo=false) {		///////////////////////////////////		// name - Naming table		///////////////////////////////////			$this->panose = array();			$this->sFamilyClass = 0;			$this->sFamilySubClass = 0;/* Test purposes - displays table of names 			$name_offset = $this->seek_table("name");			$format = $this->read_ushort();			if ($format != 0 && $format != 1)	// mPDF 5.3.73				die("Unknown name table format ".$format);			$numRecords = $this->read_ushort();			$string_data_offset = $name_offset + $this->read_ushort();			for ($i=0;$i<$numRecords; $i++) {				$x[$i]['platformId'] = $this->read_ushort();				$x[$i]['encodingId'] = $this->read_ushort();				$x[$i]['languageId'] = $this->read_ushort();				$x[$i]['nameId'] = $this->read_ushort();				$x[$i]['length'] = $this->read_ushort();				$x[$i]['offset'] = $this->read_ushort();				$N = '';				if ($x[$i]['platformId'] == 1 && $x[$i]['encodingId'] == 0 && $x[$i]['languageId'] == 0) { // Roman					$opos = $this->_pos;					$N = $this->get_chunk($string_data_offset + $x[$i]['offset'] , $x[$i]['length'] );					$this->_pos = $opos;					$this->seek($opos);				}				else { 	// Unicode					$opos = $this->_pos;					$this->seek($string_data_offset + $x[$i]['offset'] );					$length = $x[$i]['length'] ;					if ($length % 2 != 0)						$length -= 1;				//		die("PostScript name is UTF-16BE string of odd length");					$length /= 2;					$N = '';					while ($length > 0) {						$char = $this->read_ushort();						$N .= (chr($char));						$length -= 1;					}					$this->_pos = $opos;					$this->seek($opos);				}				$x[$i]['names'][$nameId] = $N;			}			print_r($x); exit;*/			$name_offset = $this->seek_table("name");			$format = $this->read_ushort();			if ($format != 0 && $format != 1)		// mPDF 5.3.73				die("Unknown name table format ".$format);			$numRecords = $this->read_ushort();			$string_data_offset = $name_offset + $this->read_ushort();			$names = array(1=>'',2=>'',3=>'',4=>'',6=>'');			$K = array_keys($names);			$nameCount = count($names);			for ($i=0;$i<$numRecords; $i++) {				$platformId = $this->read_ushort();				$encodingId = $this->read_ushort();				$languageId = $this->read_ushort();				$nameId = $this->read_ushort();				$length = $this->read_ushort();				$offset = $this->read_ushort();				if (!in_array($nameId,$K)) continue;				$N = '';				if ($platformId == 3 && $encodingId == 1 && $languageId == 0x409) { // Microsoft, Unicode, US English, PS Name					$opos = $this->_pos;					$this->seek($string_data_offset + $offset);					if ($length % 2 != 0)						die("PostScript name is UTF-16BE string of odd length");					$length /= 2;					$N = '';					while ($length > 0) {						$char = $this->read_ushort();						$N .= (chr($char));						$length -= 1;					}					$this->_pos = $opos;					$this->seek($opos);				}				else if ($platformId == 1 && $encodingId == 0 && $languageId == 0) { // Macintosh, Roman, English, PS Name					$opos = $this->_pos;					$N = $this->get_chunk($string_data_offset + $offset, $length);					$this->_pos = $opos;					$this->seek($opos);				}				if ($N && $names[$nameId]=='') {					$names[$nameId] = $N;					$nameCount -= 1;					if ($nameCount==0) break;				}			}			if ($names[6])	//			$psName = preg_replace('/ /','-',$names[6]);	// mPDF 5.2.03				$psName = $names[6];			else if ($names[4])				$psName = preg_replace('/ /','-',$names[4]);			else if ($names[1])				$psName = preg_replace('/ /','-',$names[1]);			else				$psName = '';			if (!$psName)				die("Could not find PostScript font name: ".$this->filename);			if ($debug) {			   for ($i=0;$i<count($psName);$i++) {	// mPDF 5.3.07				$c = $psName[$i];				$oc = ord($c);				if ($oc>126 || strpos(' [](){}<>/%',$c)!==false)					die("psName=".$psName." contains invalid character ".$c." ie U+".ord(c));			   }			}			$this->name = $psName;			if ($names[1]) { $this->familyName = $names[1]; } else { $this->familyName = $psName; }			if ($names[2]) { $this->styleName = $names[2]; } else { $this->styleName = 'Regular'; }			if ($names[4]) { $this->fullName = $names[4]; } else { $this->fullName = $psName; }			if ($names[3]) { $this->uniqueFontID = $names[3]; } else { $this->uniqueFontID = $psName; }			if ($names[6]) { $this->fullName = $names[6]; }	// mPDF 5.2.03		///////////////////////////////////		// head - Font header table		///////////////////////////////////		$this->seek_table("head");		if ($debug) { 			$ver_maj = $this->read_ushort();			$ver_min = $this->read_ushort();			if ($ver_maj != 1)				die('Unknown head table version '. $ver_maj .'.'. $ver_min);			$this->fontRevision = $this->read_ushort() . $this->read_ushort();			$this->skip(4);			$magic = $this->read_ulong();			if ($magic != 0x5F0F3CF5) 				die('Invalid head table magic ' .$magic);			$this->skip(2);		}		else {			$this->skip(18); 		}		$this->unitsPerEm = $unitsPerEm = $this->read_ushort();		$scale = 1000 / $unitsPerEm;		$this->skip(16);		$xMin = $this->read_short();		$yMin = $this->read_short();		$xMax = $this->read_short();		$yMax = $this->read_short();		$this->bbox = array(($xMin*$scale), ($yMin*$scale), ($xMax*$scale), ($yMax*$scale));		$this->skip(3*2);		$indexToLocFormat = $this->read_ushort();		$glyphDataFormat = $this->read_ushort();		if ($glyphDataFormat != 0)			die('Unknown glyph data format '.$glyphDataFormat);		///////////////////////////////////		// hhea metrics table		///////////////////////////////////		// ttf2t1 seems to use this value rather than the one in OS/2 - so put in for compatibility		if (isset($this->tables["hhea"])) {			$this->seek_table("hhea");			$this->skip(4);			$hheaAscender = $this->read_short();			$hheaDescender = $this->read_short();			$this->ascent = ($hheaAscender *$scale);			$this->descent = ($hheaDescender *$scale);		}		///////////////////////////////////		// OS/2 - OS/2 and Windows metrics table		///////////////////////////////////		if (isset($this->tables["OS/2"])) {			$this->seek_table("OS/2");			$version = $this->read_ushort();			$this->skip(2);			$usWeightClass = $this->read_ushort();			$this->skip(2);			$fsType = $this->read_ushort();			if ($fsType == 0x0002 || ($fsType & 0x0300) != 0) {				global $overrideTTFFontRestriction;				if (!$overrideTTFFontRestriction) die('ERROR - Font file '.$this->filename.' cannot be embedded due to copyright restrictions.');				$this->restrictedUse = true;			}			$this->skip(20);			$sF = $this->read_short();			$this->sFamilyClass = ($sF >> 8);			$this->sFamilySubClass = ($sF & 0xFF);			$this->_pos += 10;  //PANOSE = 10 byte length			$panose = fread($this->fh,10);			$this->panose = array();			for ($p=0;$p<strlen($panose);$p++) { $this->panose[] = ord($panose[$p]); }			$this->skip(26);			$sTypoAscender = $this->read_short();			$sTypoDescender = $this->read_short();			if (!$this->ascent) $this->ascent = ($sTypoAscender*$scale);			if (!$this->descent) $this->descent = ($sTypoDescender*$scale);			if ($version > 1) {				$this->skip(16);				$sCapHeight = $this->read_short();				$this->capHeight = ($sCapHeight*$scale);			}			else {				$this->capHeight = $this->ascent;			}		}		else {			$usWeightClass = 500;			if (!$this->ascent) $this->ascent = ($yMax*$scale);			if (!$this->descent) $this->descent = ($yMin*$scale);			$this->capHeight = $this->ascent;		}		$this->stemV = 50 + intval(pow(($usWeightClass / 65.0),2));		///////////////////////////////////		// post - PostScript table		///////////////////////////////////		$this->seek_table("post");		if ($debug) { 			$ver_maj = $this->read_ushort();			$ver_min = $this->read_ushort();			if ($ver_maj <1 || $ver_maj >4) 				die('Unknown post table version '.$ver_maj);		}		else {			$this->skip(4); 		}		$this->italicAngle = $this->read_short() + $this->read_ushort() / 65536.0;		$this->underlinePosition = $this->read_short() * $scale;		$this->underlineThickness = $this->read_short() * $scale;		$isFixedPitch = $this->read_ulong();		$this->flags = 4;		if ($this->italicAngle!= 0) 			$this->flags = $this->flags | 64;		if ($usWeightClass >= 600)			$this->flags = $this->flags | 262144;		if ($isFixedPitch)			$this->flags = $this->flags | 1;		///////////////////////////////////		// hhea - Horizontal header table		///////////////////////////////////		$this->seek_table("hhea");		if ($debug) { 			$ver_maj = $this->read_ushort();			$ver_min = $this->read_ushort();			if ($ver_maj != 1)				die('Unknown hhea table version '.$ver_maj);			$this->skip(28);		}		else {			$this->skip(32); 		}		$metricDataFormat = $this->read_ushort();		if ($metricDataFormat != 0)			die('Unknown horizontal metric data format '.$metricDataFormat);		$numberOfHMetrics = $this->read_ushort();		if ($numberOfHMetrics == 0) 			die('Number of horizontal metrics is 0');		///////////////////////////////////		// maxp - Maximum profile table		///////////////////////////////////		$this->seek_table("maxp");		if ($debug) { 			$ver_maj = $this->read_ushort();			$ver_min = $this->read_ushort();			if ($ver_maj != 1)				die('Unknown maxp table version '.$ver_maj);		}		else {			$this->skip(4); 		}		$numGlyphs = $this->read_ushort();		///////////////////////////////////		// cmap - Character to glyph index mapping table		////////////////////////////////////* Test purposes - displays list of cmaps		$cmap_offset = $this->seek_table("cmap");		$this->skip(2);		$cmapTableCount = $this->read_ushort();		$unicode_cmap_offset = 0;		for ($i=0;$i<$cmapTableCount;$i++) {			$x[$i]['platformId'] = $this->read_ushort();			$x[$i]['encodingId'] = $this->read_ushort();			$x[$i]['offset'] = $this->read_ulong();			$save_pos = $this->_pos;			$x[$i]['format'] = $this->get_ushort($cmap_offset + $x[$i]['offset'] );			$this->seek($save_pos );		}		print_r($x); exit;*/		$cmap_offset = $this->seek_table("cmap");		$this->skip(2);		$cmapTableCount = $this->read_ushort();		$unicode_cmap_offset = 0;		for ($i=0;$i<$cmapTableCount;$i++) {			$platformID = $this->read_ushort();			$encodingID = $this->read_ushort();			$offset = $this->read_ulong();			$save_pos = $this->_pos;			if (($platformID == 3 && $encodingID == 1) || $platformID == 0) { // Microsoft, Unicode				$format = $this->get_ushort($cmap_offset + $offset);				if ($format == 4) {					if (!$unicode_cmap_offset) $unicode_cmap_offset = $cmap_offset + $offset;					if ($BMPonly) break;	// mPDF 5.0				}			}			// Microsoft, Unicode Format 12 table HKCS			else if ((($platformID == 3 && $encodingID == 10) || $platformID == 0) && !$BMPonly) {				$format = $this->get_ushort($cmap_offset + $offset);				if ($format == 12) {					$unicode_cmap_offset = $cmap_offset + $offset;					break;				}			}			$this->seek($save_pos );		}		if (!$unicode_cmap_offset)			die('Font ('.$this->filename .') does not have cmap for Unicode (platform 3, encoding 1, format 4, or platform 0, any encoding, format 4)');		$sipset = false;		$smpset = false;		// Format 12 CMAP does characters above Unicode BMP i.e. some HKCS characters U+20000 and above		if ($format == 12 && !$BMPonly) {			$this->maxUniChar = 0;	// mPDF 5.0			$this->seek($unicode_cmap_offset + 4);			$length = $this->read_ulong();			$limit = $unicode_cmap_offset + $length;			$this->skip(4);			$nGroups = $this->read_ulong();			$glyphToChar = array();			$charToGlyph = array();			for($i=0; $i<$nGroups ; $i++) { 				$startCharCode = $this->read_ulong(); 				$endCharCode = $this->read_ulong(); 				$startGlyphCode = $this->read_ulong(); 				if (($endCharCode > 0x20000 && $endCharCode < 0x2A6DF) || ($endCharCode > 0x2F800 && $endCharCode < 0x2FA1F)) {					$sipset = true; 				}				else if ($endCharCode > 0x10000 && $endCharCode < 0x1FFFF) {					$smpset = true; 				}				$offset = 0;				for ($unichar=$startCharCode;$unichar<=$endCharCode;$unichar++) {					$glyph = $startGlyphCode + $offset ;					$offset++;					$charToGlyph[$unichar] = $glyph;					if ($unichar < 196608) { $this->maxUniChar = max($unichar,$this->maxUniChar); }					$glyphToChar[$glyph][] = $unichar;				}			}		}		else {			$glyphToChar = array();			$charToGlyph = array();			$this->getCMAP4($unicode_cmap_offset, $glyphToChar, $charToGlyph );		}		$this->sipset = $sipset ;		$this->smpset = $smpset ;		///////////////////////////////////		// hmtx - Horizontal metrics table		///////////////////////////////////		$this->getHMTX($numberOfHMetrics, $numGlyphs, $glyphToChar, $scale);		///////////////////////////////////		// kern - Kerning pair table  mPDF 5.1		///////////////////////////////////		if ($kerninfo) {			// Recognises old form of Kerning table - as required by Windows - Format 0 only			$kern_offset = $this->seek_table("kern");			$version = $this->read_ushort();			$nTables = $this->read_ushort();			// subtable header			$sversion = $this->read_ushort();			$slength = $this->read_ushort();			$scoverage = $this->read_ushort();			$format = $scoverage >> 8; 			if ($kern_offset && $version==0 && $format==0) {				// Format 0				$nPairs = $this->read_ushort();				$this->skip(6);				for ($i=0; $i<$nPairs; $i++) {					$left = $this->read_ushort();					$right = $this->read_ushort();					$val = $this->read_short();					if (count($glyphToChar[$left])==1 && count($glyphToChar[$right])==1) {					  if ($left != 32 && $right != 32) {						$this->kerninfo[$glyphToChar[$left][0]][$glyphToChar[$right][0]] = intval($val*$scale);					  }					}				}			}		}	}/////////////////////////////////////////////////////////////////////////////////////////	function makeSubset($file, &$subset, $TTCfontID=0, $debug=false) {		$this->filename = $file;		$this->fh = fopen($file ,'rb') or die('Can\'t open file ' . $file);		$this->_pos = 0;		$this->charWidths = '';		$this->glyphPos = array();		$this->charToGlyph = array();		$this->tables = array();		$this->otables = array();		$this->ascent = 0;		$this->descent = 0;		$this->numTTCFonts = 0;		$this->TTCFonts = array();		$this->skip(4);		$this->maxUni = 0;		if ($TTCfontID > 0) {			$this->version = $version = $this->read_ulong();	// TTC Header version now			if (!in_array($version, array(0x00010000,0x00020000)))				die("ERROR - Error parsing TrueType Collection: version=".$version." - " . $file);			$this->numTTCFonts = $this->read_ulong();			for ($i=1; $i<=$this->numTTCFonts; $i++) {	      	      $this->TTCFonts[$i]['offset'] = $this->read_ulong();			}			$this->seek($this->TTCFonts[$TTCfontID]['offset']);			$this->version = $version = $this->read_ulong();	// TTFont version again now		}		$this->readTableDirectory($debug);		///////////////////////////////////		// head - Font header table		///////////////////////////////////		$this->seek_table("head");		$this->skip(50); 		$indexToLocFormat = $this->read_ushort();		$glyphDataFormat = $this->read_ushort();		///////////////////////////////////		// hhea - Horizontal header table		///////////////////////////////////		$this->seek_table("hhea");		$this->skip(32); 		$metricDataFormat = $this->read_ushort();		$orignHmetrics = $numberOfHMetrics = $this->read_ushort();		///////////////////////////////////		// maxp - Maximum profile table		///////////////////////////////////		$this->seek_table("maxp");		$this->skip(4);		$numGlyphs = $this->read_ushort();		///////////////////////////////////		// cmap - Character to glyph index mapping table		///////////////////////////////////		$cmap_offset = $this->seek_table("cmap");		$this->skip(2);		$cmapTableCount = $this->read_ushort();		$unicode_cmap_offset = 0;		for ($i=0;$i<$cmapTableCount;$i++) {			$platformID = $this->read_ushort();			$encodingID = $this->read_ushort();			$offset = $this->read_ulong();			$save_pos = $this->_pos;			if (($platformID == 3 && $encodingID == 1) || $platformID == 0) { // Microsoft, Unicode				$format = $this->get_ushort($cmap_offset + $offset);				if ($format == 4) {					$unicode_cmap_offset = $cmap_offset + $offset;					break;				}			}			$this->seek($save_pos );		}		if (!$unicode_cmap_offset)			die('Font ('.$this->filename .') does not have Unicode cmap (platform 3, encoding 1, format 4, or platform 0 [any encoding] format 4)');		$glyphToChar = array();		$charToGlyph = array();		$this->getCMAP4($unicode_cmap_offset, $glyphToChar, $charToGlyph );		$this->charToGlyph = $charToGlyph;		///////////////////////////////////		// hmtx - Horizontal metrics table		///////////////////////////////////		$scale = 1;	// not used		$this->getHMTX($numberOfHMetrics, $numGlyphs, $glyphToChar, $scale);		///////////////////////////////////		// loca - Index to location		///////////////////////////////////		$this->getLOCA($indexToLocFormat, $numGlyphs);		$subsetglyphs = array(0=>0, 1=>1, 2=>2); 	// mPDF 5.3.31		$subsetCharToGlyph = array();		foreach($subset AS $code) {			if (isset($this->charToGlyph[$code])) {				$subsetglyphs[$this->charToGlyph[$code]] = $code;	// Old Glyph ID => Unicode				$subsetCharToGlyph[$code] = $this->charToGlyph[$code];	// Unicode to old GlyphID			}			$this->maxUni = max($this->maxUni, $code);		}		list($start,$dummy) = $this->get_table_pos('glyf');		$glyphSet = array();		ksort($subsetglyphs);		$n = 0;		// mPDF 5.0		$fsLastCharIndex = 0;	// maximum Unicode index (character code) in this font, according to the cmap subtable for platform ID 3 and platform- specific encoding ID 0 or 1.		foreach($subsetglyphs AS $originalGlyphIdx => $uni) {			$fsLastCharIndex = max($fsLastCharIndex , $uni); 	// mPDF 5.0			$glyphSet[$originalGlyphIdx] = $n;	// old glyphID to new glyphID			$n++;		}		ksort($subsetCharToGlyph);		foreach($subsetCharToGlyph AS $uni => $originalGlyphIdx) {			$codeToGlyph[$uni] = $glyphSet[$originalGlyphIdx] ;		}		$this->codeToGlyph = $codeToGlyph;		ksort($subsetglyphs);		foreach($subsetglyphs AS $originalGlyphIdx => $uni) {			$this->getGlyphs($originalGlyphIdx, $start, $glyphSet, $subsetglyphs);		}		$numGlyphs = $numberOfHMetrics = count($subsetglyphs );		///////////////////////////////////		// name - table copied from the original		///////////////////////////////////		$this->add('name', $this->get_table('name'));		///////////////////////////////////		//tables copied from the original		///////////////////////////////////		// mPDF 5.0.067  // 5.1.020		$tags = array ('cvt ', 'fpgm', 'prep', 'gasp');		foreach($tags AS $tag) {			if (isset($this->tables[$tag])) { $this->add($tag, $this->get_table($tag)); }		}		///////////////////////////////////		// post - PostScript		///////////////////////////////////		if (isset($this->tables['post'])) {			$opost = $this->get_table('post');			$post = "\x00\x03\x00\x00" . substr($opost,4,12) . "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00";			$this->add('post', $post);		}		///////////////////////////////////		// Sort CID2GID map into segments of contiguous codes		///////////////////////////////////		ksort($codeToGlyph);		unset($codeToGlyph[0]);		//unset($codeToGlyph[65535]);		$rangeid = 0;		$range = array();		$prevcid = -2;		$prevglidx = -1;		// for each character		foreach ($codeToGlyph as $cid => $glidx) {			if ($cid == ($prevcid + 1) && $glidx == ($prevglidx + 1)) {				$range[$rangeid][] = $glidx;			} else {				// new range				$rangeid = $cid;				$range[$rangeid] = array();				$range[$rangeid][] = $glidx;			}			$prevcid = $cid;			$prevglidx = $glidx;		}		///////////////////////////////////		// CMap table		///////////////////////////////////		// cmap - Character to glyph mapping 		$segCount = count($range) + 1;	// + 1 Last segment has missing character 0xFFFF		$searchRange = 1;		$entrySelector = 0;		while ($searchRange * 2 <= $segCount ) {			$searchRange = $searchRange * 2;			$entrySelector = $entrySelector + 1;		}		$searchRange = $searchRange * 2;		$rangeShift = $segCount * 2 - $searchRange;		$length = 16 + (8*$segCount ) + ($numGlyphs+1);		// mPDF 5.3.30		$cmap = array(0, 3,		// Index : version, number of encoding subtables			0, 0,				// Encoding Subtable : platform (UNI=0), encoding 0			0, 28,			// Encoding Subtable : offset (hi,lo)			0, 3,				// Encoding Subtable : platform (UNI=0), encoding 3			0, 28,			// Encoding Subtable : offset (hi,lo)			3, 1,				// Encoding Subtable : platform (MS=3), encoding 1			0, 28,			// Encoding Subtable : offset (hi,lo)			4, $length, 0, 		// Format 4 Mapping subtable: format, length, language			$segCount*2,			$searchRange,			$entrySelector,			$rangeShift);		// endCode(s)		foreach($range AS $start=>$subrange) {			$endCode = $start + (count($subrange)-1);			$cmap[] = $endCode;	// endCode(s)		}		$cmap[] =	0xFFFF;	// endCode of last Segment		$cmap[] =	0;	// reservedPad		// startCode(s)		foreach($range AS $start=>$subrange) {			$cmap[] = $start;	// startCode(s)		}		$cmap[] =	0xFFFF;	// startCode of last Segment		// idDelta(s) 		foreach($range AS $start=>$subrange) {			$idDelta = -($start-$subrange[0]);			$n += count($subrange);			$cmap[] = $idDelta;	// idDelta(s)		}		$cmap[] =	1;	// idDelta of last Segment		// idRangeOffset(s) 		foreach($range AS $subrange) {			$cmap[] = 0;	// idRangeOffset[segCount]  	Offset in bytes to glyph indexArray, or 0		}		$cmap[] =	0;	// idRangeOffset of last Segment		foreach($range AS $subrange) {			foreach($subrange AS $glidx) {				$cmap[] = $glidx;			}		}		$cmap[] = 0;	// Mapping for last character		$cmapstr = '';		foreach($cmap AS $cm) { $cmapstr .= pack("n",$cm); }		$this->add('cmap', $cmapstr);		///////////////////////////////////		// glyf - Glyph data		///////////////////////////////////		list($glyfOffset,$glyfLength) = $this->get_table_pos('glyf');		if ($glyfLength < $this->maxStrLenRead) {			$glyphData = $this->get_table('glyf');		}		$offsets = array();		$glyf = '';		$pos = 0;		$hmtxstr = '';		$xMinT = 0;		$yMinT = 0;		$xMaxT = 0;		$yMaxT = 0;		$advanceWidthMax = 0;		$minLeftSideBearing = 0;		$minRightSideBearing = 0;		$xMaxExtent = 0;		$maxPoints = 0;			// points in non-compound glyph		$maxContours = 0;			// contours in non-compound glyph		$maxComponentPoints = 0;	// points in compound glyph		$maxComponentContours = 0;	// contours in compound glyph		$maxComponentElements = 0;	// number of glyphs referenced at top level		$maxComponentDepth = 0;		// levels of recursion, set to 0 if font has only simple glyphs		$this->glyphdata = array();		foreach($subsetglyphs AS $originalGlyphIdx => $uni) {			// hmtx - Horizontal Metrics			$hm = $this->getHMetric($orignHmetrics, $originalGlyphIdx);			$hmtxstr .= $hm;			$offsets[] = $pos;			$glyphPos = $this->glyphPos[$originalGlyphIdx];			$glyphLen = $this->glyphPos[$originalGlyphIdx + 1] - $glyphPos;			if ($glyfLength < $this->maxStrLenRead) {				$data = substr($glyphData,$glyphPos,$glyphLen);			}			else {				if ($glyphLen > 0) $data = $this->get_chunk($glyfOffset+$glyphPos,$glyphLen);				else $data = '';			}			// mPDF 5.0			if ($glyphLen > 0) {			  if (_RECALC_PROFILE) {				$xMin = $this->unpack_short(substr($data,2,2));				$yMin = $this->unpack_short(substr($data,4,2));				$xMax = $this->unpack_short(substr($data,6,2));				$yMax = $this->unpack_short(substr($data,8,2));				$xMinT = min($xMinT,$xMin);				$yMinT = min($yMinT,$yMin);				$xMaxT = max($xMaxT,$xMax);				$yMaxT = max($yMaxT,$yMax);				$aw = $this->unpack_short(substr($hm,0,2)); 				$lsb = $this->unpack_short(substr($hm,2,2));				$advanceWidthMax = max($advanceWidthMax,$aw);				$minLeftSideBearing = min($minLeftSideBearing,$lsb);				$minRightSideBearing = min($minRightSideBearing,($aw - $lsb - ($xMax - $xMin)));				$xMaxExtent = max($xMaxExtent,($lsb + ($xMax - $xMin)));			   }				$up = unpack("n", substr($data,0,2));			}			if ($glyphLen > 2 && ($up[1] & (1 << 15)) ) {	// If number of contours <= -1 i.e. composiste glyph				$pos_in_glyph = 10;				$flags = GF_MORE;				$nComponentElements = 0;				while ($flags & GF_MORE) {					$nComponentElements += 1;	// number of glyphs referenced at top level					$up = unpack("n", substr($data,$pos_in_glyph,2));					$flags = $up[1];					$up = unpack("n", substr($data,$pos_in_glyph+2,2));					$glyphIdx = $up[1];					$this->glyphdata[$originalGlyphIdx]['compGlyphs'][] = $glyphIdx;					$data = $this->_set_ushort($data, $pos_in_glyph + 2, $glyphSet[$glyphIdx]);					$pos_in_glyph += 4;					if ($flags & GF_WORDS) { $pos_in_glyph += 4; }					else { $pos_in_glyph += 2; }					if ($flags & GF_SCALE) { $pos_in_glyph += 2; }					else if ($flags & GF_XYSCALE) { $pos_in_glyph += 4; }					else if ($flags & GF_TWOBYTWO) { $pos_in_glyph += 8; }				}				$maxComponentElements = max($maxComponentElements, $nComponentElements);			}			// mPDF 5.0 - Simple Glyph			else if (_RECALC_PROFILE && $glyphLen > 2 && $up[1] < (1 << 15) && $up[1] > 0) { 	// Number of contours > 0 simple glyph				$nContours = $up[1];				$this->glyphdata[$originalGlyphIdx]['nContours'] = $nContours;				$maxContours = max($maxContours, $nContours);				// Count number of points in simple glyph				$pos_in_glyph = 10 + ($nContours  * 2) - 2;	// Last endContourPoint				$up = unpack("n", substr($data,$pos_in_glyph,2));				$points = $up[1]+1;				$this->glyphdata[$originalGlyphIdx]['nPoints'] = $points;				$maxPoints = max($maxPoints, $points);			}			$glyf .= $data;			$pos += $glyphLen;			if ($pos % 4 != 0) {				$padding = 4 - ($pos % 4);				$glyf .= str_repeat("\0",$padding);				$pos += $padding;			}		}		if (_RECALC_PROFILE) {		   foreach($this->glyphdata AS $originalGlyphIdx => $val) {			$maxdepth = $depth = -1;			$points = 0;			$contours = 0;			$this->getGlyphData($originalGlyphIdx, $maxdepth, $depth, $points, $contours) ;			$maxComponentDepth = max($maxComponentDepth , $maxdepth);			$maxComponentPoints = max($maxComponentPoints , $points);			$maxComponentContours = max($maxComponentContours , $contours);		   }		}		$offsets[] = $pos;		$this->add('glyf', $glyf);		///////////////////////////////////		// hmtx - Horizontal Metrics		///////////////////////////////////		$this->add('hmtx', $hmtxstr);		///////////////////////////////////		// loca - Index to location		///////////////////////////////////		$locastr = '';		if ((($pos + 1) >> 1) > 0xFFFF) {			$indexToLocFormat = 1;        // long format			foreach($offsets AS $offset) { $locastr .= pack("N",$offset); }		}		else {			$indexToLocFormat = 0;        // short format			foreach($offsets AS $offset) { $locastr .= pack("n",($offset/2)); }		}		$this->add('loca', $locastr);		///////////////////////////////////		// head - Font header		///////////////////////////////////		$head = $this->get_table('head');		$head = $this->_set_ushort($head, 50, $indexToLocFormat);		if (_RECALC_PROFILE) {			$head = $this->_set_short($head, 36, $xMinT);	// for all glyph bounding boxes			$head = $this->_set_short($head, 38, $yMinT);	// for all glyph bounding boxes			$head = $this->_set_short($head, 40, $xMaxT);	// for all glyph bounding boxes			$head = $this->_set_short($head, 42, $yMaxT);	// for all glyph bounding boxes			// mPDF 5.3.33			$head[17] = chr($head[17] & ~(1 << 4)); 	// Unset Bit 4 (as hdmx/LTSH tables not included)		}		$this->add('head', $head);		///////////////////////////////////		// hhea - Horizontal Header		///////////////////////////////////		$hhea = $this->get_table('hhea');		$hhea = $this->_set_ushort($hhea, 34, $numberOfHMetrics);		if (_RECALC_PROFILE) {			$hhea = $this->_set_ushort($hhea, 10, $advanceWidthMax);				$hhea = $this->_set_short($hhea, 12, $minLeftSideBearing);				$hhea = $this->_set_short($hhea, 14, $minRightSideBearing);				$hhea = $this->_set_short($hhea, 16, $xMaxExtent);			}		$this->add('hhea', $hhea);		///////////////////////////////////		// maxp - Maximum Profile		///////////////////////////////////		$maxp = $this->get_table('maxp');		$maxp = $this->_set_ushort($maxp, 4, $numGlyphs);		if (_RECALC_PROFILE) {			$maxp = $this->_set_ushort($maxp, 6, $maxPoints);	// points in non-compound glyph			$maxp = $this->_set_ushort($maxp, 8, $maxContours);	// contours in non-compound glyph			$maxp = $this->_set_ushort($maxp, 10, $maxComponentPoints);	// points in compound glyph			$maxp = $this->_set_ushort($maxp, 12, $maxComponentContours);	// contours in compound glyph			$maxp = $this->_set_ushort($maxp, 28, $maxComponentElements);	// number of glyphs referenced at top level			$maxp = $this->_set_ushort($maxp, 30, $maxComponentDepth);	// levels of recursion, set to 0 if font has only simple glyphs		}		$this->add('maxp', $maxp);		///////////////////////////////////		// OS/2 - OS/2		///////////////////////////////////		if (isset($this->tables['OS/2'])) { 			// mPDF 5.2.03			$os2_offset = $this->seek_table("OS/2");			// mPDF 5.0			if (_RECALC_PROFILE) {				$fsSelection = $this->get_ushort($os2_offset+62);				$fsSelection = ($fsSelection & ~(1 << 6)); 	// 2-byte bit field containing information concerning the nature of the font patterns					// bit#0 = Italic; bit#5=Bold					// Match name table's font subfamily string					// Clear bit#6 used for 'Regular' and optional			}			// NB Currently this method never subsets characters above BMP			// Could set nonBMP bit according to $this->maxUni 			$nonBMP = $this->get_ushort($os2_offset+46);			$nonBMP = ($nonBMP & ~(1 << 9)); 	// Unset Bit 57 (indicates non-BMP) - for interactive forms			$os2 = $this->get_table('OS/2');			if (_RECALC_PROFILE) {				$os2 = $this->_set_ushort($os2, 62, $fsSelection);					// mPDF 5.2.03				$os2 = $this->_set_ushort($os2, 66, $fsLastCharIndex);				$os2 = $this->_set_ushort($os2, 42, 0x0000);	// ulCharRange (ulUnicodeRange) bits 24-31 | 16-23				$os2 = $this->_set_ushort($os2, 44, 0x0000);	// ulCharRange (Unicode ranges) bits  8-15 |  0-7				$os2 = $this->_set_ushort($os2, 46, $nonBMP);	// ulCharRange (Unicode ranges) bits 56-63 | 48-55				$os2 = $this->_set_ushort($os2, 48, 0x0000);	// ulCharRange (Unicode ranges) bits 40-47 | 32-39				$os2 = $this->_set_ushort($os2, 50, 0x0000);	// ulCharRange (Unicode ranges) bits  88-95 | 80-87				$os2 = $this->_set_ushort($os2, 52, 0x0000);	// ulCharRange (Unicode ranges) bits  72-79 | 64-71				$os2 = $this->_set_ushort($os2, 54, 0x0000);	// ulCharRange (Unicode ranges) bits  120-127 | 112-119				$os2 = $this->_set_ushort($os2, 56, 0x0000);	// ulCharRange (Unicode ranges) bits  104-111 | 96-103			}			$os2 = $this->_set_ushort($os2, 46, $nonBMP);	// Unset Bit 57 (indicates non-BMP) - for interactive forms			$this->add('OS/2', $os2 );		}		fclose($this->fh);		// Put the TTF file together		$stm = '';		$this->endTTFile($stm);		//file_put_contents('testfont.ttf', $stm); exit;		return $stm ;	}//================================================================================	// Also does SMP	function makeSubsetSIP($file, &$subset, $TTCfontID=0, $debug=false) {		$this->fh = fopen($file ,'rb') or die('Can\'t open file ' . $file);		$this->filename = $file;		$this->_pos = 0;		$this->charWidths = '';		$this->glyphPos = array();		$this->charToGlyph = array();		$this->tables = array();		$this->otables = array();		$this->ascent = 0;		$this->descent = 0;		$this->numTTCFonts = 0;		$this->TTCFonts = array();		$this->skip(4);		if ($TTCfontID > 0) {			$this->version = $version = $this->read_ulong();	// TTC Header version now			if (!in_array($version, array(0x00010000,0x00020000)))				die("ERROR - Error parsing TrueType Collection: version=".$version." - " . $file);			$this->numTTCFonts = $this->read_ulong();			for ($i=1; $i<=$this->numTTCFonts; $i++) {	      	      $this->TTCFonts[$i]['offset'] = $this->read_ulong();			}			$this->seek($this->TTCFonts[$TTCfontID]['offset']);			$this->version = $version = $this->read_ulong();	// TTFont version again now		}		$this->readTableDirectory($debug);		///////////////////////////////////		// head - Font header table		///////////////////////////////////		$this->seek_table("head");		$this->skip(50); 		$indexToLocFormat = $this->read_ushort();		$glyphDataFormat = $this->read_ushort();		///////////////////////////////////		// hhea - Horizontal header table		///////////////////////////////////		$this->seek_table("hhea");		$this->skip(32); 		$metricDataFormat = $this->read_ushort();		$orignHmetrics = $numberOfHMetrics = $this->read_ushort();		///////////////////////////////////		// maxp - Maximum profile table		///////////////////////////////////		$this->seek_table("maxp");		$this->skip(4);		$numGlyphs = $this->read_ushort();		///////////////////////////////////		// cmap - Character to glyph index mapping table		///////////////////////////////////		$cmap_offset = $this->seek_table("cmap");		$this->skip(2);		$cmapTableCount = $this->read_ushort();		$unicode_cmap_offset = 0;		for ($i=0;$i<$cmapTableCount;$i++) {			$platformID = $this->read_ushort();			$encodingID = $this->read_ushort();			$offset = $this->read_ulong();			$save_pos = $this->_pos;			// mPDF 5.3.30			if (($platformID == 3 && $encodingID == 10) || $platformID == 0) { // Microsoft, Unicode Format 12 table HKCS				$format = $this->get_ushort($cmap_offset + $offset);				if ($format == 12) {					$unicode_cmap_offset = $cmap_offset + $offset;					break;				}			}			$this->seek($save_pos );		}		if (!$unicode_cmap_offset)			die('Font does not have cmap for Unicode (platform 3, encoding 1, format 4, or platform 0, any encoding, format 4)');		// Format 12 CMAP does characters above Unicode BMP i.e. some HKCS characters U+20000 and above		if ($format == 12) {			$this->maxUniChar = 0;			$this->seek($unicode_cmap_offset + 4);			$length = $this->read_ulong();			$limit = $unicode_cmap_offset + $length;			$this->skip(4);			$nGroups = $this->read_ulong();			$glyphToChar = array();			$charToGlyph = array();			for($i=0; $i<$nGroups ; $i++) { 				$startCharCode = $this->read_ulong(); 				$endCharCode = $this->read_ulong(); 				$startGlyphCode = $this->read_ulong(); 				$offset = 0;				for ($unichar=$startCharCode;$unichar<=$endCharCode;$unichar++) {					$glyph = $startGlyphCode + $offset ;					$offset++;					$charToGlyph[$unichar] = $glyph;					if ($unichar < 196608) { $this->maxUniChar = max($unichar,$this->maxUniChar); }					$glyphToChar[$glyph][] = $unichar;				}			}		}		else 			die('Font does not have cmap for Unicode (format 12)');		///////////////////////////////////		// hmtx - Horizontal metrics table		///////////////////////////////////		$scale = 1; // not used here		$this->getHMTX($numberOfHMetrics, $numGlyphs, $glyphToChar, $scale);		///////////////////////////////////		// loca - Index to location		///////////////////////////////////		$this->getLOCA($indexToLocFormat, $numGlyphs);		///////////////////////////////////////////////////////////////////		$glyphMap = array(0=>0); 		$glyphSet = array(0=>0);		$codeToGlyph = array();		// mPDF 5.0.067  Set a substitute if ASCII characters do not have glyphs		if (isset($charToGlyph[0x3F])) { $subs = $charToGlyph[0x3F]; }	// Question mark		else { $subs = $charToGlyph[32]; }		foreach($subset AS $code) {			if (isset($charToGlyph[$code]))				$originalGlyphIdx = $charToGlyph[$code];			else if ($code<128) {	// mPDF 5.0.067				$originalGlyphIdx = $subs;			}			else { $originalGlyphIdx = 0; }			if (!isset($glyphSet[$originalGlyphIdx])) {				$glyphSet[$originalGlyphIdx] = count($glyphMap);				$glyphMap[] = $originalGlyphIdx;			}			$codeToGlyph[$code] = $glyphSet[$originalGlyphIdx];		}		list($start,$dummy) = $this->get_table_pos('glyf');		$n = 0;		while ($n < count($glyphMap)) {			$originalGlyphIdx = $glyphMap[$n];			$glyphPos = $this->glyphPos[$originalGlyphIdx];			$glyphLen = $this->glyphPos[$originalGlyphIdx + 1] - $glyphPos;			$n += 1;			if (!$glyphLen) continue;			$this->seek($start + $glyphPos);			$numberOfContours = $this->read_short();			if ($numberOfContours < 0) {				$this->skip(8);				$flags = GF_MORE;				while ($flags & GF_MORE) {					$flags = $this->read_ushort();					$glyphIdx = $this->read_ushort();					if (!isset($glyphSet[$glyphIdx])) {						$glyphSet[$glyphIdx] = count($glyphMap);						$glyphMap[] = $glyphIdx;					}					if ($flags & GF_WORDS)						$this->skip(4);					else						$this->skip(2);					if ($flags & GF_SCALE)						$this->skip(2);					else if ($flags & GF_XYSCALE)						$this->skip(4);					else if ($flags & GF_TWOBYTWO)						$this->skip(8);				}			}		}		$numGlyphs = $n = count($glyphMap);		$numberOfHMetrics = $n;		///////////////////////////////////		// name		///////////////////////////////////		// Needs to have a name entry in 3,0 (e.g. symbol) - original font will be 3,1 (i.e. Unicode)		$name = $this->get_table('name'); 		$name_offset = $this->seek_table("name");		$format = $this->read_ushort();		$numRecords = $this->read_ushort();		$string_data_offset = $name_offset + $this->read_ushort();		for ($i=0;$i<$numRecords; $i++) {			$platformId = $this->read_ushort();			$encodingId = $this->read_ushort();			if ($platformId == 3 && $encodingId == 1) {				$pos = 6 + ($i * 12) + 2;				$name = $this->_set_ushort($name, $pos, 0x00);	// Change encoding to 3,0 rather than 3,1			}			$this->skip(8);		}		$this->add('name', $name);		///////////////////////////////////		// OS/2		///////////////////////////////////		if (isset($this->tables['OS/2'])) { 			$os2 = $this->get_table('OS/2');			$os2 = $this->_set_ushort($os2, 42, 0x00);	// ulCharRange (Unicode ranges)			$os2 = $this->_set_ushort($os2, 44, 0x00);	// ulCharRange (Unicode ranges)			$os2 = $this->_set_ushort($os2, 46, 0x00);	// ulCharRange (Unicode ranges)			$os2 = $this->_set_ushort($os2, 48, 0x00);	// ulCharRange (Unicode ranges)			$os2 = $this->_set_ushort($os2, 50, 0x00);	// ulCharRange (Unicode ranges)			$os2 = $this->_set_ushort($os2, 52, 0x00);	// ulCharRange (Unicode ranges)			$os2 = $this->_set_ushort($os2, 54, 0x00);	// ulCharRange (Unicode ranges)			$os2 = $this->_set_ushort($os2, 56, 0x00);	// ulCharRange (Unicode ranges)			// Set Symbol character only in ulCodePageRange			$os2 = $this->_set_ushort($os2, 78, 0x8000);	// ulCodePageRange = Bit #31 Symbol ****  78 = Bit 16-31			$os2 = $this->_set_ushort($os2, 80, 0x0000);	// ulCodePageRange = Bit #31 Symbol ****  80 = Bit 0-15			$os2 = $this->_set_ushort($os2, 82, 0x0000);	// ulCodePageRange = Bit #32- Symbol **** 82 = Bits 48-63			$os2 = $this->_set_ushort($os2, 84, 0x0000);	// ulCodePageRange = Bit #32- Symbol **** 84 = Bits 32-47				$os2 = $this->_set_ushort($os2, 64, 0x01);		// FirstCharIndex			$os2 = $this->_set_ushort($os2, 66, count($subset));		// LastCharIndex			// Set PANOSE first bit to 5 for Symbol 	mPDF 5.0.017			$os2 = $this->splice($os2, 32, chr(5).chr(0).chr(1).chr(0).chr(1).chr(0).chr(0).chr(0).chr(0).chr(0));			$this->add('OS/2', $os2 );		}		///////////////////////////////////		//tables copied from the original		///////////////////////////////////		// mPDF 5.1.020	// mPDF 5.1.022		$tags = array ('cvt ', 'fpgm', 'prep', 'gasp');			foreach($tags AS $tag) { 	// 1.02			if (isset($this->tables[$tag])) { $this->add($tag, $this->get_table($tag)); } 		}		///////////////////////////////////		// post - PostScript		///////////////////////////////////		if (isset($this->tables['post'])) { 			$opost = $this->get_table('post');			$post = "\x00\x03\x00\x00" . substr($opost,4,12) . "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00";		}		$this->add('post', $post);		///////////////////////////////////		// hhea - Horizontal Header		///////////////////////////////////		$hhea = $this->get_table('hhea');		$hhea = $this->_set_ushort($hhea, 34, $numberOfHMetrics);		$this->add('hhea', $hhea);		///////////////////////////////////		// maxp - Maximum Profile		///////////////////////////////////		$maxp = $this->get_table('maxp');		$maxp = $this->_set_ushort($maxp, 4, $numGlyphs);		$this->add('maxp', $maxp);		///////////////////////////////////		// CMap table Formats [1,0,]6 and [3,0,]4		///////////////////////////////////		///////////////////////////////////		// Sort CID2GID map into segments of contiguous codes		///////////////////////////////////		$rangeid = 0;		$range = array();		$prevcid = -2;		$prevglidx = -1;		// for each character		foreach ($subset as $cid => $code) {			$glidx = $codeToGlyph[$code]; 			if ($cid == ($prevcid + 1) && $glidx == ($prevglidx + 1)) {				$range[$rangeid][] = $glidx;			} else {				// new range				$rangeid = $cid;				$range[$rangeid] = array();				$range[$rangeid][] = $glidx;			}			$prevcid = $cid;			$prevglidx = $glidx;		}		// cmap - Character to glyph mapping 		$segCount = count($range) + 1;	// + 1 Last segment has missing character 0xFFFF		$searchRange = 1;		$entrySelector = 0;		while ($searchRange * 2 <= $segCount ) {			$searchRange = $searchRange * 2;			$entrySelector = $entrySelector + 1;		}		$searchRange = $searchRange * 2;		$rangeShift = $segCount * 2 - $searchRange;		$length = 16 + (8*$segCount ) + ($numGlyphs+1);		$cmap = array(			4, $length, 0, 		// Format 4 Mapping subtable: format, length, language			$segCount*2,			$searchRange,			$entrySelector,			$rangeShift);		// endCode(s)		foreach($range AS $start=>$subrange) {			$endCode = $start + (count($subrange)-1);			$cmap[] = $endCode;	// endCode(s)		}		$cmap[] =	0xFFFF;	// endCode of last Segment		$cmap[] =	0;	// reservedPad		// startCode(s)		foreach($range AS $start=>$subrange) {			$cmap[] = $start;	// startCode(s)		}		$cmap[] =	0xFFFF;	// startCode of last Segment		// idDelta(s) 		foreach($range AS $start=>$subrange) {			$idDelta = -($start-$subrange[0]);			$n += count($subrange);			$cmap[] = $idDelta;	// idDelta(s)		}		$cmap[] =	1;	// idDelta of last Segment		// idRangeOffset(s) 		foreach($range AS $subrange) {			$cmap[] = 0;	// idRangeOffset[segCount]  	Offset in bytes to glyph indexArray, or 0		}		$cmap[] =	0;	// idRangeOffset of last Segment		foreach($range AS $subrange) {			foreach($subrange AS $glidx) {				$cmap[] = $glidx;			}		}		$cmap[] = 0;	// Mapping for last character		$cmapstr4 = '';		foreach($cmap AS $cm) { $cmapstr4 .= pack("n",$cm); }		///////////////////////////////////		// cmap - Character to glyph mapping		///////////////////////////////////		$entryCount = count($subset);		$length = 10 + $entryCount * 2;		$off = 20 + $length;		$hoff = $off >> 16;		$loff = $off & 0xFFFF;		$cmap = array(0, 2,	// Index : version, number of subtables			1, 0,			// Subtable : platform, encoding			0, 20,		// offset (hi,lo)			3, 0,			// Subtable : platform, encoding			$hoff, $loff,	// offset (hi,lo)			6, $length, 	// Format 6 Mapping table: format, length			0, 1,			// language, First char code			$entryCount		);		$cmapstr = '';		foreach($subset AS $code) { $cmap[] = $codeToGlyph[$code]; }		foreach($cmap AS $cm) { $cmapstr .= pack("n",$cm); }		$cmapstr .= $cmapstr4;		$this->add('cmap', $cmapstr);		///////////////////////////////////		// hmtx - Horizontal Metrics		///////////////////////////////////		$hmtxstr = '';		for($n=0;$n<$numGlyphs;$n++) {			$originalGlyphIdx = $glyphMap[$n];			$hm = $this->getHMetric($orignHmetrics, $originalGlyphIdx);			$hmtxstr .= $hm;		}		$this->add('hmtx', $hmtxstr);		///////////////////////////////////		// glyf - Glyph data		///////////////////////////////////		list($glyfOffset,$glyfLength) = $this->get_table_pos('glyf');		if ($glyfLength < $this->maxStrLenRead) {			$glyphData = $this->get_table('glyf');		}		$offsets = array();		$glyf = '';		$pos = 0;		for ($n=0;$n<$numGlyphs;$n++) {			$offsets[] = $pos;			$originalGlyphIdx = $glyphMap[$n];			$glyphPos = $this->glyphPos[$originalGlyphIdx];			$glyphLen = $this->glyphPos[$originalGlyphIdx + 1] - $glyphPos;			if ($glyfLength < $this->maxStrLenRead) {				$data = substr($glyphData,$glyphPos,$glyphLen);			}			else {				if ($glyphLen > 0) $data = $this->get_chunk($glyfOffset+$glyphPos,$glyphLen);				else $data = '';			}			if ($glyphLen > 0) $up = unpack("n", substr($data,0,2));			if ($glyphLen > 2 && ($up[1] & (1 << 15)) ) {				$pos_in_glyph = 10;				$flags = GF_MORE;				while ($flags & GF_MORE) {					$up = unpack("n", substr($data,$pos_in_glyph,2));					$flags = $up[1];					$up = unpack("n", substr($data,$pos_in_glyph+2,2));					$glyphIdx = $up[1];					$data = $this->_set_ushort($data, $pos_in_glyph + 2, $glyphSet[$glyphIdx]);					$pos_in_glyph += 4;					if ($flags & GF_WORDS) { $pos_in_glyph += 4; }					else { $pos_in_glyph += 2; }					if ($flags & GF_SCALE) { $pos_in_glyph += 2; }					else if ($flags & GF_XYSCALE) { $pos_in_glyph += 4; }					else if ($flags & GF_TWOBYTWO) { $pos_in_glyph += 8; }				}			}			$glyf .= $data;			$pos += $glyphLen;			if ($pos % 4 != 0) {				$padding = 4 - ($pos % 4);				$glyf .= str_repeat("\0",$padding);				$pos += $padding;			}		}		$offsets[] = $pos;		$this->add('glyf', $glyf);		///////////////////////////////////		// loca - Index to location		///////////////////////////////////		$locastr = '';		if ((($pos + 1) >> 1) > 0xFFFF) {			$indexToLocFormat = 1;        // long format			foreach($offsets AS $offset) { $locastr .= pack("N",$offset); }		}		else {			$indexToLocFormat = 0;        // short format			foreach($offsets AS $offset) { $locastr .= pack("n",($offset/2)); }		}		$this->add('loca', $locastr);		///////////////////////////////////		// head - Font header		///////////////////////////////////		$head = $this->get_table('head');		$head = $this->_set_ushort($head, 50, $indexToLocFormat);		$this->add('head', $head);		fclose($this->fh);		// Put the TTF file together		$stm = '';		$this->endTTFile($stm);		//file_put_contents('testfont.ttf', $stm); exit;		return $stm ;	}	//////////////////////////////////////////////////////////////////////////////////	// Recursively get composite glyph data	function getGlyphData($originalGlyphIdx, &$maxdepth, &$depth, &$points, &$contours) {		$depth++;		$maxdepth = max($maxdepth, $depth);		if (count($this->glyphdata[$originalGlyphIdx]['compGlyphs'])) {			foreach($this->glyphdata[$originalGlyphIdx]['compGlyphs'] AS $glyphIdx) {				$this->getGlyphData($glyphIdx, $maxdepth, $depth, $points, $contours);			}		}		else if (($this->glyphdata[$originalGlyphIdx]['nContours'] > 0) && $depth > 0) {	// simple			$contours += $this->glyphdata[$originalGlyphIdx]['nContours'];			$points += $this->glyphdata[$originalGlyphIdx]['nPoints'];		}		$depth--;	}	//////////////////////////////////////////////////////////////////////////////////	// Recursively get composite glyphs	function getGlyphs($originalGlyphIdx, &$start, &$glyphSet, &$subsetglyphs) {		$glyphPos = $this->glyphPos[$originalGlyphIdx];		$glyphLen = $this->glyphPos[$originalGlyphIdx + 1] - $glyphPos;		if (!$glyphLen) { 			return;		}		$this->seek($start + $glyphPos);		$numberOfContours = $this->read_short();		if ($numberOfContours < 0) {			$this->skip(8);			$flags = GF_MORE;			while ($flags & GF_MORE) {				$flags = $this->read_ushort();				$glyphIdx = $this->read_ushort();				if (!isset($glyphSet[$glyphIdx])) {					$glyphSet[$glyphIdx] = count($subsetglyphs);	// old glyphID to new glyphID					$subsetglyphs[$glyphIdx] = true;				}				$savepos = ftell($this->fh);				$this->getGlyphs($glyphIdx, $start, $glyphSet, $subsetglyphs);				$this->seek($savepos);				if ($flags & GF_WORDS)					$this->skip(4);				else					$this->skip(2);				if ($flags & GF_SCALE)					$this->skip(2);				else if ($flags & GF_XYSCALE)					$this->skip(4);				else if ($flags & GF_TWOBYTWO)					$this->skip(8);			}		}	}	//////////////////////////////////////////////////////////////////////////////////	function getHMTX($numberOfHMetrics, $numGlyphs, &$glyphToChar, $scale) {		$start = $this->seek_table("hmtx");		$aw = 0;		$this->charWidths = str_pad('', 256*256*2, "\x00");		if ($this->maxUniChar > 65536) { $this->charWidths .= str_pad('', 256*256*2, "\x00"); }	// Plane 1 SMP		if ($this->maxUniChar > 131072) { $this->charWidths .= str_pad('', 256*256*2, "\x00"); }	// Plane 2 SMP		$nCharWidths = 0;		if (($numberOfHMetrics*4) < $this->maxStrLenRead) {			$data = $this->get_chunk($start,($numberOfHMetrics*4));			$arr = unpack("n*", $data);		}		else { $this->seek($start); }		for( $glyph=0; $glyph<$numberOfHMetrics; $glyph++) {			if (($numberOfHMetrics*4) < $this->maxStrLenRead) {				$aw = $arr[($glyph*2)+1];			}			else {				$aw = $this->read_ushort();				$lsb = $this->read_ushort();			}			if (isset($glyphToChar[$glyph]) || $glyph == 0) {				if ($aw >= (1 << 15) ) { $aw = 0; }	// 1.03 Some (arabic) fonts have -ve values for width					// although should be unsigned value - comes out as e.g. 65108 (intended -50)				if ($glyph == 0) {					$this->defaultWidth = $scale*$aw;					continue;				}				foreach($glyphToChar[$glyph] AS $char) {					//$this->charWidths[$char] = intval(round($scale*$aw));					if ($char != 0 && $char != 65535) { 						$w = intval(round($scale*$aw));						if ($w == 0) { $w = 65535; }						if ($char < 196608) {							$this->charWidths[$char*2] = chr($w >> 8);							$this->charWidths[$char*2 + 1] = chr($w & 0xFF);							$nCharWidths++;						}					}				}			}		}		$data = $this->get_chunk(($start+$numberOfHMetrics*4),($numGlyphs*2));		$arr = unpack("n*", $data);		$diff = $numGlyphs-$numberOfHMetrics;		$w = intval(round($scale*$aw));	// mPDF 5.3.32		if ($w == 0) { $w = 65535; }	// mPDF 5.3.32		for( $pos=0; $pos<$diff; $pos++) {			$glyph = $pos + $numberOfHMetrics;			if (isset($glyphToChar[$glyph])) {				foreach($glyphToChar[$glyph] AS $char) {					if ($char != 0 && $char != 65535) {						if ($char < 196608) { 							$this->charWidths[$char*2] = chr($w >> 8);							$this->charWidths[$char*2 + 1] = chr($w & 0xFF);							$nCharWidths++;						}					}				}			}		}		// NB 65535 is a set width of 0		// First bytes define number of chars in font		$this->charWidths[0] = chr($nCharWidths >> 8);		$this->charWidths[1] = chr($nCharWidths & 0xFF);	}	function getHMetric($numberOfHMetrics, $gid) {		$start = $this->seek_table("hmtx");		if ($gid < $numberOfHMetrics) {			$this->seek($start+($gid*4));			$hm = fread($this->fh,4);		}		else {			$this->seek($start+(($numberOfHMetrics-1)*4));			$hm = fread($this->fh,2);			$this->seek($start+($numberOfHMetrics*2)+($gid*2));			$hm .= fread($this->fh,2);		}		return $hm;	}	function getLOCA($indexToLocFormat, $numGlyphs) {		$start = $this->seek_table('loca');		$this->glyphPos = array();		if ($indexToLocFormat == 0) {			$data = $this->get_chunk($start,($numGlyphs*2)+2);			$arr = unpack("n*", $data);			for ($n=0; $n<=$numGlyphs; $n++) {				$this->glyphPos[] = ($arr[$n+1] * 2);			}		}		else if ($indexToLocFormat == 1) {			$data = $this->get_chunk($start,($numGlyphs*4)+4);			$arr = unpack("N*", $data);			for ($n=0; $n<=$numGlyphs; $n++) {				$this->glyphPos[] = ($arr[$n+1]);			}		}		else 			die('Unknown location table format '.$indexToLocFormat);	}	// CMAP Format 4	function getCMAP4($unicode_cmap_offset, &$glyphToChar, &$charToGlyph ) {		$this->maxUniChar = 0;			$this->seek($unicode_cmap_offset + 2);		$length = $this->read_ushort();		$limit = $unicode_cmap_offset + $length;		$this->skip(2);		$segCount = $this->read_ushort() / 2;		$this->skip(6);		$endCount = array();		for($i=0; $i<$segCount; $i++) { $endCount[] = $this->read_ushort(); }		$this->skip(2);		$startCount = array();		for($i=0; $i<$segCount; $i++) { $startCount[] = $this->read_ushort(); }		$idDelta = array();		for($i=0; $i<$segCount; $i++) { $idDelta[] = $this->read_short(); }		// ???? was unsigned short		$idRangeOffset_start = $this->_pos;		$idRangeOffset = array();		for($i=0; $i<$segCount; $i++) { $idRangeOffset[] = $this->read_ushort(); }		for ($n=0;$n<$segCount;$n++) {			$endpoint = ($endCount[$n] + 1);			for ($unichar=$startCount[$n];$unichar<$endpoint;$unichar++) {				if ($idRangeOffset[$n] == 0)					$glyph = ($unichar + $idDelta[$n]) & 0xFFFF;				else {					$offset = ($unichar - $startCount[$n]) * 2 + $idRangeOffset[$n];					$offset = $idRangeOffset_start + 2 * $n + $offset;					if ($offset >= $limit)						$glyph = 0;					else {						$glyph = $this->get_ushort($offset);						if ($glyph != 0)						   $glyph = ($glyph + $idDelta[$n]) & 0xFFFF;					}				}				$charToGlyph[$unichar] = $glyph;				if ($unichar < 196608) { $this->maxUniChar = max($unichar,$this->maxUniChar); }				$glyphToChar[$glyph][] = $unichar;			}		}	}		// Put the TTF file together	function endTTFile(&$stm) {		$stm = '';		$numTables = count($this->otables);		$searchRange = 1;		$entrySelector = 0;		while ($searchRange * 2 <= $numTables) {			$searchRange = $searchRange * 2;			$entrySelector = $entrySelector + 1;		}		$searchRange = $searchRange * 16;		$rangeShift = $numTables * 16 - $searchRange;		// Header		if (_TTF_MAC_HEADER) {			$stm .= (pack("Nnnnn", 0x74727565, $numTables, $searchRange, $entrySelector, $rangeShift));	// Mac		}		else {			$stm .= (pack("Nnnnn", 0x00010000 , $numTables, $searchRange, $entrySelector, $rangeShift));	// Windows		}		// Table directory		$tables = $this->otables;		ksort ($tables); 		$offset = 12 + $numTables * 16;		foreach ($tables AS $tag=>$data) {			if ($tag == 'head') { $head_start = $offset; }			$stm .= $tag;			$checksum = $this->calcChecksum($data);			$stm .= pack("nn", $checksum[0],$checksum[1]);			$stm .= pack("NN", $offset, strlen($data));			$paddedLength = (strlen($data)+3)&~3;			$offset = $offset + $paddedLength;		}		// Table data		foreach ($tables AS $tag=>$data) {			$data .= "\0\0\0";			$stm .= substr($data,0,(strlen($data)&~3));		}		$checksum = $this->calcChecksum($stm);		$checksum = $this->sub32(array(0xB1B0,0xAFBA), $checksum);		$chk = pack("nn", $checksum[0],$checksum[1]);		$stm = $this->splice($stm,($head_start + 8),$chk);		return $stm ;	}	function repackageTTF($file, $TTCfontID=0, $debug=false) {		$this->filename = $file;		$this->fh = fopen($file ,'rb') or die('Can\'t open file ' . $file);		$this->_pos = 0;		$this->charWidths = '';		$this->glyphPos = array();		$this->charToGlyph = array();		$this->tables = array();		$this->otables = array();		$this->ascent = 0;		$this->descent = 0;		$this->numTTCFonts = 0;		$this->TTCFonts = array();		$this->skip(4);		$this->maxUni = 0;		if ($TTCfontID > 0) {			$this->version = $version = $this->read_ulong();	// TTC Header version now			if (!in_array($version, array(0x00010000,0x00020000)))				die("ERROR - Error parsing TrueType Collection: version=".$version." - " . $file);			$this->numTTCFonts = $this->read_ulong();			for ($i=1; $i<=$this->numTTCFonts; $i++) {	      	      $this->TTCFonts[$i]['offset'] = $this->read_ulong();			}			$this->seek($this->TTCFonts[$TTCfontID]['offset']);			$this->version = $version = $this->read_ulong();	// TTFont version again now		}		$this->readTableDirectory($debug);		$tags = array ('OS/2', 'cmap', 'glyf', 'head', 'hhea', 'hmtx', 'loca', 'maxp', 'name', 'post', 'cvt ', 'fpgm', 'gasp', 'prep');/*Tables which require glyphIndexhdmxkernLTSHTables which do NOT require glyphIndexVDMXGDEFGPOSGSUBJSTFDSIGPCLT - not recommended*/		foreach($tags AS $tag) {			if (isset($this->tables[$tag])) { $this->add($tag, $this->get_table($tag)); }		}		fclose($this->fh);		$stm = '';		$this->endTTFile($stm);		return $stm ;	}}?>
 |