summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgimagenode.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svgio/source/svgreader/svgimagenode.cxx')
-rw-r--r--svgio/source/svgreader/svgimagenode.cxx29
1 files changed, 20 insertions, 9 deletions
diff --git a/svgio/source/svgreader/svgimagenode.cxx b/svgio/source/svgreader/svgimagenode.cxx
index 533d1beea3f1..0219a0efb811 100644
--- a/svgio/source/svgreader/svgimagenode.cxx
+++ b/svgio/source/svgreader/svgimagenode.cxx
@@ -234,21 +234,32 @@ namespace svgio
else if(!maUrl.isEmpty())
{
const OUString& rPath = getDocument().getAbsolutePath();
- const OUString aAbsUrl(rtl::Uri::convertRelToAbs(rPath, maUrl));
- if(!aAbsUrl.isEmpty())
+ if (!rPath.isEmpty())
{
- SvFileStream aStream(aAbsUrl, STREAM_STD_READ);
- Graphic aGraphic;
+ const OUString aAbsUrl(rtl::Uri::convertRelToAbs(rPath, maUrl));
- if(GRFILTER_OK == GraphicFilter::GetGraphicFilter().ImportGraphic(
- aGraphic,
- aAbsUrl,
- aStream))
+ if (!aAbsUrl.isEmpty())
{
- extractFromGraphic(aGraphic, aNewTarget, aViewBox, aBitmapEx);
+ SvFileStream aStream(aAbsUrl, STREAM_STD_READ);
+ Graphic aGraphic;
+
+ if(GRFILTER_OK == GraphicFilter::GetGraphicFilter().ImportGraphic(
+ aGraphic,
+ aAbsUrl,
+ aStream))
+ {
+ extractFromGraphic(aGraphic, aNewTarget, aViewBox, aBitmapEx);
+ }
}
}
+ else
+ {
+ // #i123042# detect missing path and assert - content will be missing. The
+ // absolute path to itself needs to be set to correctly import linked
+ // content in a SVG file
+ OSL_ENSURE(false, "SVG graphic with internal links is interpreted, but local AbsolutePath is not set: linked content will be missing (!)");
+ }
}
else if(!maXLink.isEmpty())
{