b9c2bd07a4d825632c50e588805fb1a9a2212e78
[platform/core/graphics/cairo.git] / test / pdf-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 "cairo-test.h"
27
28 #include <stdio.h>
29 #include <cairo.h>
30 #include <cairo-pdf.h>
31
32 /* This test exists to test the various features of cairo-pdf.h.
33  *
34  * Currently, this test exercises the following function calls:
35  *
36  *      cairo_pdf_surface_set_size
37  */
38
39 #define INCHES_TO_POINTS(in) ((in) * 72.0)
40 #define MM_TO_POINTS(mm) ((mm) / 25.4 * 72.0)
41 #define TEXT_SIZE 12
42 #define BASENAME "pdf-features.out"
43
44 static struct {
45     const char *page_size;
46     const char *page_size_alias;
47     const char *orientation;
48     double width_in_points;
49     double height_in_points;
50 } pages[] = {
51     {"na_letter_8.5x11in", "letter", "portrait",
52      INCHES_TO_POINTS(8.5), INCHES_TO_POINTS(11)},
53     {"na_letter_8.5x11in", "letter", "landscape",
54      INCHES_TO_POINTS(11), INCHES_TO_POINTS(8.5)},
55     {"iso_a4_210x297mm", "a4", "portrait",
56      MM_TO_POINTS(210), MM_TO_POINTS(297)},
57     {"iso_a4_210x297mm", "a4", "landscape",
58      MM_TO_POINTS(297), MM_TO_POINTS(210)},
59     {"iso_a5_148x210mm", "a5", "portrait",
60      MM_TO_POINTS(148), MM_TO_POINTS(210)},
61     {"iso_a5_148x210mm", "a5", "landscape",
62      MM_TO_POINTS(210), MM_TO_POINTS(148)},
63     {"iso_a6_105x148mm", "a6", "portrait",
64      MM_TO_POINTS(105), MM_TO_POINTS(148)},
65     {"iso_a6_105x148mm", "a6", "landscape",
66      MM_TO_POINTS(148), MM_TO_POINTS(105)},
67     {"iso_a7_74x105mm", "a7", "portrait",
68      MM_TO_POINTS(74), MM_TO_POINTS(105)},
69     {"iso_a7_74x105mm", "a7", "landscape",
70      MM_TO_POINTS(105), MM_TO_POINTS(74)},
71     {"iso_a8_52x74mm", "a8", "portrait",
72      MM_TO_POINTS(52), MM_TO_POINTS(74)},
73     {"iso_a8_52x74mm", "a8", "landscape",
74      MM_TO_POINTS(74), MM_TO_POINTS(52)},
75     {"iso_a9_37x52mm", "a9", "portrait",
76      MM_TO_POINTS(37), MM_TO_POINTS(52)},
77     {"iso_a9_37x52mm", "a9", "landscape",
78      MM_TO_POINTS(52), MM_TO_POINTS(37)},
79     {"iso_a10_26x37mm", "a10", "portrait",
80      MM_TO_POINTS(26), MM_TO_POINTS(37)},
81     {"iso_a10_26x37mm", "a10", "landscape",
82      MM_TO_POINTS(37), MM_TO_POINTS(26)}
83 };
84
85 static cairo_test_status_t
86 preamble (cairo_test_context_t *ctx)
87 {
88     cairo_surface_t *surface;
89     cairo_t *cr;
90     cairo_status_t status;
91     size_t i;
92     char *filename;
93     const char *path = cairo_test_mkdir (CAIRO_TEST_OUTPUT_DIR) ? CAIRO_TEST_OUTPUT_DIR : ".";
94
95     if (! cairo_test_is_target_enabled (ctx, "pdf"))
96         return CAIRO_TEST_UNTESTED;
97
98     xasprintf (&filename, "%s/%s.pdf", path, BASENAME);
99
100     /* The initial size passed here is the default size that will be
101      * inheritable by each page. That is, any page for which this
102      * initial size applies will not have its own /MediaBox entry in
103      * its dictionary. */
104     surface = cairo_pdf_surface_create (filename,
105                                         INCHES_TO_POINTS(8.5),
106                                         INCHES_TO_POINTS(11));
107
108     cr = cairo_create (surface);
109
110     cairo_select_font_face (cr, CAIRO_TEST_FONT_FAMILY " Sans",
111                             CAIRO_FONT_SLANT_NORMAL,
112                             CAIRO_FONT_WEIGHT_NORMAL);
113     cairo_set_font_size (cr, TEXT_SIZE);
114
115     for (i = 0; i < ARRAY_LENGTH (pages); i++) {
116         cairo_pdf_surface_set_size (surface,
117                                    pages[i].width_in_points,
118                                    pages[i].height_in_points);
119
120         cairo_move_to (cr, TEXT_SIZE, TEXT_SIZE);
121         cairo_show_text (cr, pages[i].page_size);
122         cairo_show_text (cr, " - ");
123         cairo_show_text (cr, pages[i].orientation);
124         cairo_show_page (cr);
125     }
126
127     status = cairo_status (cr);
128
129     cairo_destroy (cr);
130     cairo_surface_destroy (surface);
131     free (filename);
132
133     if (status) {
134         cairo_test_log (ctx, "Failed to create pdf surface for file %s: %s\n",
135                         filename, cairo_status_to_string (status));
136         return CAIRO_TEST_FAILURE;
137     }
138
139     printf ("pdf-features: Please check %s to ensure it looks/prints correctly.\n", filename);
140     return CAIRO_TEST_SUCCESS;
141 }
142
143 CAIRO_TEST (pdf_features,
144             "Check PDF specific API",
145             "pdf", /* keywords */
146             NULL, /* requirements */
147             0, 0,
148             preamble, NULL)