You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CustomFontMetricsMapper.java 5.7KB

Merged revisions 607034-611115 via svnmerge from https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk ........ r607036 | jeremias | 2007-12-27 11:51:11 +0100 (Do, 27 Dez 2007) | 1 line Don't just exit with no error message if the document contains no content. Pretty irritating if it does so. ........ r608812 | acumiskey | 2008-01-04 13:14:33 +0100 (Fr, 04 Jan 2008) | 3 lines The fonts variable would have always had an empty Configuration node (non-null value) even if a <fonts/> wasn't present in the fop configuration. ........ r609567 | jeremias | 2008-01-07 11:52:09 +0100 (Mo, 07 Jan 2008) | 4 lines Reenabled documentation for fox:destination. Enabled intermediate format functionality for fox:destination. Added a test case to check fox:destination. Deprecated FOP's XMLizable in favor of the XML Graphics Commons variant (and extend that variant). ........ r609627 | jeremias | 2008-01-07 16:06:24 +0100 (Mo, 07 Jan 2008) | 5 lines Bugzilla #44176: Support for custom fonts in Java2DRenderer and derived renderers. Submitted by: Patrick Jaromin <patrick.at.jgsullivan.dot.com> Patch modified slightly by jeremias. ........ r610020 | acumiskey | 2008-01-08 16:27:02 +0100 (Di, 08 Jan 2008) | 2 lines cleaned up ........ r610021 | acumiskey | 2008-01-08 16:28:56 +0100 (Di, 08 Jan 2008) | 2 lines Appears to be unused/referenced and superceeded by PageGroup ........ r610022 | acumiskey | 2008-01-08 16:34:07 +0100 (Di, 08 Jan 2008) | 2 lines cleaned up ........ r610023 | acumiskey | 2008-01-08 16:35:18 +0100 (Di, 08 Jan 2008) | 2 lines fixed javadoc ........ r610337 | vhennebert | 2008-01-09 12:02:08 +0100 (Mi, 09 Jan 2008) | 2 lines Fixed checkstyle issues: tabs and trailing spaces ........ r610355 | vhennebert | 2008-01-09 13:01:21 +0100 (Mi, 09 Jan 2008) | 2 lines keep-together is an inherited property ........ r610420 | acumiskey | 2008-01-09 16:40:25 +0100 (Mi, 09 Jan 2008) | 2 lines cleanup ........ r610704 | jeremias | 2008-01-10 08:38:47 +0100 (Do, 10 Jan 2008) | 1 line Added basic support for PDF page labels. ........ r610739 | jeremias | 2008-01-10 11:13:21 +0100 (Do, 10 Jan 2008) | 1 line PostScript output now generates the bounding box DSC comments for the whole document. ........ r610821 | vhennebert | 2008-01-10 16:53:20 +0100 (Do, 10 Jan 2008) | 4 lines - renamed variables for clarity - moved the computation of a cell's content length in PrimaryGridUnit - better javadoc for getHeight method in EffRow ........ r610848 | vhennebert | 2008-01-10 18:41:52 +0100 (Do, 10 Jan 2008) | 2 lines No need to check if the end of the cell is reached when creating the areas for a row ........ r610853 | vhennebert | 2008-01-10 18:54:16 +0100 (Do, 10 Jan 2008) | 2 lines Simplified addAreasAndFlushRow ........ r610886 | vhennebert | 2008-01-10 20:23:56 +0100 (Do, 10 Jan 2008) | 2 lines Removed endPart() method and moved its content into addAreasAndFlushRow() ........ r610891 | vhennebert | 2008-01-10 20:34:13 +0100 (Do, 10 Jan 2008) | 2 lines Removed accumulatedBPD which is redundant with yoffset ........ r610893 | vhennebert | 2008-01-10 20:35:24 +0100 (Do, 10 Jan 2008) | 2 lines The return value of addAreasAndFlushRow is never used, changed it to void ........ r610905 | vhennebert | 2008-01-10 20:57:29 +0100 (Do, 10 Jan 2008) | 2 lines Renamed lastRow into currentRow and yoffset into currentRowOffset ........ r611114 | jeremias | 2008-01-11 10:04:28 +0100 (Fr, 11 Jan 2008) | 2 lines Bugfix: Some string objects were not encrypted (for example in named destinations) I had to refactor the PDF library a little bit but since it only affects the inner API it shouldn't be a problem that I removed some methods which caused trouble because a didn't think about encryption when I worked on the PDF library last year. ........ git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_ImagePackageRedesign@611120 13f79535-47bb-0310-9956-ffa450edef68
16 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.render.java2d;
  19. import java.awt.Font;
  20. import java.awt.FontFormatException;
  21. import java.io.IOException;
  22. import java.io.InputStream;
  23. import java.util.Map;
  24. import java.util.Set;
  25. import javax.xml.transform.Source;
  26. import javax.xml.transform.stream.StreamSource;
  27. import org.apache.fop.fonts.CustomFont;
  28. import org.apache.fop.fonts.FontType;
  29. import org.apache.fop.fonts.LazyFont;
  30. import org.apache.fop.fonts.Typeface;
  31. /**
  32. * FontMetricsMapper that delegates most methods to an underlying
  33. * <tt>FontMetrics</tt> instance. This class was designed to allow
  34. * the underlying <tt>java.awt.Font</tt> to be loaded from a
  35. * user-configured file not registered in the current graphics environment.
  36. */
  37. public class CustomFontMetricsMapper extends Typeface implements FontMetricsMapper {
  38. /**
  39. * Font metrics for the font this class models.
  40. */
  41. private Typeface typeface;
  42. /**
  43. * The font required by the Java2D renderer.
  44. */
  45. private java.awt.Font font;
  46. /**
  47. * Maintains the most recently requested size.
  48. */
  49. private float size = 1;
  50. /**
  51. * Construction of this class results in the immediate construction.
  52. * of the underlying <tt>java.awt.Font</tt>
  53. * @param fontMetrics
  54. * @throws FontFormatException
  55. * @throws IOException
  56. */
  57. public CustomFontMetricsMapper(final CustomFont fontMetrics)
  58. throws FontFormatException, IOException {
  59. this.typeface = fontMetrics;
  60. initialize(fontMetrics.getEmbedFileSource());
  61. }
  62. /**
  63. * Construction of this class results in the immediate construction
  64. * of the underlying <tt>java.awt.Font</tt>
  65. * @param fontMetrics
  66. * @throws FontFormatException
  67. * @throws IOException
  68. */
  69. public CustomFontMetricsMapper(final LazyFont fontMetrics, final Source fontSource)
  70. throws FontFormatException, IOException {
  71. this.typeface = fontMetrics;
  72. initialize(fontSource);
  73. }
  74. private static final int TYPE1_FONT = 1; //Defined in Java 1.5
  75. /**
  76. * Loads the java.awt.Font
  77. * @param source
  78. * @throws FontFormatException
  79. * @throws IOException
  80. */
  81. private void initialize(final Source source)
  82. throws FontFormatException, IOException {
  83. int type = Font.TRUETYPE_FONT;
  84. if (FontType.TYPE1.equals(typeface.getFontType())) {
  85. type = TYPE1_FONT; //Font.TYPE1_FONT; only available in Java 1.5
  86. }
  87. InputStream is = null;
  88. if (source instanceof StreamSource) {
  89. is = ((StreamSource) source).getInputStream();
  90. } else if (source.getSystemId() != null) {
  91. is = new java.net.URL(source.getSystemId()).openStream();
  92. } else {
  93. throw new IllegalArgumentException("No font source provided.");
  94. }
  95. this.font = Font.createFont(type, is);
  96. is.close();
  97. }
  98. /** {@inheritDoc} */
  99. public final String getEncoding() {
  100. return null; //Not applicable to Java2D rendering
  101. }
  102. /** {@inheritDoc} */
  103. public final boolean hasChar(final char c) {
  104. return font.canDisplay(c);
  105. }
  106. /** {@inheritDoc} */
  107. public final char mapChar(final char c) {
  108. return typeface.mapChar(c);
  109. }
  110. /** {@inheritDoc} */
  111. public final Font getFont(final int size) {
  112. if (this.size == size) {
  113. return font;
  114. }
  115. this.size = size / 1000f;
  116. font = font.deriveFont(this.size);
  117. return font;
  118. }
  119. /** {@inheritDoc} */
  120. public final int getAscender(final int size) {
  121. return typeface.getAscender(size);
  122. }
  123. /** {@inheritDoc} */
  124. public final int getCapHeight(final int size) {
  125. return typeface.getCapHeight(size);
  126. }
  127. /** {@inheritDoc} */
  128. public final int getDescender(final int size) {
  129. return typeface.getDescender(size);
  130. }
  131. /** {@inheritDoc} */
  132. public final String getEmbedFontName() {
  133. return typeface.getEmbedFontName();
  134. }
  135. /** {@inheritDoc} */
  136. public final Set getFamilyNames() {
  137. return typeface.getFamilyNames();
  138. }
  139. /** {@inheritDoc} */
  140. public final String getFontName() {
  141. return typeface.getFontName();
  142. }
  143. /** {@inheritDoc} */
  144. public final FontType getFontType() {
  145. return typeface.getFontType();
  146. }
  147. /** {@inheritDoc} */
  148. public final String getFullName() {
  149. return typeface.getFullName();
  150. }
  151. /** {@inheritDoc} */
  152. public final Map getKerningInfo() {
  153. return typeface.getKerningInfo();
  154. }
  155. /** {@inheritDoc} */
  156. public final int getWidth(final int i, final int size) {
  157. return typeface.getWidth(i, size);
  158. }
  159. /** {@inheritDoc} */
  160. public final int[] getWidths() {
  161. return typeface.getWidths();
  162. }
  163. /** {@inheritDoc} */
  164. public final int getXHeight(final int size) {
  165. return typeface.getXHeight(size);
  166. }
  167. /** {@inheritDoc} */
  168. public final boolean hasKerningInfo() {
  169. return typeface.hasKerningInfo();
  170. }
  171. }