e3cf9b46e632d44117757d8a2c1fc626c823ddcd
[framework/graphics/cairo.git] / test / ps-features.c
1 /*
2  * Copyright © 2006 Red Hat, Inc.
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  * Red Hat, Inc. not be used in advertising or publicity pertaining to
10  * distribution of the software without specific, written prior
11  * permission. Red Hat, Inc. 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  * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS, IN NO EVENT SHALL RED HAT, INC. 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: Carl D. Worth <cworth@cworth.org>
24  */
25
26 #include <stdio.h>
27 #include <cairo.h>
28 #include <cairo-ps.h>
29
30 #include "cairo-test.h"
31
32 /* This test exists to test the various features of cairo-ps.h.
33  *
34  * Currently, this test exercises the following function calls:
35  *
36  *      cairo_ps_surface_set_size
37  *      cairo_ps_surface_dsc_comment
38  *      cairo_ps_surface_dsc_begin_setup
39  *      cairo_ps_surface_dsc_begin_page_setup
40  */
41
42 #define INCHES_TO_POINTS(in) ((in) * 72.0)
43 #define MM_TO_POINTS(mm) ((mm) / 25.4 * 72.0)
44 #define TEXT_SIZE 12
45
46 static struct {
47     const char *page_size;
48     const char *page_size_alias;
49     const char *orientation;
50     double width_in_points;
51     double height_in_points;
52 } pages[] = {
53     {"na_letter_8.5x11in", "letter", "portrait",
54      INCHES_TO_POINTS(8.5), INCHES_TO_POINTS(11)},
55     {"na_letter_8.5x11in", "letter", "landscape",
56      INCHES_TO_POINTS(11), INCHES_TO_POINTS(8.5)},
57     {"iso_a4_210x297mm", "a4", "portrait",
58      MM_TO_POINTS(210), MM_TO_POINTS(297)},
59     {"iso_a4_210x297mm", "a4", "landscape",
60      MM_TO_POINTS(297), MM_TO_POINTS(210)},
61     {"iso_a5_148x210mm", "a5", "portrait",
62      MM_TO_POINTS(148), MM_TO_POINTS(210)},
63     {"iso_a5_148x210mm", "a5", "landscape",
64      MM_TO_POINTS(210), MM_TO_POINTS(148)},
65     {"iso_a6_105x148mm", "a6", "portrait",
66      MM_TO_POINTS(105), MM_TO_POINTS(148)},
67     {"iso_a6_105x148mm", "a6", "landscape",
68      MM_TO_POINTS(148), MM_TO_POINTS(105)},
69     {"iso_a7_74x105mm", "a7", "portrait",
70      MM_TO_POINTS(74), MM_TO_POINTS(105)},
71     {"iso_a7_74x105mm", "a7", "landscape",
72      MM_TO_POINTS(105), MM_TO_POINTS(74)},
73     {"iso_a8_52x74mm", "a8", "portrait",
74      MM_TO_POINTS(52), MM_TO_POINTS(74)},
75     {"iso_a8_52x74mm", "a8", "landscape",
76      MM_TO_POINTS(74), MM_TO_POINTS(52)},
77     {"iso_a9_37x52mm", "a9", "portrait",
78      MM_TO_POINTS(37), MM_TO_POINTS(52)},
79     {"iso_a9_37x52mm", "a9", "landscape",
80      MM_TO_POINTS(52), MM_TO_POINTS(37)},
81     {"iso_a10_26x37mm", "a10", "portrait",
82      MM_TO_POINTS(26), MM_TO_POINTS(37)},
83     {"iso_a10_26x37mm", "a10", "landscape",
84      MM_TO_POINTS(37), MM_TO_POINTS(26)}
85 };
86
87 static cairo_test_status_t
88 preamble (cairo_test_context_t *ctx)
89 {
90     cairo_surface_t *surface;
91     cairo_t *cr;
92     cairo_status_t status;
93     const char *filename;
94     size_t i;
95     char dsc[255];
96
97     if (! (cairo_test_is_target_enabled (ctx, "ps2") ||
98            cairo_test_is_target_enabled (ctx, "ps3")))
99     {
100         return CAIRO_TEST_UNTESTED;
101     }
102
103     filename = "ps-features.out.ps";
104
105     /* We demonstrate that the initial size doesn't matter (we're
106      * passing 0,0), if we use cairo_ps_surface_set_size on the first
107      * page. */
108     surface = cairo_ps_surface_create (filename, 0, 0);
109
110     cairo_ps_surface_dsc_comment (surface, "%%Title: ps-features");
111     cairo_ps_surface_dsc_comment (surface, "%%Copyright: Copyright (C) 2006 Red Hat, Inc.");
112
113     cairo_ps_surface_dsc_begin_setup (surface);
114     cairo_ps_surface_dsc_comment (surface, "%%IncludeFeature: *PageSize letter");
115     cairo_ps_surface_dsc_comment (surface, "%%IncludeFeature: *MediaColor White");
116
117     cr = cairo_create (surface);
118
119     cairo_select_font_face (cr, CAIRO_TEST_FONT_FAMILY " Sans",
120                             CAIRO_FONT_SLANT_NORMAL,
121                             CAIRO_FONT_WEIGHT_NORMAL);
122     cairo_set_font_size (cr, TEXT_SIZE);
123
124     for (i = 0; i < ARRAY_LENGTH (pages); i++) {
125         cairo_ps_surface_set_size (surface,
126                                    pages[i].width_in_points,
127                                    pages[i].height_in_points);
128         cairo_ps_surface_dsc_begin_page_setup (surface);
129         snprintf (dsc, 255, "%%IncludeFeature: *PageSize %s", pages[i].page_size_alias);
130         cairo_ps_surface_dsc_comment (surface, dsc);
131         if (i % 2) {
132             snprintf (dsc, 255, "%%IncludeFeature: *MediaType Glossy");
133             cairo_ps_surface_dsc_comment (surface, dsc);
134         }
135
136         cairo_move_to (cr, TEXT_SIZE, TEXT_SIZE);
137         cairo_show_text (cr, pages[i].page_size);
138         cairo_show_text (cr, " - ");
139         cairo_show_text (cr, pages[i].orientation);
140         cairo_show_page (cr);
141     }
142
143     status = cairo_status (cr);
144
145     cairo_destroy (cr);
146     cairo_surface_destroy (surface);
147
148     if (status) {
149         cairo_test_log (ctx, "Failed to create ps surface for file %s: %s\n",
150                         filename, cairo_status_to_string (status));
151         return CAIRO_TEST_FAILURE;
152     }
153
154     printf ("ps-features: Please check %s to ensure it looks/prints correctly.\n", filename);
155     return CAIRO_TEST_SUCCESS;
156 }
157
158 CAIRO_TEST (ps_features,
159             "Check PS specific API",
160             "ps, api", /* keywords */
161             NULL, /* requirements */
162             0, 0,
163             preamble, NULL)