summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4686d27)
raw | patch | inline | side by side (parent: 4686d27)
| author | miklosh <miklosh@users.sourceforge.net> | |
| Sun, 1 Oct 2006 13:55:24 +0000 (13:55 +0000) | ||
| committer | miklosh <miklosh@users.sourceforge.net> | |
| Sun, 1 Oct 2006 13:55:24 +0000 (13:55 +0000) |
| src/extension/internal/cairo-renderer-pdf-out.cpp | [new file with mode: 0644] | patch | blob |
diff --git a/src/extension/internal/cairo-renderer-pdf-out.cpp b/src/extension/internal/cairo-renderer-pdf-out.cpp
--- /dev/null
@@ -0,0 +1,133 @@
+/*\r
+ * A quick hack to use the Cairo renderer to write out a file. This\r
+ * then makes 'save as...' PDF.\r
+ *\r
+ * Authors:\r
+ * Ted Gould <ted@gould.cx>\r
+ * Ulf Erikson <ulferikson@users.sf.net>\r
+ *\r
+ * Copyright (C) 2004-2006 Authors\r
+ *\r
+ * Released under GNU GPL, read the file 'COPYING' for more information\r
+ */\r
+\r
+#ifdef HAVE_CONFIG_H\r
+# include <config.h>\r
+#endif\r
+\r
+#ifdef HAVE_CAIRO_PDF\r
+\r
+#include "cairo-renderer-pdf-out.h"\r
+#include "cairo-render-context.h"\r
+#include "cairo-renderer.h"\r
+#include <print.h>\r
+#include "extension/system.h"\r
+#include "extension/print.h"\r
+#include "extension/db.h"\r
+#include "extension/output.h"\r
+#include "display/nr-arena.h"\r
+#include "display/nr-arena-item.h"\r
+\r
+#include <libnr/n-art-bpath.h>\r
+\r
+#include "display/curve.h"\r
+#include "display/canvas-bpath.h"\r
+#include "sp-item.h"\r
+#include "sp-root.h"\r
+\r
+namespace Inkscape {\r
+namespace Extension {\r
+namespace Internal {\r
+\r
+bool\r
+CairoRendererPdfOutput::check (Inkscape::Extension::Extension * module)\r
+{\r
+ return TRUE;\r
+}\r
+\r
+static bool\r
+pdf_render_document_to_file(SPDocument *doc, gchar const *filename)\r
+{\r
+ sp_document_ensure_up_to_date(doc);\r
+\r
+/* Start */\r
+ /* Create new arena */\r
+ SPItem *base = SP_ITEM(sp_document_root(doc));\r
+ NRArena *arena = NRArena::create();\r
+ unsigned dkey = sp_item_display_key_new(1);\r
+ NRArenaItem *root = sp_item_invoke_show(base, arena, dkey, SP_ITEM_SHOW_DISPLAY);\r
+ \r
+ /* Create renderer and context */\r
+ CairoRenderer *renderer = new CairoRenderer();\r
+ CairoRenderContext *ctx = renderer->createContext();\r
+ ctx->setPdfTarget (filename);\r
+ bool ret = renderer->setupDocument(ctx, doc);\r
+ if (ret) {\r
+ renderer->renderItem(ctx, base);\r
+ ret = ctx->finish();\r
+ }\r
+\r
+ /* Release arena */\r
+ sp_item_invoke_hide(base, dkey);\r
+ nr_arena_item_unref(root);\r
+ nr_object_unref((NRObject *) arena);\r
+/* end */\r
+ renderer->destroyContext(ctx);\r
+ delete renderer;\r
+\r
+ return ret;\r
+}\r
+\r
+\r
+/**\r
+ \brief This function calls the output module with the filename\r
+ \param mod unused\r
+ \param doc Document to be saved\r
+ \param uri Filename to save to (probably will end in .png)\r
+\r
+ The most interesting thing that this function does is just attach\r
+ an '>' on the front of the filename. This is the syntax used to\r
+ tell the printing system to save to file.\r
+*/\r
+void\r
+CairoRendererPdfOutput::save (Inkscape::Extension::Output *mod, SPDocument *doc, const gchar *uri)\r
+{\r
+ gchar * final_name;\r
+ final_name = g_strdup_printf("> %s", uri);\r
+ bool ret = pdf_render_document_to_file(doc, final_name);\r
+ g_free(final_name);\r
+\r
+ if (!ret)\r
+ throw Inkscape::Extension::Output::save_failed();\r
+\r
+ return;\r
+}\r
+\r
+/**\r
+ \brief A function allocate a copy of this function.\r
+\r
+ This is the definition of Cairo PDF out. This function just\r
+ calls the extension system with the memory allocated XML that\r
+ describes the data.\r
+*/\r
+void\r
+CairoRendererPdfOutput::init (void)\r
+{\r
+ Inkscape::Extension::build_from_mem(\r
+ "<inkscape-extension>\n"\r
+ "<name>Cairo PDF Output (experimental)</name>\n"\r
+ "<id>org.inkscape.output.pdf.cairorenderer</id>\n"\r
+ "<output>\n"\r
+ "<extension>.pdf</extension>\n"\r
+ "<mimetype>application/pdf</mimetype>\n"\r
+ "<filetypename>Cairo PDF experimental (*.pdf)</filetypename>\n"\r
+ "<filetypetooltip>PDF File</filetypetooltip>\n"\r
+ "</output>\n"\r
+ "</inkscape-extension>", new CairoRendererPdfOutput());\r
+\r
+ return;\r
+}\r
+\r
+} } } /* namespace Inkscape, Extension, Internal */\r
+\r
+#endif /* HAVE_CAIRO_PDF */\r