Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

CustomFontMetricsMapper.java 5.7KB

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. }