Code

Fix image transform when there is no rotate or scale
[inkscape.git] / src / extension / internal / pdf-out.h
1 /*\r
2  * A quick hack to use the print output to write out a file.  This\r
3  * then makes 'save as...' PDF.\r
4  *\r
5  * Authors:\r
6  *   Ted Gould <ted@gould.cx>\r
7  *   Ulf Erikson <ulferikson@users.sf.net>\r
8  *\r
9  * Copyright (C) 2004-2006 Authors\r
10  *\r
11  * Released under GNU GPL, read the file 'COPYING' for more information\r
12  */\r
13 \r
14 #ifndef EXTENSION_INTERNAL_PDF_OUT_H\r
15 #define EXTENSION_INTERNAL_PDF_OUT_H\r
16 \r
17 #include "extension/implementation/implementation.h"\r
18 \r
19 namespace Inkscape {\r
20 namespace Extension {\r
21 namespace Internal {\r
22 \r
23 class PdfOutput : Inkscape::Extension::Implementation::Implementation {\r
24 \r
25 public:\r
26     bool check(Inkscape::Extension::Extension *module);\r
27     void save(Inkscape::Extension::Output *mod,\r
28               SPDocument *doc,\r
29               gchar const *uri);\r
30     static void init();\r
31 };\r
32 \r
33 } } }  /* namespace Inkscape, Extension, Implementation */\r
34 \r
35 #endif /* !EXTENSION_INTERNAL_PDF_OUT_H */\r
36 \r
37 /*\r
38   Local Variables:\r
39   mode:c++\r
40   c-file-style:"stroustrup"\r
41   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))\r
42   indent-tabs-mode:nil\r
43   fill-column:99\r
44   End:\r
45 */\r
46 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :\r