summaryrefslogtreecommitdiffstats
path: root/src/helper/png-write.h
blob: 8c04b25dc6c61b175e196441eb88902e00780e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef SEEN_SP_PNG_WRITE_H
#define SEEN_SP_PNG_WRITE_H

/*
 * PNG file format utilities
 *
 * Authors:
 *   Lauris Kaplinski <lauris@kaplinski.com>
 *   Peter Bostrom
 *   Jon A. Cruz <jon@joncruz.org>
 *
 * Copyright (C) 1999-2002 Lauris Kaplinski
 *
 * Released under GNU GPL, read the file 'COPYING' for more information
 */

#include <glib.h>
#include <2geom/forward.h>
class SPDocument;

enum ExportResult {
    EXPORT_ERROR = 0,
    EXPORT_OK,
    EXPORT_ABORTED
};

/**
 * Export the given document as a Portable Network Graphics (PNG) file.
 *
 * @return EXPORT_OK if succeeded, EXPORT_ABORTED if no action was taken, EXPORT_ERROR (false) if an error occurred.
 */
ExportResult sp_export_png_file(SPDocument *doc, gchar const *filename,
				double x0, double y0, double x1, double y1,
				unsigned long int width, unsigned long int height, double xdpi, double ydpi,
				unsigned long bgcolor,
				unsigned int (*status) (float, void *), void *data, bool force_overwrite = false, GSList *items_only = NULL);

ExportResult sp_export_png_file(SPDocument *doc, gchar const *filename,
				Geom::Rect const &area,
				unsigned long int width, unsigned long int height, double xdpi, double ydpi,
				unsigned long bgcolor,
				unsigned int (*status) (float, void *), void *data, bool force_overwrite = false, GSList *items_only = NULL);

#endif // SEEN_SP_PNG_WRITE_H