diff -r 5b37998e522e -r 162c1de6545a web/lib/Zend/Pdf/Resource/Font/Simple.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/Zend/Pdf/Resource/Font/Simple.php Fri Mar 11 15:05:35 2011 +0100 @@ -0,0 +1,283 @@ +_resource->Encoding = new Zend_Pdf_Element_Name('WinAnsiEncoding'); + } + + /** + * Returns an array of glyph numbers corresponding to the Unicode characters. + * + * If a particular character doesn't exist in this font, the special 'missing + * character glyph' will be substituted. + * + * See also {@link glyphNumberForCharacter()}. + * + * @param array $characterCodes Array of Unicode character codes (code points). + * @return array Array of glyph numbers. + */ + public function glyphNumbersForCharacters($characterCodes) + { + return $this->_cmap->glyphNumbersForCharacters($characterCodes); + } + + /** + * Returns the glyph number corresponding to the Unicode character. + * + * If a particular character doesn't exist in this font, the special 'missing + * character glyph' will be substituted. + * + * See also {@link glyphNumbersForCharacters()} which is optimized for bulk + * operations. + * + * @param integer $characterCode Unicode character code (code point). + * @return integer Glyph number. + */ + public function glyphNumberForCharacter($characterCode) + { + return $this->_cmap->glyphNumberForCharacter($characterCode); + } + + /** + * Returns a number between 0 and 1 inclusive that indicates the percentage + * of characters in the string which are covered by glyphs in this font. + * + * Since no one font will contain glyphs for the entire Unicode character + * range, this method can be used to help locate a suitable font when the + * actual contents of the string are not known. + * + * Note that some fonts lie about the characters they support. Additionally, + * fonts don't usually contain glyphs for control characters such as tabs + * and line breaks, so it is rare that you will get back a full 1.0 score. + * The resulting value should be considered informational only. + * + * @param string $string + * @param string $charEncoding (optional) Character encoding of source text. + * If omitted, uses 'current locale'. + * @return float + */ + public function getCoveredPercentage($string, $charEncoding = '') + { + /* Convert the string to UTF-16BE encoding so we can match the string's + * character codes to those found in the cmap. + */ + if ($charEncoding != 'UTF-16BE') { + if (PHP_OS != 'AIX') { // AIX doesnt know what UTF-16BE is + $string = iconv($charEncoding, 'UTF-16BE', $string); + } + } + + $charCount = (PHP_OS != 'AIX') ? iconv_strlen($string, 'UTF-16BE') : strlen($string); + if ($charCount == 0) { + return 0; + } + + /* Fetch the covered character code list from the font's cmap. + */ + $coveredCharacters = $this->_cmap->getCoveredCharacters(); + + /* Calculate the score by doing a lookup for each character. + */ + $score = 0; + $maxIndex = strlen($string); + for ($i = 0; $i < $maxIndex; $i++) { + /** + * @todo Properly handle characters encoded as surrogate pairs. + */ + $charCode = (ord($string[$i]) << 8) | ord($string[++$i]); + /* This could probably be optimized a bit with a binary search... + */ + if (in_array($charCode, $coveredCharacters)) { + $score++; + } + } + return $score / $charCount; + } + + /** + * Returns the widths of the glyphs. + * + * The widths are expressed in the font's glyph space. You are responsible + * for converting to user space as necessary. See {@link unitsPerEm()}. + * + * See also {@link widthForGlyph()}. + * + * @param array &$glyphNumbers Array of glyph numbers. + * @return array Array of glyph widths (integers). + */ + public function widthsForGlyphs($glyphNumbers) + { + $widths = array(); + foreach ($glyphNumbers as $key => $glyphNumber) { + if (!isset($this->_glyphWidths[$glyphNumber])) { + $widths[$key] = $this->_missingGlyphWidth; + } else { + $widths[$key] = $this->_glyphWidths[$glyphNumber]; + } + } + return $widths; + } + + /** + * Returns the width of the glyph. + * + * Like {@link widthsForGlyphs()} but used for one glyph at a time. + * + * @param integer $glyphNumber + * @return integer + */ + public function widthForGlyph($glyphNumber) + { + if (!isset($this->_glyphWidths[$glyphNumber])) { + return $this->_missingGlyphWidth; + } + return $this->_glyphWidths[$glyphNumber]; + } + + /** + * Convert string to the font encoding. + * + * The method is used to prepare string for text drawing operators + * + * @param string $string + * @param string $charEncoding Character encoding of source text. + * @return string + */ + public function encodeString($string, $charEncoding) + { + if (PHP_OS == 'AIX') { + return $string; // returning here b/c AIX doesnt know what CP1252 is + } + + return iconv($charEncoding, 'CP1252//IGNORE', $string); + } + + /** + * Convert string from the font encoding. + * + * The method is used to convert strings retrieved from existing content streams + * + * @param string $string + * @param string $charEncoding Character encoding of resulting text. + * @return string + */ + public function decodeString($string, $charEncoding) + { + return iconv('CP1252', $charEncoding, $string); + } +}