コード例 #1
0
ファイル: AbstractFont.php プロジェクト: rexmac/zf2
 /**
  * Reads the Mac Roman-encoded string from the binary file at the current
  * offset location. Overridden to fix return character set at UTF-16BE.
  *
  * @param integer $byteCount Number of bytes (characters) to return.
  * @param string $characterSet (optional) --Ignored--
  * @return string
  * @throws \Zend\Pdf\Exception
  */
 public function readStringMacRoman($byteCount, $characterSet = '')
 {
     return parent::readStringMacRoman($byteCount, 'UTF-16BE');
 }