summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorRegina Henschel <rb.henschel@t-online.de>2023-01-18 20:19:51 +0100
committerRegina Henschel <rb.henschel@t-online.de>2023-01-22 10:39:27 +0000
commit7eac3e78abcdece849b8bac61545b0d3ddf5800c (patch)
tree1f8338714b48f9eaa35b4141b4a3f24054e4b989 /oox
parenta00556ada3214d7584bebd4d6ac33bf5c25a3467 (diff)
tdf#128568 Improve export to docx of Fontwork with bitmap fill
The modern 'abc transform' in Word is not able to use bitmap fill, but it is possible in legacy VML. Thus use VML in such cases. A WordArt shape in VML has the text not in a <txbxContent> element but as string='...' attribute in the <v:textpath> element. To detect whether a custom shape is a Fontwork in an easy way without cast, I have added the already for custom shapes existing method IsTextPath() to the basis class SdrObject. Using VML for Fontwork with bitmap fill, errors in the VML code become visible: * Using <v:imagedata> element results in Word in a picture of the shape. The shape itself was lost. A bitmap fill of a shape has to be written with the <v:fill> element. * Mode 'stretched' in LO UI becomes type='frame' attribute in VML. I have adapted the unit test NoFillAttrInImagedata in ooxmlexport2.cxx in sw. The source file has the background image in a v:fill element. If you replace the 'wps' namespace with a 'my' namespace in the file generated by LO and so force Word to use the Fallback, you will see that with v:imagedata Word does not show a background image. Thus the assumption in the test was wrong, that there has to be a v:imagedata element. Change-Id: I6b2b5b8bb19adcee3b41e536419556465e85d135 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145823 Tested-by: Jenkins Reviewed-by: Regina Henschel <rb.henschel@t-online.de>
Diffstat (limited to 'oox')
-rw-r--r--oox/qa/unit/data/tdf128568_FontworkBitmapFill.odtbin0 -> 17770 bytes
-rw-r--r--oox/qa/unit/export.cxx30
-rw-r--r--oox/source/export/vmlexport.cxx9
3 files changed, 35 insertions, 4 deletions
diff --git a/oox/qa/unit/data/tdf128568_FontworkBitmapFill.odt b/oox/qa/unit/data/tdf128568_FontworkBitmapFill.odt
new file mode 100644
index 000000000000..30a0730a10e7
--- /dev/null
+++ b/oox/qa/unit/data/tdf128568_FontworkBitmapFill.odt
Binary files differ
diff --git a/oox/qa/unit/export.cxx b/oox/qa/unit/export.cxx
index fdf97b328f45..7c312798270a 100644
--- a/oox/qa/unit/export.cxx
+++ b/oox/qa/unit/export.cxx
@@ -768,6 +768,36 @@ CPPUNIT_TEST_FIXTURE(Test, testTdf151008VertAnchor)
assertXPath(pXmlDoc, "//p:spTree/p:sp[6]/p:txBody/a:bodyPr", "anchor", "b");
assertXPath(pXmlDoc, "//p:spTree/p:sp[6]/p:txBody/a:bodyPr", "anchorCtr", "1");
}
+
+CPPUNIT_TEST_FIXTURE(Test, testFontworkBitmapFill)
+{
+ // The document has a Fontwork shape with bitmap fill.
+ loadFromURL(u"tdf128568_FontworkBitmapFill.odt");
+
+ // FIXME: validation error in OOXML export: Errors: 1
+ // Attribute ID is not allowed in element v:shape
+ skipValidation();
+
+ // Saving that to DOCX:
+ save("Office Open XML Text");
+
+ // Make sure it is exported to VML and has no txbxContent but a textpath element. Without fix it
+ // was exported as DML 'abc transform', but that is not able to use bitmap fill in Word.
+ xmlDocUniquePtr pXmlDoc = parseExport("word/document.xml");
+ assertXPath(pXmlDoc, "//mc:alternateContent", 0);
+ assertXPath(pXmlDoc, "//v:shape/v:textbox/v:txbxContent", 0);
+ assertXPath(pXmlDoc, "//v:shape/v:textpath", 1);
+
+ // Without fix the bitmap was referenced by v:imagedata element. But that produces a picture
+ // in Word not a WordArt shape. Instead a v:fill has to be used.
+ assertXPath(pXmlDoc, "//v:shape/v:imagedata", 0);
+ assertXPath(pXmlDoc, "//v:shape/v:fill", 1);
+ assertXPath(pXmlDoc, "//v:shape/v:fill[@r:id]", 1);
+
+ // The fill is set to 'stretched' in LO, that is type="frame" in VML. That was not implemented
+ // in VML export.
+ assertXPath(pXmlDoc, "//v:shape/v:fill", "type", "frame");
+}
}
CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/oox/source/export/vmlexport.cxx b/oox/source/export/vmlexport.cxx
index 06f1745ab5b6..339187fbe4d2 100644
--- a/oox/source/export/vmlexport.cxx
+++ b/oox/source/export/vmlexport.cxx
@@ -739,7 +739,8 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const tools::Rectangle&
if (rProps.GetOpt(ESCHER_Prop_fNoFillHitTest, nValue))
impl_AddBool(pAttrList.get(), FSNS(XML_o, XML_detectmouseclick), nValue != 0);
- if (imageData)
+ if (imageData && ((pSdrGrafObj && pSdrGrafObj->isSignatureLine())
+ || m_nShapeType == ESCHER_ShpInst_PictureFrame))
m_pSerializer->singleElementNS( XML_v, XML_imagedata, pAttrList );
else
{
@@ -751,7 +752,7 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const tools::Rectangle&
case ESCHER_FillSolid: pFillType = "solid"; break;
// TODO case ESCHER_FillPattern: pFillType = ""; break;
case ESCHER_FillTexture: pFillType = "tile"; break;
- // TODO case ESCHER_FillPicture: pFillType = ""; break;
+ case ESCHER_FillPicture: pFillType = "frame"; break;
// TODO case ESCHER_FillShade: pFillType = ""; break;
// TODO case ESCHER_FillShadeCenter: pFillType = ""; break;
// TODO case ESCHER_FillShadeShape: pFillType = ""; break;
@@ -774,7 +775,6 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const tools::Rectangle&
if ( rProps.GetOpt( ESCHER_Prop_fillBackColor, nValue ) )
impl_AddColor( pAttrList.get(), XML_color2, nValue );
-
if (rProps.GetOpt(ESCHER_Prop_fillOpacity, nValue))
// Partly undo the transformation at the end of EscherPropertyContainer::CreateFillProperties(): VML opacity is 0..1.
pAttrList->add(XML_opacity, OString::number(double((nValue * 100) >> 16) / 100));
@@ -1397,7 +1397,8 @@ sal_Int32 VMLExport::StartShape()
// now check if we have some editeng text (not associated textbox) and we have a text exporter registered
const SdrTextObj* pTxtObj = DynCastSdrTextObj( m_pSdrObject );
- if (pTxtObj && m_pTextExport && msfilter::util::HasTextBoxContent(m_nShapeType) && !IsWaterMarkShape(m_pSdrObject->GetName()) && !lcl_isTextBox(m_pSdrObject))
+ if (pTxtObj && m_pTextExport && !m_pSdrObject->IsTextPath()
+ && !IsWaterMarkShape(m_pSdrObject->GetName()) && !lcl_isTextBox(m_pSdrObject))
{
std::optional<OutlinerParaObject> pParaObj;