summaryrefslogtreecommitdiffstats
path: root/src/extension/implementation/implementation.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-11-18 04:43:16 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-11-18 04:43:16 +0000
commit68c9f56688a6f362fb20b5576c459625f505d009 (patch)
tree7b22237765619b2bdf432ca7ee4b09ee27c21140 /src/extension/implementation/implementation.cpp
parentImprove option parsing (diff)
downloadinkscape-68c9f56688a6f362fb20b5576c459625f505d009.tar.gz
inkscape-68c9f56688a6f362fb20b5576c459625f505d009.zip
patch 1219308 for embedding type 1 fonts into ps/eps output
(bzr r1977)
Diffstat (limited to 'src/extension/implementation/implementation.cpp')
-rw-r--r--src/extension/implementation/implementation.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/extension/implementation/implementation.cpp b/src/extension/implementation/implementation.cpp
index a621dc838..42eabc3ad 100644
--- a/src/extension/implementation/implementation.cpp
+++ b/src/extension/implementation/implementation.cpp
@@ -170,6 +170,19 @@ Implementation::textToPath(Inkscape::Extension::Print *ext)
return false;
}
+/**
+ \brief Get "fontEmbedded" param, i.e. tell the printing engine whether fonts should be embedded
+ \retval TRUE Fonts have to be embedded in the output so that the user might not need to install fonts to have the interpreter read the document correctly
+ \retval FALSE Not embed fonts
+
+ Only available for Adobe Type 1 fonts in EPS output as of now
+*/
+
+bool
+Implementation::fontEmbedded(Inkscape::Extension::Print * ext)
+{
+ return false;
+}
} /* namespace Implementation */
} /* namespace Extension */