diff --git a/src/FontLib/EOT/File.php b/src/FontLib/EOT/File.php index 1e7f6e8..f51d876 100644 --- a/src/FontLib/EOT/File.php +++ b/src/FontLib/EOT/File.php @@ -75,7 +75,7 @@ public function read($n) { $string = (string) fread($this->f, $n); $chunks = mb_str_split($string, 2, '8bit'); - + $chunks = array_map("strrev", $chunks); return implode("", $chunks); }