BuiltinFont.java 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /*
  2. * $Id: BuiltinFont.java,v 1.4 2009/03/15 20:47:38 tomoke Exp $
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
  5. * Santa Clara, California 95054, U.S.A. All rights reserved.
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. package com.sun.pdfview.font;
  22. import java.io.IOException;
  23. import java.io.InputStream;
  24. import java.util.Map;
  25. import java.util.Properties;
  26. import android.graphics.Typeface;
  27. import com.sun.pdfview.PDFObject;
  28. /**
  29. * This class represents the 14 built-in fonts. It reads these fonts
  30. * from files in the "res" directory, as specified in
  31. * BaseNames.properties.
  32. */
  33. public class BuiltinFont extends Type1Font {
  34. /** the properties file */
  35. private static Properties props;
  36. /** the fonts themselves */
  37. private static Map fonts;
  38. /** the names of the 14 base fonts */
  39. private static final String[] baseFonts = {
  40. "Courier", "Courier-Bold", "Courier-BoldOblique", "Courier-Oblique",
  41. "Helvetica", "Helvetica-Bold", "Helvetica-BoldOblique",
  42. "Helvetica-Oblique", "Times-Roman", "Times-Bold", "Times-BoldItalic",
  43. "Times-Italic", "Symbol", "ZapfDingbats"
  44. };
  45. /** fonts others (e.g. Acrobad PDFWriter 3.02 for Windows) assume
  46. * are there, even though they're not in the spec. Grrr...
  47. *
  48. * the format is <Name_in_PDF> <Builtin_To_Use>
  49. */
  50. private static final String[] mappedFonts = {
  51. // map arial to helvetica
  52. "Arial", "Helvetica",
  53. "Arial,Bold", "Helvetica-Bold",
  54. "Arial,BoldItalic", "Helvetica-BoldOblique",
  55. "Arial,Italic", "Helvetica-Oblique",
  56. // map TimesNewRoman to Times
  57. "TimesNewRoman", "Times-Roman",
  58. "TimesNewRoman,Bold", "Times-Bold",
  59. "TimesNewRoman,BoldItalic", "Times-BoldItalic",
  60. "TimesNewRoman,Italic", "Times-Italic",};
  61. /**
  62. * Create a new Builtin object based on the name of a built-in font
  63. *
  64. * This must be the name of one of the 14 built-in fonts!
  65. *
  66. * @param baseFont the name of the font, from the PDF file
  67. * @param fontObj the object containing font information
  68. */
  69. public BuiltinFont(String baseFont, PDFObject fontObj) throws IOException {
  70. super(baseFont, fontObj, null);
  71. parseFont(baseFont);
  72. }
  73. /**
  74. * create a new BuiltingFont object based on a description of the
  75. * font from the PDF file. Parse the description for key information
  76. * and use that to generate an appropriate font.
  77. */
  78. public BuiltinFont(String baseFont, PDFObject fontObj,
  79. PDFFontDescriptor descriptor)
  80. throws IOException {
  81. super(baseFont, fontObj, descriptor);
  82. String fontName = descriptor.getFontName();
  83. // check if it's one of the 14 base fonts
  84. for (int i = 0; i < baseFonts.length; i++) {
  85. if (fontName.equalsIgnoreCase(baseFonts[i])) {
  86. parseFont(fontName);
  87. return;
  88. }
  89. }
  90. // check if it's a mapped font
  91. for (int i = 0; i < mappedFonts.length; i += 2) {
  92. if (fontName.equalsIgnoreCase(mappedFonts[i])) {
  93. parseFont(mappedFonts[i + 1]);
  94. return;
  95. }
  96. }
  97. int flags = descriptor.getFlags();
  98. int style = ((flags & PDFFontDescriptor.FORCEBOLD) != 0) ? Typeface.BOLD : Typeface.NORMAL;
  99. if (fontName.indexOf("Bold") > 0) {
  100. style |= Typeface.BOLD;
  101. }
  102. if ((descriptor.getItalicAngle() != 0) ||
  103. ((flags & PDFFontDescriptor.NONSYMBOLIC) != 0)) {
  104. style |= Typeface.ITALIC;
  105. }
  106. String name = null;
  107. if ((flags & PDFFontDescriptor.FIXED_PITCH) != 0) { // fixed width
  108. if (((style & Typeface.BOLD) > 0) && ((style & Typeface.ITALIC) > 0)) {
  109. name = "Courier-BoldOblique";
  110. } else if ((style & Typeface.BOLD) > 0) {
  111. name = "Courier-Bold";
  112. } else if ((style & Typeface.ITALIC) > 0) {
  113. name = "Courier-Oblique";
  114. } else {
  115. name = "Courier";
  116. }
  117. } else if ((flags & PDFFontDescriptor.SERIF) != 0) { // serif font
  118. if (((style & Typeface.BOLD) > 0) && ((style & Typeface.ITALIC) > 0)) {
  119. name = "Times-BoldItalic";
  120. } else if ((style & Typeface.BOLD) > 0) {
  121. name = "Times-Bold";
  122. } else if ((style & Typeface.ITALIC) > 0) {
  123. name = "Times-Italic";
  124. } else {
  125. name = "Times-Roman";
  126. }
  127. } else {
  128. if (((style & Typeface.BOLD) > 0) && ((style & Typeface.ITALIC) > 0)) {
  129. name = "Helvetica-BoldOblique";
  130. } else if ((style & Typeface.BOLD) > 0) {
  131. name = "Helvetica-Bold";
  132. } else if ((style & Typeface.ITALIC) > 0) {
  133. name = "Helvetica-Oblique";
  134. } else {
  135. name = "Helvetica";
  136. }
  137. }
  138. parseFont(name);
  139. }
  140. /**
  141. * Parse a font given only the name of a builtin font
  142. */
  143. private void parseFont(String baseFont) throws IOException {
  144. // load the base fonts properties files, if it isn't already loaded
  145. if (props == null) {
  146. props = new Properties();
  147. props.load(BuiltinFont.class.getResourceAsStream("res/BaseFonts.properties"));
  148. }
  149. // make sure we're a known font
  150. if (!props.containsKey(baseFont + ".file")) {
  151. throw new IllegalArgumentException("Unknown Base Font: " + baseFont);
  152. }
  153. // get the font information from the properties file
  154. String file = props.getProperty(baseFont + ".file");
  155. // the size of the file
  156. int length = Integer.parseInt(props.getProperty(baseFont + ".length"));
  157. // the size of the unencrypted portion
  158. int length1 = 0;
  159. // the size of the encrypted portion
  160. int length2 = 0;
  161. // read the data from the file
  162. byte[] data = new byte[length];
  163. // if (true)
  164. // throw new UnsupportedOperationException("Native Fonts not yet supported!");
  165. InputStream fontStream = BuiltinFont.class.getResourceAsStream("res/" + file);
  166. int cur = 0;
  167. while (cur < length) {
  168. cur += fontStream.read(data, cur, length - cur);
  169. }
  170. fontStream.close();
  171. // are we a pfb file?
  172. if ((data[0] & 0xff) == 0x80) {
  173. // read lengths from the file
  174. length1 = (data[2] & 0xff);
  175. length1 |= (data[3] & 0xff) << 8;
  176. length1 |= (data[4] & 0xff) << 16;
  177. length1 |= (data[5] & 0xff) << 24;
  178. length1 += 6;
  179. length2 = (data[length1 + 2] & 0xff);
  180. length2 |= (data[length1 + 3] & 0xff) << 8;
  181. length2 |= (data[length1 + 4] & 0xff) << 16;
  182. length2 |= (data[length1 + 5] & 0xff) << 24;
  183. length1 += 6;
  184. } else {
  185. // get the values from the properties file
  186. length1 = Integer.parseInt(props.getProperty(baseFont + ".length1"));
  187. if (props.containsKey(baseFont + ".length2")) {
  188. length2 = Integer.parseInt(props.getProperty(baseFont + ".lenth2"));
  189. } else {
  190. length2 = length - length1;
  191. }
  192. }
  193. parseFont(data, length1, length2);
  194. }
  195. }