コード例 #1
0
ファイル: AbstractSimple.php プロジェクト: niallmccrudden/zf2
 /**
  * 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);
 }