diff options
| author | bulia byak <buliabyak@gmail.com> | 2006-11-18 04:43:16 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2006-11-18 04:43:16 +0000 |
| commit | 68c9f56688a6f362fb20b5576c459625f505d009 (patch) | |
| tree | 7b22237765619b2bdf432ca7ee4b09ee27c21140 /src/extension/implementation/implementation.cpp | |
| parent | Improve option parsing (diff) | |
| download | inkscape-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.cpp | 13 |
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 */ |
