diff options
| author | David Mathog <> | 2013-03-08 08:27:50 +0000 |
|---|---|---|
| committer | ~suv <suv-sf@users.sourceforge.net> | 2013-03-08 08:27:50 +0000 |
| commit | e298aeb969151e2a523d3aaef737ac04b6e5b0e8 (patch) | |
| tree | df7e286cc921f8c76684567d4253c7f312e3e2ad /src/extension/init.cpp | |
| parent | merge from trunk (r12122) (diff) | |
| download | inkscape-e298aeb969151e2a523d3aaef737ac04b6e5b0e8.tar.gz inkscape-e298aeb969151e2a523d3aaef737ac04b6e5b0e8.zip | |
changes_2013_02_25a.patch
New: WMF import/export
implements WMF (Windows Metafile) read and write. Inkscape previously
supported that through uniconverter, which was not very good with WMF
files. The new version now has a complete wmf-print/wmf-inout
implementation, analogous to the previous emf-print/emf-inout. This
handles images, patterns, and various other goodies to the extent that
WMF does. WMF is a bit primitive, many fields are only 16 bits, so it
even more resolution sapping issues than does EMF. Given the choice,
always use the latter format.
(bzr r11668.1.52)
Diffstat (limited to 'src/extension/init.cpp')
| -rw-r--r-- | src/extension/init.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/extension/init.cpp b/src/extension/init.cpp index 9b65ce1f8..3be7d1509 100644 --- a/src/extension/init.cpp +++ b/src/extension/init.cpp @@ -34,6 +34,8 @@ #include "internal/svgz.h" # include "internal/emf-inout.h" # include "internal/emf-print.h" +# include "internal/wmf-inout.h" +# include "internal/wmf-print.h" #ifdef HAVE_CAIRO_PDF # include "internal/cairo-renderer-pdf-out.h" # include "internal/cairo-png-out.h" @@ -179,6 +181,8 @@ init() #endif Internal::PrintEmf::init(); Internal::Emf::init(); + Internal::PrintWmf::init(); + Internal::Wmf::init(); Internal::PovOutput::init(); Internal::JavaFXOutput::init(); Internal::OdfOutput::init(); |
