1
/*
2
 * Copyright © 2005 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: Kristian Høgsberg <krh@redhat.com>
24
 */
25

            
26
#include <stdio.h>
27
#include <stdlib.h>
28
#include <poppler.h>
29

            
30
#define FAIL(msg)							\
31
    do { fprintf (stderr, "FAIL: %s\n", msg); exit (-1); } while (0)
32

            
33
#define PIXELS_PER_POINT 1
34

            
35
int main (int argc, char *argv[])
36
{
37
    PopplerDocument *document;
38
    PopplerPage *page;
39
    double width, height;
40
    const char *filename = argv[1];
41
    const char *output_filename = argv[2];
42
    const char *page_label = argv[3];
43
    gchar *absolute, *uri;
44
    cairo_surface_t *surface;
45
    cairo_t *cr;
46
    cairo_status_t status;
47
    GError *error = NULL;
48

            
49
    if (argc != 4)
50
	FAIL ("usage: pdf2png input_file.pdf output_file.png page");
51

            
52
#if !GLIB_CHECK_VERSION(2,36,0)
53
    g_type_init ();
54
#endif
55

            
56
    if (g_path_is_absolute(filename)) {
57
	absolute = g_strdup (filename);
58
    } else {
59
	gchar *dir = g_get_current_dir ();
60
	absolute = g_build_filename (dir, filename, (gchar *) 0);
61
	g_free (dir);
62
    }
63

            
64
    uri = g_filename_to_uri (absolute, NULL, &error);
65
    g_free (absolute);
66
    if (uri == NULL)
67
	FAIL (error->message);
68

            
69
    document = poppler_document_new_from_file (uri, NULL, &error);
70
    g_free (uri);
71
    if (document == NULL)
72
	FAIL (error->message);
73

            
74
    page = poppler_document_get_page_by_label (document, page_label);
75
    g_object_unref (document);
76
    if (page == NULL)
77
	FAIL ("page not found");
78

            
79
    poppler_page_get_size (page, &width, &height);
80

            
81
    surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, width, height);
82
    cr = cairo_create (surface);
83
    cairo_surface_destroy (surface);
84

            
85
    cairo_set_source_rgb (cr, 1,1,1);
86
    cairo_paint (cr);
87
    cairo_push_group_with_content (cr, CAIRO_CONTENT_COLOR_ALPHA);
88

            
89
    poppler_page_render (page, cr);
90
    g_object_unref (page);
91

            
92
    cairo_pop_group_to_source (cr);
93
    cairo_paint (cr);
94

            
95
    status = cairo_surface_write_to_png (cairo_get_target (cr),
96
					 output_filename);
97
    cairo_destroy (cr);
98

            
99
    if (status)
100
	FAIL (cairo_status_to_string (status));
101

            
102
    return 0;
103
}