Code

* INTL - fixed: "Crop to" dropdown strings not translated for PDF Import
[inkscape.git] / src / helper / pixbuf-ops.h
1 #ifndef __SP_PIXBUF_OPS_H__\r
2 #define __SP_PIXBUF_OPS_H__\r
3 \r
4 /*\r
5  * Helpers for SPItem -> gdk_pixbuf related stuff\r
6  *\r
7  * Authors:\r
8  *   John Cliff <simarilius@yahoo.com>\r
9  *\r
10  * Copyright (C) 2008 John Cliff\r
11  *\r
12  * Released under GNU GPL, read the file 'COPYING' for more information\r
13  */\r
14 \r
15 #include <glib/gtypes.h>
17 struct SPDocument;\r
18 \r
19 bool sp_export_jpg_file (SPDocument *doc, gchar const *filename, double x0, double y0, double x1, double y1,\r
20              unsigned int width, unsigned int height, double xdpi, double ydpi, unsigned long bgcolor, double quality, GSList *items_only = NULL);\r
21 \r
22 GdkPixbuf* sp_generate_internal_bitmap(SPDocument *doc, gchar const *filename,\r
23                    double x0, double y0, double x1, double y1,\r
24                    unsigned width, unsigned height, double xdpi, double ydpi,\r
25                    unsigned long bgcolor, GSList *items_only = NULL);\r
26 \r
27 #endif\r