view-cairo.hh 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. /*
  2. * Copyright © 2011 Google, Inc.
  3. *
  4. * This is part of HarfBuzz, a text shaping library.
  5. *
  6. * Permission is hereby granted, without written agreement and without
  7. * license or royalty fees, to use, copy, modify, and distribute this
  8. * software and its documentation for any purpose, provided that the
  9. * above copyright notice and the following two paragraphs appear in
  10. * all copies of this software.
  11. *
  12. * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
  13. * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
  14. * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
  15. * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  16. * DAMAGE.
  17. *
  18. * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
  19. * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  20. * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  21. * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
  22. * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  23. *
  24. * Google Author(s): Behdad Esfahbod
  25. */
  26. #ifndef VIEW_CAIRO_HH
  27. #define VIEW_CAIRO_HH
  28. #include "view-options.hh"
  29. #include "output-options.hh"
  30. #include "helper-cairo.hh"
  31. struct view_cairo_t : view_options_t, output_options_t<>
  32. {
  33. ~view_cairo_t ()
  34. {
  35. cairo_debug_reset_static_data ();
  36. }
  37. void add_options (option_parser_t *parser)
  38. {
  39. parser->set_summary ("View text with given font.");
  40. view_options_t::add_options (parser);
  41. output_options_t::add_options (parser, helper_cairo_supported_formats);
  42. }
  43. void init (hb_buffer_t *buffer, const font_options_t *font_opts)
  44. {
  45. lines = g_array_new (false, false, sizeof (helper_cairo_line_t));
  46. scale_bits = - (int) font_opts->subpixel_bits;
  47. }
  48. void new_line () {}
  49. void consume_text (hb_buffer_t *buffer,
  50. const char *text,
  51. unsigned int text_len,
  52. hb_bool_t utf8_clusters) {}
  53. void error (const char *message)
  54. { g_printerr ("%s: %s\n", g_get_prgname (), message); }
  55. void consume_glyphs (hb_buffer_t *buffer,
  56. const char *text,
  57. unsigned int text_len,
  58. hb_bool_t utf8_clusters)
  59. {
  60. direction = hb_buffer_get_direction (buffer);
  61. helper_cairo_line_t l;
  62. helper_cairo_line_from_buffer (&l, buffer, text, text_len, scale_bits, utf8_clusters);
  63. g_array_append_val (lines, l);
  64. }
  65. void finish (hb_buffer_t *buffer, const font_options_t *font_opts)
  66. {
  67. render (font_opts);
  68. for (unsigned int i = 0; i < lines->len; i++) {
  69. helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i);
  70. line.finish ();
  71. }
  72. #if GLIB_CHECK_VERSION (2, 22, 0)
  73. g_array_unref (lines);
  74. #else
  75. g_array_free (lines, TRUE);
  76. #endif
  77. }
  78. protected:
  79. void render (const font_options_t *font_opts);
  80. hb_direction_t direction = HB_DIRECTION_INVALID; // Remove this, make segment_properties accessible
  81. GArray *lines = nullptr;
  82. int scale_bits = 0;
  83. };
  84. inline void
  85. view_cairo_t::render (const font_options_t *font_opts)
  86. {
  87. bool vertical = HB_DIRECTION_IS_VERTICAL (direction);
  88. int vert = vertical ? 1 : 0;
  89. int horiz = vertical ? 0 : 1;
  90. int x_sign = font_opts->font_size_x < 0 ? -1 : +1;
  91. int y_sign = font_opts->font_size_y < 0 ? -1 : +1;
  92. hb_font_t *font = font_opts->font;
  93. if (!have_font_extents)
  94. {
  95. hb_font_extents_t hb_extents;
  96. hb_font_get_extents_for_direction (font, direction, &hb_extents);
  97. font_extents.ascent = scalbn ((double) hb_extents.ascender, scale_bits);
  98. font_extents.descent = -scalbn ((double) hb_extents.descender, scale_bits);
  99. font_extents.line_gap = scalbn ((double) hb_extents.line_gap, scale_bits);
  100. have_font_extents = true;
  101. }
  102. double ascent = y_sign * font_extents.ascent;
  103. double descent = y_sign * font_extents.descent;
  104. double line_gap = y_sign * font_extents.line_gap + line_space;
  105. double leading = ascent + descent + line_gap;
  106. /* Calculate surface size. */
  107. double w = 0, h = 0;
  108. (vertical ? w : h) = (int) lines->len * leading - (font_extents.line_gap + line_space);
  109. (vertical ? h : w) = 0;
  110. for (unsigned int i = 0; i < lines->len; i++) {
  111. helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i);
  112. double x_advance, y_advance;
  113. line.get_advance (&x_advance, &y_advance);
  114. if (vertical)
  115. h = MAX (h, y_sign * y_advance);
  116. else
  117. w = MAX (w, x_sign * x_advance);
  118. }
  119. cairo_scaled_font_t *scaled_font = helper_cairo_create_scaled_font (font_opts);
  120. /* See if font needs color. */
  121. cairo_content_t content = CAIRO_CONTENT_ALPHA;
  122. if (helper_cairo_scaled_font_has_color (scaled_font))
  123. content = CAIRO_CONTENT_COLOR;
  124. /* Create surface. */
  125. cairo_t *cr = helper_cairo_create_context (w + margin.l + margin.r,
  126. h + margin.t + margin.b,
  127. this,
  128. this,
  129. content);
  130. cairo_set_scaled_font (cr, scaled_font);
  131. /* Setup coordinate system. */
  132. cairo_translate (cr, margin.l, margin.t);
  133. if (vertical)
  134. cairo_translate (cr,
  135. w - ascent, /* We currently always stack lines right to left */
  136. y_sign < 0 ? h : 0);
  137. else
  138. {
  139. cairo_translate (cr,
  140. x_sign < 0 ? w : 0,
  141. y_sign < 0 ? descent : ascent);
  142. }
  143. /* Draw. */
  144. cairo_translate (cr, +vert * leading, -horiz * leading);
  145. for (unsigned int i = 0; i < lines->len; i++)
  146. {
  147. helper_cairo_line_t &l = g_array_index (lines, helper_cairo_line_t, i);
  148. cairo_translate (cr, -vert * leading, +horiz * leading);
  149. if (annotate) {
  150. cairo_save (cr);
  151. /* Draw actual glyph origins */
  152. cairo_set_source_rgba (cr, 1., 0., 0., .5);
  153. cairo_set_line_width (cr, 5);
  154. cairo_set_line_cap (cr, CAIRO_LINE_CAP_ROUND);
  155. for (unsigned i = 0; i < l.num_glyphs; i++) {
  156. cairo_move_to (cr, l.glyphs[i].x, l.glyphs[i].y);
  157. cairo_rel_line_to (cr, 0, 0);
  158. }
  159. cairo_stroke (cr);
  160. cairo_restore (cr);
  161. }
  162. if (0 && cairo_surface_get_type (cairo_get_target (cr)) == CAIRO_SURFACE_TYPE_IMAGE) {
  163. /* cairo_show_glyphs() doesn't support subpixel positioning */
  164. cairo_glyph_path (cr, l.glyphs, l.num_glyphs);
  165. cairo_fill (cr);
  166. } else if (l.num_clusters)
  167. cairo_show_text_glyphs (cr,
  168. l.utf8, l.utf8_len,
  169. l.glyphs, l.num_glyphs,
  170. l.clusters, l.num_clusters,
  171. l.cluster_flags);
  172. else
  173. cairo_show_glyphs (cr, l.glyphs, l.num_glyphs);
  174. }
  175. /* Clean up. */
  176. helper_cairo_destroy_context (cr);
  177. cairo_scaled_font_destroy (scaled_font);
  178. }
  179. #endif