]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Related to Bugzilla #47232:
authorJeremias Maerki <jeremias@apache.org>
Sat, 6 Feb 2010 18:19:31 +0000 (18:19 +0000)
committerJeremias Maerki <jeremias@apache.org>
Sat, 6 Feb 2010 18:19:31 +0000 (18:19 +0000)
The same bug that existed for Type 1 fonts (fixed in rev 777459) also applies to TrueType fonts. The last glyph in a font was reported to have zero width. Bug exists since 2001.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@907265 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fonts/MultiByteFont.java

index b22b92e2f81450de8ddf68f7e57a363551ed7212..1e6bd4f847df3b3d0e64493deed12b6c55633401 100644 (file)
@@ -147,7 +147,7 @@ public class MultiByteFont extends CIDFont {
     /** {@inheritDoc} */
     public int[] getWidths() {
         int[] arr = new int[width.length];
-        System.arraycopy(width, 0, arr, 0, width.length - 1);
+        System.arraycopy(width, 0, arr, 0, width.length);
         return arr;
     }