From 156b5a15878394576dd008c5a07160721d333ab7 Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Wed, 5 Mar 2014 15:06:17 -0700 Subject: Do not convert SVGs to JPEGs when editing with external tool This patch adds support for opening SVGs in the user's default SVG viewer/editor. If the image cannot be exported to SVG directly, it is exported as PNG instead. In no case will an SVG or an unrecognized format be lossy-converted to JPEG. Change-Id: I46dc8548c3cfb4d24a4a0078d4e3d7eee8367b1c --- svx/source/core/graphichelper.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'svx/source/core/graphichelper.cxx') diff --git a/svx/source/core/graphichelper.cxx b/svx/source/core/graphichelper.cxx index d9141215d3b4..4878872c3a84 100644 --- a/svx/source/core/graphichelper.cxx +++ b/svx/source/core/graphichelper.cxx @@ -84,6 +84,9 @@ void GraphicHelper::GetPreferredExtension( OUString& rExtension, const Graphic& case GFX_LINK_TYPE_NATIVE_BMP: aExtension = "bmp"; break; + case GFX_LINK_TYPE_NATIVE_SVG: + aExtension = "svg"; + break; default: break; } -- cgit v1.2.3