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