text-transform.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright © 2006 Mozilla Corporation
  3. *
  4. * Permission to use, copy, modify, distribute, and sell this software
  5. * and its documentation for any purpose is hereby granted without
  6. * fee, provided that the above copyright notice appear in all copies
  7. * and that both that copyright notice and this permission notice
  8. * appear in supporting documentation, and that the name of
  9. * Mozilla Corporation not be used in advertising or publicity pertaining to
  10. * distribution of the software without specific, written prior
  11. * permission. Mozilla Corporation makes no representations about the
  12. * suitability of this software for any purpose. It is provided "as
  13. * is" without express or implied warranty.
  14. *
  15. * MOZILLA CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
  16. * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. * FITNESS, IN NO EVENT SHALL MOZILLA CORPORATION BE LIABLE FOR ANY SPECIAL,
  18. * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
  19. * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  20. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
  21. * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22. *
  23. * Author: Vladimir Vukicevic <vladimir@pobox.com>
  24. */
  25. #include "cairo-test.h"
  26. #define SIZE 100
  27. #define PAD 5
  28. #define FONT_SIZE 32.0
  29. static const char *png_filename = "romedalen.png";
  30. static void
  31. draw_text (cairo_t *cr)
  32. {
  33. cairo_matrix_t tm;
  34. /* skew */
  35. cairo_matrix_init (&tm, 1, 0,
  36. -0.25, 1,
  37. 0, 0);
  38. cairo_matrix_scale (&tm, FONT_SIZE, FONT_SIZE);
  39. cairo_set_font_matrix (cr, &tm);
  40. cairo_new_path (cr);
  41. cairo_move_to (cr, 50, SIZE-PAD);
  42. cairo_show_text (cr, "A");
  43. /* rotate and scale */
  44. cairo_matrix_init_rotate (&tm, M_PI / 2);
  45. cairo_matrix_scale (&tm, FONT_SIZE, FONT_SIZE * 2.0);
  46. cairo_set_font_matrix (cr, &tm);
  47. cairo_new_path (cr);
  48. cairo_move_to (cr, PAD, PAD + 25);
  49. cairo_show_text (cr, "A");
  50. cairo_matrix_init_rotate (&tm, M_PI / 2);
  51. cairo_matrix_scale (&tm, FONT_SIZE * 2.0, FONT_SIZE);
  52. cairo_set_font_matrix (cr, &tm);
  53. cairo_new_path (cr);
  54. cairo_move_to (cr, PAD, PAD + 50);
  55. cairo_show_text (cr, "A");
  56. }
  57. static cairo_test_status_t
  58. draw (cairo_t *cr, int width, int height)
  59. {
  60. const cairo_test_context_t *ctx = cairo_test_get_context (cr);
  61. cairo_pattern_t *pattern;
  62. cairo_set_source_rgb (cr, 1., 1., 1.);
  63. cairo_paint (cr);
  64. cairo_set_source_rgb (cr, 0., 0., 0.);
  65. cairo_select_font_face (cr, CAIRO_TEST_FONT_FAMILY " Sans",
  66. CAIRO_FONT_SLANT_NORMAL,
  67. CAIRO_FONT_WEIGHT_NORMAL);
  68. draw_text (cr);
  69. cairo_translate (cr, SIZE, SIZE);
  70. cairo_rotate (cr, M_PI);
  71. pattern = cairo_test_create_pattern_from_png (ctx, png_filename);
  72. cairo_pattern_set_extend (pattern, CAIRO_EXTEND_REPEAT);
  73. cairo_set_source (cr, pattern);
  74. cairo_pattern_destroy (pattern);
  75. draw_text (cr);
  76. return CAIRO_TEST_SUCCESS;
  77. }
  78. CAIRO_TEST (text_transform,
  79. "Test various applications of the font matrix",
  80. "text, transform", /* keywords */
  81. NULL, /* requirements */
  82. SIZE, SIZE,
  83. NULL, draw)