summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: df413c2)
raw | patch | inline | side by side (parent: df413c2)
author | theadib <theadib@users.sourceforge.net> | |
Thu, 27 Dec 2007 00:32:16 +0000 (00:32 +0000) | ||
committer | theadib <theadib@users.sourceforge.net> | |
Thu, 27 Dec 2007 00:32:16 +0000 (00:32 +0000) |
src/extension/internal/cairo-pdf-out.cpp | patch | blob | history |
index dd53ff4f6a4cc98cc34f5a70c6cd9f3b6af0ef91..f6d5918e96aca3207ab522d549f01d2f42f8f754 100644 (file)
@@ -109,19 +109,46 @@ CairoPdfOutput::save (Inkscape::Extension::Output *mod, SPDocument *doc, const g
if (ext == NULL)
return;
- bool old_textToPath = ext->get_param_bool("textToPath");
- bool new_textToPath = mod->get_param_bool("textToPath");
- ext->set_param_bool("textToPath", new_textToPath);
+ bool old_textToPath = FALSE;
+ bool new_textToPath = FALSE;
+ try {
+ old_textToPath = ext->get_param_bool("textToPath");
+ new_textToPath = mod->get_param_bool("textToPath");
+ ext->set_param_bool("textToPath", new_textToPath);
+ }
+ catch(...) {
+ g_warning("Parameter <textToPath> might not exists");
+ }
- bool old_blurToBitmap = ext->get_param_bool("blurToBitmap");
- bool new_blurToBitmap = mod->get_param_bool("blurToBitmap");
- ext->set_param_bool("blurToBitmap", new_blurToBitmap);
+ bool old_blurToBitmap = FALSE;
+ bool new_blurToBitmap = FALSE;
+ try {
+ old_blurToBitmap = ext->get_param_bool("blurToBitmap");
+ new_blurToBitmap = mod->get_param_bool("blurToBitmap");
+ ext->set_param_bool("blurToBitmap", new_blurToBitmap);
+ }
+ catch(...) {
+ g_warning("Parameter <blurToBitmap> might not exists");
+ }
gchar * final_name;
final_name = g_strdup_printf("> %s", uri);
ret = pdf_print_document_to_file(doc, final_name, 0, new_textToPath, new_blurToBitmap);
g_free(final_name);
+ try {
+ ext->set_param_bool("blurToBitmap", old_blurToBitmap);
+ }
+ catch(...) {
+ g_warning("Parameter <blurToBitmap> might not exists");
+ }
+ try {
+ ext->set_param_bool("textToPath", old_textToPath);
+ }
+ catch(...) {
+ g_warning("Parameter <textToPath> might not exists");
+ }
+
if (!ret)
throw Inkscape::Extension::Output::save_failed();
"<param name=\"PDFversion\" gui-text=\"" N_("Restrict to PDF version") "\" type=\"enum\" >\n"
"<item value='PDF14'>" N_("PDF 1.4") "</item>\n"
"</param>\n"
- "<param name=\"textToPath\" gui-text=\"" N_("Convert texts to paths") "\" 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_("Convert blur effects to bitmaps") "\" type=\"boolean\">false</param>\n"
"<output>\n"
"<extension>.pdf</extension>\n"