*/
public static CustomFont loadFont(File fontFile, String subFontName,
boolean embedded, EncodingMode encodingMode, FontResolver resolver) throws IOException {
- return loadFont(fontFile.getAbsolutePath(), subFontName,
- embedded, encodingMode, true, resolver);
+ return loadFont(fontFile.toURI().toURL(), subFontName,
+ embedded, encodingMode, resolver);
}
/**
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.apache.fop.fonts.DejaVuLGCSerifTest;
import org.apache.fop.fonts.TrueTypeAnsiTestCase;
import org.apache.fop.image.loader.batik.ImageLoaderTestCase;
import org.apache.fop.image.loader.batik.ImagePreloaderTestCase;
suite.addTest(new TestSuite(PDFCMapTestCase.class));
suite.addTest(new TestSuite(PDFsRGBSettingsTestCase.class));
suite.addTest(new TestSuite(TrueTypeAnsiTestCase.class));
+ suite.addTest(new TestSuite(DejaVuLGCSerifTest.class));
suite.addTest(RichTextFormatTestSuite.suite());
suite.addTest(new TestSuite(ImageLoaderTestCase.class));
suite.addTest(new TestSuite(ImagePreloaderTestCase.class));
--- /dev/null
+/*
+ * 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.fonts;
+
+import java.io.File;
+
+import junit.framework.TestCase;
+
+/**
+ *
+ */
+public class DejaVuLGCSerifTest extends TestCase {
+
+ private FontResolver fontResolver = FontManager.createMinimalFontResolver();
+ private CustomFont font;
+
+ /**
+ * sets up the testcase by loading the DejaVu Font.
+ *
+ * @throws Exception
+ * if the test fails.
+ */
+ public void setUp() throws Exception {
+ File file = new File("test/resources/fonts/DejaVuLGCSerif.ttf");
+ font = FontLoader.loadFont(file, "", true, EncodingMode.AUTO,
+ fontResolver);
+ }
+
+ /**
+ * Simple test to see if font name was detected correctly.
+ */
+ public void testFontName() {
+ assertEquals("DejaVu", font.getFontName());
+ }
+}