summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2015-04-04 20:55:29 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2015-04-11 11:21:54 +0000
commit1e9bbd1bf0eda05c8474c49581fdaeace6689ae1 (patch)
tree8868ae299fd5f63ed3c6337e6fd7cf6dbd79ea27 /filter
parenttdf#56467: copy text of meta actions with valid text length (diff)
downloadcore-1e9bbd1bf0eda05c8474c49581fdaeace6689ae1.tar.gz
core-1e9bbd1bf0eda05c8474c49581fdaeace6689ae1.zip
tdf#56467 / tdf#88117: SVG export further improved
omitting the clip-path from the <svg> element and keeping it only in the slides enables rendering of exported selection in viewers like firefox and inkscape Change-Id: If296a78a3f948728e8b2ec257849be129bec5d92 Reviewed-on: https://gerrit.libreoffice.org/15155 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/svgexport.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/filter/source/svg/svgexport.cxx b/filter/source/svg/svgexport.cxx
index ada437d1195e..84572d0b5951 100644
--- a/filter/source/svg/svgexport.cxx
+++ b/filter/source/svg/svgexport.cxx
@@ -796,13 +796,9 @@ bool SVGFilter::implExportDocument()
aAttr += OUString::number(nDocWidth) + " " + OUString::number(nDocHeight);
- msClipPathId = "presentation_clip_path";
- OUString sClipPathAttrValue = "url(#" + msClipPathId + ")";
-
mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "viewBox", aAttr );
mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "preserveAspectRatio", "xMidYMid" );
mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "fill-rule", "evenodd" );
- mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "clip-path", sClipPathAttrValue );
// standard line width is based on 1 pixel on a 90 DPI device (0.28222mmm)
mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "stroke-width", OUString::number( 28.222 ) );
@@ -819,6 +815,7 @@ bool SVGFilter::implExportDocument()
mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "class", "ClipPathGroup" );
SvXMLElementExport aDefsElem( *mpSVGExport, XML_NAMESPACE_NONE, "defs", true, true );
{
+ msClipPathId = "presentation_clip_path";
mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "id", msClipPathId );
mpSVGExport->AddAttribute( XML_NAMESPACE_NONE, "clipPathUnits", "userSpaceOnUse" );
SvXMLElementExport aClipPathElem( *mpSVGExport, XML_NAMESPACE_NONE, "clipPath", true, true );