summaryrefslogtreecommitdiff
path: root/sw/source
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2021-06-03 17:10:57 +0200
committerMiklos Vajna <vmiklos@collabora.com>2021-06-03 17:52:52 +0200
commitc8a9396e5695675ffe92935a9ba40354fc76ed79 (patch)
tree789971ca6842d93c2003d3236c6cd166b8abd1f8 /sw/source
parent988175a5111d214aee6c52be8065b1b79be26497 (diff)
sw XHTML / reqif export: fix PNG export of shapes
image/x-vclgraphic is not something anybody else will understand. Change-Id: I5a5b37b7f769de351bd3dfc38ccd57381bc43319 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116673 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source')
-rw-r--r--sw/source/filter/html/htmlflywriter.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sw/source/filter/html/htmlflywriter.cxx b/sw/source/filter/html/htmlflywriter.cxx
index cd2350a75171..ed6d646594ee 100644
--- a/sw/source/filter/html/htmlflywriter.cxx
+++ b/sw/source/filter/html/htmlflywriter.cxx
@@ -1797,6 +1797,11 @@ static Writer & OutHTML_FrameFormatAsImage( Writer& rWrt, const SwFrameFormat& r
{
aGraphic = pGrafObj->GetGraphic();
}
+ else
+ {
+ // We only have a bitmap, write that as PNG without any fallback.
+ bWritePNGFallback = false;
+ }
}
Size aSz( 0, 0 );