diff options
author | Tomaž Vajngerl <quikee@gmail.com> | 2013-03-25 23:26:36 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2013-03-25 23:50:10 +0100 |
commit | 6a6519c27a5a7ea07e6a19fcd43e76ca616dce4d (patch) | |
tree | f0516fe768dcdb17293fb060aa6cf9d6f8650f3d /scp2 | |
parent | f7a226952ddd335d670f1a3766b2b87eb1572375 (diff) |
Export current Writer page as jpg/png
This is first step to rework of graphic exporting. The idea is to
replace the exporter that works only for Draw/Impress and replace
it with a general exporter for any object. With this it will be
far easier to export objects as charts. Currently only Writer is
supported and only jpg/png.
Additionally, this commit introduces a new Export dialog which
supports setting the pixel width, height and DPI.
Change-Id: I7302b26bd432840d7ef0c3d2d2e13ff150cd2a07
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/source/graphicfilter/file_graphicfilter.scp | 4 | ||||
-rw-r--r-- | scp2/source/graphicfilter/module_graphicfilter.scp | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/scp2/source/graphicfilter/file_graphicfilter.scp b/scp2/source/graphicfilter/file_graphicfilter.scp index 9476149994f2..4fe8a8d8b25e 100644 --- a/scp2/source/graphicfilter/file_graphicfilter.scp +++ b/scp2/source/graphicfilter/file_graphicfilter.scp @@ -1,7 +1,7 @@ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * + * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite @@ -38,4 +38,6 @@ STD_LIB_FILE( gid_File_Lib_Flash, flash ) STD_LIB_FILE( gid_File_Lib_Svg, svgfilter ) +STD_LIB_FILE( gid_File_Lib_Graphic, graphicfilter ) + STD_LIB_FILE( gid_File_Lib_WpftDraw, wpftdraw ) diff --git a/scp2/source/graphicfilter/module_graphicfilter.scp b/scp2/source/graphicfilter/module_graphicfilter.scp index f428c0cf038e..cd7e4a6809af 100644 --- a/scp2/source/graphicfilter/module_graphicfilter.scp +++ b/scp2/source/graphicfilter/module_graphicfilter.scp @@ -1,7 +1,7 @@ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * + * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite @@ -33,6 +33,10 @@ Module gid_Module_Optional_Grfflt Sortkey = "600"; ParentID = gid_Module_Optional; Default = YES; - Files = (gid_File_Lib_Svg, gid_File_Lib_Flash, gid_File_Lib_WpftDraw, - gid_File_Share_Registry_Graphicfilter_Xcd); + Files = ( + gid_File_Lib_Svg, + gid_File_Lib_Flash, + gid_File_Lib_WpftDraw, + gid_File_Lib_Graphic, + gid_File_Share_Registry_Graphicfilter_Xcd); End |