Glyf.java 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. /*
  2. * $Id: Glyf.java,v 1.2 2007/12/20 18:33:31 rbair 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.ttf;
  22. import net.sf.andpdf.pdfviewer.ByteBuffer;
  23. /**
  24. * A single glyph in a pdf font. May be simple or compound via subclasses
  25. */
  26. public class Glyf {
  27. /** If true, the glyf is compound */
  28. private boolean isCompound;
  29. /** the number of contours */
  30. private short numContours;
  31. /** the minimum x value */
  32. private short minX;
  33. /** the minimum y value */
  34. private short minY;
  35. /** the maximum x value */
  36. private short maxX;
  37. /** the maximum y value */
  38. private short maxY;
  39. /**
  40. * Creates a new instance of glyf
  41. * Don't use this directly, use <code>Glyf.getGlyf()</code>
  42. */
  43. protected Glyf() {
  44. }
  45. /**
  46. * Get a map from the given data
  47. *
  48. * This method reads the format, data and length variables of
  49. * the map.
  50. */
  51. public static Glyf getGlyf(ByteBuffer data) {
  52. short numContours = data.getShort();
  53. Glyf g = null;
  54. if (numContours == 0) {
  55. // no glyph data
  56. g = new Glyf();
  57. } else if (numContours == -1) {
  58. // compound glyf
  59. g = new GlyfCompound();
  60. } else if (numContours > 0) {
  61. // simple glyf
  62. g = new GlyfSimple();
  63. } else {
  64. throw new IllegalArgumentException("Unknown glyf type: " +
  65. numContours);
  66. }
  67. g.setNumContours(numContours);
  68. g.setMinX(data.getShort());
  69. g.setMinY(data.getShort());
  70. g.setMaxX(data.getShort());
  71. g.setMaxY(data.getShort());
  72. // do glyphtype-specific parsing
  73. g.setData(data);
  74. return g;
  75. }
  76. /**
  77. * Set the data for this glyf. Do nothing, since a glyf with
  78. * no contours has no glyf data.
  79. */
  80. public void setData(ByteBuffer data) {
  81. return;
  82. }
  83. /**
  84. * Get the data in this glyf as a byte buffer. Return the basic
  85. * glyf data only, since there is no specific data. This method returns
  86. * the data un-flipped, so subclasses can simply append to the allocated
  87. * buffer.
  88. */
  89. public ByteBuffer getData() {
  90. ByteBuffer buf = ByteBuffer.allocate(getLength());
  91. buf.putShort(getNumContours());
  92. buf.putShort(getMinX());
  93. buf.putShort(getMinY());
  94. buf.putShort(getMaxX());
  95. buf.putShort(getMaxY());
  96. // don't flip the buffer, since it may be used by subclasses
  97. return buf;
  98. }
  99. /**
  100. * Get the length of this glyf. A glyf with no data has a length
  101. * of 10 (2 bytes each for 5 short values)
  102. */
  103. public short getLength() {
  104. return 10;
  105. }
  106. /**
  107. * Get whether this is a simple or compound glyf
  108. */
  109. public boolean isCompound() {
  110. return isCompound;
  111. }
  112. /**
  113. * Set whether this is a simple or compound glyf
  114. */
  115. protected void setCompound(boolean isCompound) {
  116. this.isCompound = isCompound;
  117. }
  118. /**
  119. * Get the number of contours in this glyf
  120. */
  121. public short getNumContours() {
  122. return numContours;
  123. }
  124. /**
  125. * Set the number of contours in this glyf
  126. */
  127. protected void setNumContours(short numContours) {
  128. this.numContours = numContours;
  129. }
  130. /**
  131. * Get the minimum x in this glyf
  132. */
  133. public short getMinX() {
  134. return minX;
  135. }
  136. /**
  137. * Set the minimum X in this glyf
  138. */
  139. protected void setMinX(short minX) {
  140. this.minX = minX;
  141. }
  142. /**
  143. * Get the minimum y in this glyf
  144. */
  145. public short getMinY() {
  146. return minY;
  147. }
  148. /**
  149. * Set the minimum Y in this glyf
  150. */
  151. protected void setMinY(short minY) {
  152. this.minY = minY;
  153. }
  154. /**
  155. * Get the maximum x in this glyf
  156. */
  157. public short getMaxX() {
  158. return maxX;
  159. }
  160. /**
  161. * Set the maximum X in this glyf
  162. */
  163. protected void setMaxX(short maxX) {
  164. this.maxX = maxX;
  165. }
  166. /**
  167. * Get the maximum y in this glyf
  168. */
  169. public short getMaxY() {
  170. return maxY;
  171. }
  172. /**
  173. * Set the maximum Y in this glyf
  174. */
  175. protected void setMaxY(short maxY) {
  176. this.maxY = maxY;
  177. }
  178. }