cairo-ps-out.cpp revision 4b1e20ea55d30511ebd789a258e84f11f256184f
/*
* A quick hack to use the Cairo renderer to write out a file. This
* then makes 'save as...' PS.
*
* Authors:
* Ted Gould <ted@gould.cx>
* Ulf Erikson <ulferikson@users.sf.net>
* Adib Taraben <theAdib@yahoo.com>
*
* Copyright (C) 2004-2006 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifdef HAVE_CAIRO_PDF
#include "cairo-ps-out.h"
#include "cairo-render-context.h"
#include "cairo-renderer.h"
#include <print.h>
#include "display/nr-arena.h"
#include "display/nr-arena-item.h"
#include "display/canvas-bpath.h"
#include "sp-item.h"
#include "style.h"
#include "sp-root.h"
#include "sp-shape.h"
namespace Inkscape {
namespace Extension {
namespace Internal {
bool
{
return FALSE;
return TRUE;
}
bool
{
return FALSE;
return TRUE;
}
static bool
ps_print_document_to_file(SPDocument *doc, gchar const *filename, unsigned int level, bool texttopath, bool filtertobitmap, int resolution, const gchar * const exportId, bool exportDrawing, bool exportCanvas, bool eps = false)
{
bool pageBoundingBox = TRUE;
// we want to export the given item only
}
else {
// we want to export the entire document from root
}
if (!base)
return false;
/* Create new arena */
/* Create renderer and context */
if(ret) {
/* Render document */
if (ret) {
}
}
/* Release arena */
delete renderer;
return ret;
}
/**
\brief This function calls the output module with the filename
\param mod unused
\param doc Document to be saved
\param uri Filename to save to (probably will end in .ps)
*/
void
{
unsigned int ret;
return;
int level = CAIRO_PS_LEVEL_2;
try {
} catch(...) {}
bool new_textToPath = FALSE;
try {
} catch(...) {}
bool new_blurToBitmap = FALSE;
try {
} catch(...) {}
int new_bitmapResolution = 72;
try {
} catch(...) {}
bool new_areaCanvas = true;
try {
} catch(...) {}
bool new_areaDrawing = true;
try {
} catch(...) {}
try {
} catch(...) {}
gchar * final_name;
ret = ps_print_document_to_file(doc, final_name, level, new_textToPath, new_blurToBitmap, new_bitmapResolution, new_exportId, new_areaDrawing, new_areaCanvas);
if (!ret)
}
/**
\brief This function calls the output module with the filename
\param mod unused
\param doc Document to be saved
\param uri Filename to save to (probably will end in .ps)
*/
void
{
unsigned int ret;
return;
int level = CAIRO_PS_LEVEL_2;
try {
} catch(...) {}
bool new_textToPath = FALSE;
try {
} catch(...) {}
bool new_blurToBitmap = FALSE;
try {
} catch(...) {}
int new_bitmapResolution = 72;
try {
} catch(...) {}
bool new_areaCanvas = true;
try {
} catch(...) {}
bool new_areaDrawing = true;
try {
} catch(...) {}
try {
} catch(...) {}
gchar * final_name;
ret = ps_print_document_to_file(doc, final_name, level, new_textToPath, new_blurToBitmap, new_bitmapResolution, new_exportId, new_areaDrawing, new_areaCanvas, true);
if (!ret)
}
bool
{
}
bool
{
}
#include "clear-n_.h"
/**
\brief A function allocate a copy of this function.
This is the definition of Cairo PS out. This function just
calls the extension system with the memory allocated XML that
describes the data.
*/
void
CairoPsOutput::init (void)
{
#endif
"</param>\n"
"<param name=\"areaCanvas\" gui-text=\"" N_("Export area is whole canvas") "\" type=\"boolean\">true</param>\n"
"<param name=\"areaDrawing\" gui-text=\"" N_("Export area is the drawing") "\" type=\"boolean\">true</param>\n"
"<param name=\"textToPath\" gui-text=\"" N_("Convert texts to paths") "\" type=\"boolean\">false</param>\n"
"<param name=\"blurToBitmap\" gui-text=\"" N_("Rasterize filter effects") "\" type=\"boolean\">true</param>\n"
"<param name=\"resolution\" gui-text=\"" N_("Preferred resolution (DPI) of bitmaps") "\" type=\"int\" min=\"72\" max=\"2400\">90</param>\n"
"<param name=\"exportId\" gui-text=\"" N_("Limit export to the object with ID") "\" type=\"string\"></param>\n"
"<output>\n"
"<extension>.ps</extension>\n"
"<mimetype>image/x-postscript</mimetype>\n"
"</output>\n"
"</inkscape-extension>", new CairoPsOutput());
return;
}
/**
\brief A function allocate a copy of this function.
This is the definition of Cairo EPS out. This function just
calls the extension system with the memory allocated XML that
describes the data.
*/
void
CairoEpsOutput::init (void)
{
#endif
"</param>\n"
"<param name=\"areaCanvas\" gui-text=\"" N_("Export area is whole canvas") "\" type=\"boolean\">true</param>\n"
"<param name=\"areaDrawing\" gui-text=\"" N_("Export area is the drawing") "\" type=\"boolean\">true</param>\n"
"<param name=\"textToPath\" gui-text=\"" N_("Convert texts to paths") "\" type=\"boolean\">false</param>\n"
"<param name=\"blurToBitmap\" gui-text=\"" N_("Rasterize filter effects") "\" type=\"boolean\">true</param>\n"
"<param name=\"resolution\" gui-text=\"" N_("Preferred resolution (DPI) of bitmaps") "\" type=\"int\" min=\"72\" max=\"2400\">90</param>\n"
"<param name=\"exportId\" gui-text=\"" N_("Limit export to the object with ID") "\" type=\"string\"></param>\n"
"<output>\n"
"<extension>.eps</extension>\n"
"<mimetype>image/x-e-postscript</mimetype>\n"
"</output>\n"
"</inkscape-extension>", new CairoEpsOutput());
return;
}
} } } /* namespace Inkscape, Extension, Implementation */
#endif /* HAVE_CAIRO_PDF */