summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Reischenbacher <matthias@apache.org>2018-05-10 14:30:38 +0000
committerMatthias Reischenbacher <matthias@apache.org>2018-05-10 14:30:38 +0000
commit6add9bfc3ecf09f50b49dacc11456586e68773dc (patch)
tree45e7769fc781c7ce428fbd9410211139da43e88d
parentf24243e01f0e8bc0e1aec2c8c263c8215561e099 (diff)
downloadxmlgraphics-fop-6add9bfc3ecf09f50b49dacc11456586e68773dc.tar.gz
xmlgraphics-fop-6add9bfc3ecf09f50b49dacc11456586e68773dc.zip
FOP-2572: fix ArrayIndexOutOfBoundsException if font supports kerninig
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1831346 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--fop-core/src/main/java/org/apache/fop/svg/font/FOPGVTGlyphVector.java9
-rw-r--r--fop-core/src/test/java/org/apache/fop/svg/font/KerningGlyphLayoutTestCase.java89
2 files changed, 97 insertions, 1 deletions
diff --git a/fop-core/src/main/java/org/apache/fop/svg/font/FOPGVTGlyphVector.java b/fop-core/src/main/java/org/apache/fop/svg/font/FOPGVTGlyphVector.java
index 3447f4a24..106469258 100644
--- a/fop-core/src/main/java/org/apache/fop/svg/font/FOPGVTGlyphVector.java
+++ b/fop-core/src/main/java/org/apache/fop/svg/font/FOPGVTGlyphVector.java
@@ -89,7 +89,7 @@ public class FOPGVTGlyphVector implements GVTGlyphVector {
public void performDefaultLayout() {
Font f = font.getFont();
MinOptMax letterSpaceIPD = MinOptMax.ZERO;
- MinOptMax[] letterSpaceAdjustments = new MinOptMax[text.getEndIndex() - text.getBeginIndex()];
+ MinOptMax[] letterSpaceAdjustments = new MinOptMax[text.getEndIndex()];
boolean retainControls = false;
GlyphMapping mapping = GlyphMapping.doGlyphMapping(text, text.getBeginIndex(), text.getEndIndex(),
f, letterSpaceIPD, letterSpaceAdjustments, '\0', '\0',
@@ -99,6 +99,13 @@ public class FOPGVTGlyphVector implements GVTGlyphVector {
this.glyphs = buildGlyphs(f, glyphAsCharIter);
this.associations = mapping.associations;
this.gposAdjustments = mapping.gposAdjustments;
+ if (text.getBeginIndex() > 0) {
+ int arrlen = text.getEndIndex() - text.getBeginIndex();
+ MinOptMax[] letterSpaceAdjustmentsNew = new MinOptMax[arrlen];
+ System.arraycopy(letterSpaceAdjustments, text.getBeginIndex(), letterSpaceAdjustmentsNew,
+ 0, arrlen);
+ letterSpaceAdjustments = letterSpaceAdjustmentsNew;
+ }
this.positions = buildGlyphPositions(glyphAsCharIter, mapping.gposAdjustments, letterSpaceAdjustments);
this.glyphVisibilities = new boolean[this.glyphs.length];
Arrays.fill(glyphVisibilities, true);
diff --git a/fop-core/src/test/java/org/apache/fop/svg/font/KerningGlyphLayoutTestCase.java b/fop-core/src/test/java/org/apache/fop/svg/font/KerningGlyphLayoutTestCase.java
new file mode 100644
index 000000000..cc015ccb0
--- /dev/null
+++ b/fop-core/src/test/java/org/apache/fop/svg/font/KerningGlyphLayoutTestCase.java
@@ -0,0 +1,89 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* $Id$ */
+package org.apache.fop.svg.font;
+
+import org.apache.batik.gvt.font.GVTLineMetrics;
+import org.apache.fop.fonts.Font;
+import org.apache.fop.fonts.FontMetrics;
+import org.junit.Before;
+import org.junit.Test;
+
+import java.awt.geom.Point2D;
+import java.text.CharacterIterator;
+import java.text.StringCharacterIterator;
+
+import static org.junit.Assert.assertEquals;
+import static org.mockito.Matchers.anyInt;
+import static org.mockito.Matchers.eq;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+public class KerningGlyphLayoutTestCase extends FOPGVTGlyphVectorTest {
+ private final int fontSize = 37500;
+
+ @Before
+ public void createGlyphVector() {
+ FontMetrics metrics = mockFontMetrics();
+ Font font = mockFont(metrics);
+ FOPGVTFont gvtFont = mockGVTFont(font);
+ CharacterIterator it = new StringCharacterIterator("AVo", 1, 3, 1);
+ glyphVector = new FOPGVTGlyphVector(gvtFont, it, null);
+ glyphVector.performDefaultLayout();
+ }
+
+ private FontMetrics mockFontMetrics() {
+ FontMetrics metrics = mock(FontMetrics.class);
+ when(metrics.getWidth(eq(1), eq(fontSize))).thenReturn(25012000);
+ when(metrics.getWidth(eq(2), eq(fontSize))).thenReturn(22912000);
+ when(metrics.getWidth(eq(3), eq(fontSize))).thenReturn(20850000);
+ return metrics;
+ }
+
+ private Font mockFont(FontMetrics metrics) {
+ Font font = mock(Font.class);
+ when(font.getFontMetrics()).thenReturn(metrics);
+ when(font.getFontSize()).thenReturn(fontSize);
+ when(font.mapChar(eq('A'))).thenReturn((char) 1);
+ when(font.mapChar(eq('V'))).thenReturn((char) 2);
+ when(font.mapChar(eq('o'))).thenReturn((char) 3);
+ when(font.hasKerning()).thenReturn(true);
+ when(font.getCharWidth('A')).thenReturn(25012);
+ when(font.getCharWidth('V')).thenReturn(22912);
+ when(font.getCharWidth('o')).thenReturn(20850);
+ when(font.getCharWidth(65)).thenReturn(25012);
+ when(font.getCharWidth(86)).thenReturn(22912);
+ when(font.getCharWidth(111)).thenReturn(20850);
+ when(font.getKernValue('V', 'o')).thenReturn(-2812);
+ return font;
+ }
+
+ private FOPGVTFont mockGVTFont(Font font) {
+ FOPGVTFont gvtFont = mock(FOPGVTFont.class);
+ when(gvtFont.getFont()).thenReturn(font);
+ when(gvtFont.getLineMetrics(anyInt())).thenReturn(
+ new GVTLineMetrics(8, 0, null, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0));
+ return gvtFont;
+ }
+
+ @Test
+ public void testGlyphPositions() {
+ assertEquals(new Point2D.Float(20.1f, 0), glyphVector.getGlyphPosition(1));
+ assertEquals(new Point2D.Float(40.95f, 0), glyphVector.getGlyphPosition(2));
+ }
+}