fdo#32613 RTF export: implemented anchored picture export
RTF originally didn't support anchored pictures: they were always inline. Then it was invented that pictures can be exported anchored, if they are in fact shapes, but their "pib" property is set to the hexdump of the picture contents. The RTF importer handled this situation for quite some time, but not the exporter -- this commit implements that. Change-Id: I173ad9f4f2e24620508ca63c0b892b7d5da4e5b2
This commit is contained in:
parent
2426e72dba
commit
cb01957aa0
4 changed files with 96 additions and 19 deletions
|
@ -83,6 +83,7 @@ using namespace css;
|
|||
#define DECLARE_OOXMLIMPORT_TEST(TestName, filename) DECLARE_SW_IMPORT_TEST(TestName, filename, Test)
|
||||
#define DECLARE_OOXMLEXPORT_TEST(TestName, filename) DECLARE_SW_ROUNDTRIP_TEST(TestName, filename, Test)
|
||||
#define DECLARE_RTFIMPORT_TEST(TestName, filename) DECLARE_SW_IMPORT_TEST(TestName, filename, Test)
|
||||
#define DECLARE_RTFEXPORT_TEST(TestName, filename) DECLARE_SW_ROUNDTRIP_TEST(TestName, filename, Test)
|
||||
|
||||
// For testing during development of a test, you want to use
|
||||
// DECLARE_OOXMLEXPORT_TEST_ONLY, and change the above to #if 0
|
||||
|
@ -91,11 +92,13 @@ using namespace css;
|
|||
#define DECLARE_OOXMLIMPORT_TEST_ONLY(TestName, filename) DECLARE_SW_IMPORT_TEST(TestName, filename, Test)
|
||||
#define DECLARE_OOXMLEXPORT_TEST_ONLY(TestName, filename) DECLARE_SW_ROUNDTRIP_TEST(TestName, filename, Test)
|
||||
#define DECLARE_RTFIMPORT_TEST_ONLY(TestName, filename) DECLARE_SW_IMPORT_TEST(TestName, filename, Test)
|
||||
#define DECLARE_RTFEXPORT_TEST_ONLY(TestName, filename) DECLARE_SW_ROUNDTRIP_TEST(TestName, filename, Test)
|
||||
|
||||
#undef DECLARE_OOXMLEXPORT_TEST
|
||||
#define DECLARE_OOXMLIMPORT_TEST(TestName, filename) class disabled##TestName : public Test { void disabled(); }; void disabled##TestName::disabled()
|
||||
#define DECLARE_OOXMLEXPORT_TEST(TestName, filename) class disabled##TestName : public Test { void disabled(); }; void disabled##TestName::disabled()
|
||||
#define DECLARE_RTFIMPORT_TEST(TestName, filename) class disabled##TestName : public Test { void disabled(); }; void disabled##TestName::disabled()
|
||||
#define DECLARE_RTFEXPORT_TEST(TestName, filename) class disabled##TestName : public Test { void disabled(); }; void disabled##TestName::disabled()
|
||||
#endif
|
||||
|
||||
#define DECLARE_SW_IMPORT_TEST(TestName, filename, BaseClass) \
|
||||
|
|
BIN
sw/qa/extras/rtfexport/data/fdo32613.odt
Normal file
BIN
sw/qa/extras/rtfexport/data/fdo32613.odt
Normal file
Binary file not shown.
|
@ -17,11 +17,12 @@
|
|||
#include <com/sun/star/frame/XStorable.hpp>
|
||||
#include <com/sun/star/table/BorderLine2.hpp>
|
||||
#include <com/sun/star/table/ShadowFormat.hpp>
|
||||
#include <com/sun/star/text/RelOrientation.hpp>
|
||||
#include <com/sun/star/text/TextContentAnchorType.hpp>
|
||||
#include <com/sun/star/text/XFootnotesSupplier.hpp>
|
||||
#include <com/sun/star/text/XPageCursor.hpp>
|
||||
#include <com/sun/star/text/XTextViewCursorSupplier.hpp>
|
||||
#include <com/sun/star/view/XViewSettingsSupplier.hpp>
|
||||
#include <com/sun/star/text/RelOrientation.hpp>
|
||||
|
||||
#include <vcl/svapp.hxx>
|
||||
|
||||
|
@ -51,8 +52,6 @@ public:
|
|||
}
|
||||
};
|
||||
|
||||
#define DECLARE_RTFEXPORT_TEST(TestName, filename) DECLARE_SW_ROUNDTRIP_TEST(TestName, filename, Test)
|
||||
|
||||
DECLARE_RTFEXPORT_TEST(testZoom, "zoom.rtf")
|
||||
{
|
||||
uno::Reference<frame::XModel> xModel(mxComponent, uno::UNO_QUERY);
|
||||
|
@ -659,6 +658,12 @@ DECLARE_RTFEXPORT_TEST(testFdo80167, "fdo80167.rtf")
|
|||
CPPUNIT_ASSERT_EQUAL(2, getPages());
|
||||
}
|
||||
|
||||
DECLARE_RTFEXPORT_TEST(testFdo32613, "fdo32613.odt")
|
||||
{
|
||||
// This was AS_CHARACTER, RTF export did not support writing anchored pictures.
|
||||
CPPUNIT_ASSERT_EQUAL(text::TextContentAnchorType_AT_CHARACTER, getProperty<text::TextContentAnchorType>(getShape(1), "AnchorType"));
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
CPPUNIT_PLUGIN_IMPLEMENT();
|
||||
|
|
|
@ -2843,6 +2843,37 @@ void RtfAttributeOutput::FormatSurround(const SwFmtSurround& rSurround)
|
|||
m_aRunText->append(OOO_STRING_SVTOOLS_RTF_FLYMAINCNT);
|
||||
m_aRunText->append((sal_Int32) aMC.GetValue());
|
||||
}
|
||||
else if (m_rExport.bOutFlyFrmAttrs && m_rExport.bRTFFlySyntax)
|
||||
{
|
||||
// See DocxSdrExport::startDMLAnchorInline() for SwFmtSurround -> WR / WRK mappings.
|
||||
sal_Int32 nWr = -1;
|
||||
boost::optional<sal_Int32> oWrk;
|
||||
switch (rSurround.GetValue())
|
||||
{
|
||||
case SURROUND_NONE:
|
||||
nWr = 1; // top and bottom
|
||||
break;
|
||||
case SURROUND_THROUGHT:
|
||||
nWr = 3; // none
|
||||
break;
|
||||
case SURROUND_PARALLEL:
|
||||
nWr = 2; // around
|
||||
oWrk = 0; // both sides
|
||||
break;
|
||||
case SURROUND_IDEAL:
|
||||
default:
|
||||
nWr = 2; // around
|
||||
oWrk = 3; // largest
|
||||
break;
|
||||
}
|
||||
m_rExport.Strm().WriteCharPtr(OOO_STRING_SVTOOLS_RTF_SHPWR);
|
||||
m_rExport.OutLong(nWr);
|
||||
if (oWrk)
|
||||
{
|
||||
m_rExport.Strm().WriteCharPtr(OOO_STRING_SVTOOLS_RTF_SHPWRK);
|
||||
m_rExport.OutLong(*oWrk);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void RtfAttributeOutput::FormatVertOrientation(const SwFmtVertOrient& rFlyVert)
|
||||
|
@ -3428,7 +3459,7 @@ static void lcl_AppendSP(OStringBuffer& rBuffer,
|
|||
|
||||
static OString ExportPICT(const SwFlyFrmFmt* pFlyFrmFmt, const Size& rOrig, const Size& rRendered, const Size& rMapped,
|
||||
const SwCropGrf& rCr, const char* pBLIPType, const sal_uInt8* pGraphicAry,
|
||||
unsigned long nSize, const RtfExport& rExport, SvStream* pStream = 0)
|
||||
unsigned long nSize, const RtfExport& rExport, SvStream* pStream = 0, bool bWritePicProp = true)
|
||||
{
|
||||
OStringBuffer aRet;
|
||||
if (pBLIPType && nSize && pGraphicAry)
|
||||
|
@ -3437,7 +3468,7 @@ static OString ExportPICT(const SwFlyFrmFmt* pFlyFrmFmt, const Size& rOrig, cons
|
|||
|
||||
aRet.append("{" OOO_STRING_SVTOOLS_RTF_PICT);
|
||||
|
||||
if (pFlyFrmFmt)
|
||||
if (pFlyFrmFmt && bWritePicProp)
|
||||
{
|
||||
OUString sDescription = pFlyFrmFmt->GetObjDescription();
|
||||
//write picture properties - wzDescription at first
|
||||
|
@ -3660,6 +3691,9 @@ void RtfAttributeOutput::FlyFrameGraphic(const SwFlyFrmFmt* pFlyFrmFmt, const Sw
|
|||
aRendered.Height() = rS.GetHeight();
|
||||
}
|
||||
|
||||
const SwPosition* pAnchor = pFlyFrmFmt->GetAnchor().GetCntntAnchor();
|
||||
sw::Frame aFrame(*pFlyFrmFmt, *pAnchor);
|
||||
|
||||
/*
|
||||
If the graphic is not of type WMF then we will have to store two
|
||||
graphics, one in the native format wrapped in shppict, and the other in
|
||||
|
@ -3667,11 +3701,41 @@ void RtfAttributeOutput::FlyFrameGraphic(const SwFlyFrmFmt* pFlyFrmFmt, const Sw
|
|||
a wmf already then we don't need any such wrapping
|
||||
*/
|
||||
bool bIsWMF = pBLIPType && std::strcmp(pBLIPType, OOO_STRING_SVTOOLS_RTF_WMETAFILE) == 0;
|
||||
if (!bIsWMF)
|
||||
m_rExport.Strm().WriteCharPtr("{" OOO_STRING_SVTOOLS_RTF_IGNORE OOO_STRING_SVTOOLS_RTF_SHPPICT);
|
||||
if (aFrame.IsInline())
|
||||
{
|
||||
if (!bIsWMF)
|
||||
m_rExport.Strm().WriteCharPtr("{" OOO_STRING_SVTOOLS_RTF_IGNORE OOO_STRING_SVTOOLS_RTF_SHPPICT);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_rExport.Strm().WriteCharPtr("{" OOO_STRING_SVTOOLS_RTF_SHP "{" OOO_STRING_SVTOOLS_RTF_IGNORE OOO_STRING_SVTOOLS_RTF_SHPINST);
|
||||
m_pFlyFrameSize = &aRendered;
|
||||
m_rExport.mpParentFrame = &aFrame;
|
||||
m_rExport.bOutFlyFrmAttrs = m_rExport.bRTFFlySyntax = true;
|
||||
m_rExport.OutputFormat(aFrame.GetFrmFmt(), false, false, true);
|
||||
m_rExport.bOutFlyFrmAttrs = m_rExport.bRTFFlySyntax = false;
|
||||
m_rExport.mpParentFrame = NULL;
|
||||
m_pFlyFrameSize = 0;
|
||||
|
||||
std::vector< std::pair<OString, OString> > aFlyProperties;
|
||||
aFlyProperties.push_back(std::make_pair<OString, OString>("shapeType", OString::number(ESCHER_ShpInst_PictureFrame)));
|
||||
aFlyProperties.push_back(std::make_pair<OString, OString>("wzDescription", msfilter::rtfutil::OutString(pFlyFrmFmt->GetObjDescription(), m_rExport.eCurrentEncoding)));
|
||||
aFlyProperties.push_back(std::make_pair<OString, OString>("wzName", msfilter::rtfutil::OutString(pFlyFrmFmt->GetObjTitle(), m_rExport.eCurrentEncoding)));
|
||||
for (size_t i = 0; i < aFlyProperties.size(); ++i)
|
||||
{
|
||||
m_rExport.Strm().WriteCharPtr("{" OOO_STRING_SVTOOLS_RTF_SP "{");
|
||||
m_rExport.Strm().WriteCharPtr(OOO_STRING_SVTOOLS_RTF_SN " ");
|
||||
m_rExport.Strm().WriteCharPtr(aFlyProperties[i].first.getStr());
|
||||
m_rExport.Strm().WriteCharPtr("}{" OOO_STRING_SVTOOLS_RTF_SV " ");
|
||||
m_rExport.Strm().WriteCharPtr(aFlyProperties[i].second.getStr());
|
||||
m_rExport.Strm().WriteCharPtr("}}");
|
||||
}
|
||||
m_rExport.Strm().WriteCharPtr("{" OOO_STRING_SVTOOLS_RTF_SP "{" OOO_STRING_SVTOOLS_RTF_SN " pib" "}{" OOO_STRING_SVTOOLS_RTF_SV " ");
|
||||
}
|
||||
|
||||
bool bWritePicProp = aFrame.IsInline();
|
||||
if (pBLIPType)
|
||||
ExportPICT(pFlyFrmFmt, aSize, aRendered, aMapped, rCr, pBLIPType, pGraphicAry, nSize, m_rExport, &m_rExport.Strm());
|
||||
ExportPICT(pFlyFrmFmt, aSize, aRendered, aMapped, rCr, pBLIPType, pGraphicAry, nSize, m_rExport, &m_rExport.Strm(), bWritePicProp);
|
||||
else
|
||||
{
|
||||
aStream.Seek(0);
|
||||
|
@ -3681,24 +3745,29 @@ void RtfAttributeOutput::FlyFrameGraphic(const SwFlyFrmFmt* pFlyFrmFmt, const Sw
|
|||
nSize = aStream.Tell();
|
||||
pGraphicAry = (sal_uInt8*)aStream.GetData();
|
||||
|
||||
ExportPICT(pFlyFrmFmt, aSize, aRendered, aMapped, rCr, pBLIPType, pGraphicAry, nSize, m_rExport, &m_rExport.Strm());
|
||||
ExportPICT(pFlyFrmFmt, aSize, aRendered, aMapped, rCr, pBLIPType, pGraphicAry, nSize, m_rExport, &m_rExport.Strm(), bWritePicProp);
|
||||
}
|
||||
|
||||
if (!bIsWMF)
|
||||
if (aFrame.IsInline())
|
||||
{
|
||||
m_rExport.Strm().WriteCharPtr("}" "{" OOO_STRING_SVTOOLS_RTF_NONSHPPICT);
|
||||
if (!bIsWMF)
|
||||
{
|
||||
m_rExport.Strm().WriteCharPtr("}" "{" OOO_STRING_SVTOOLS_RTF_NONSHPPICT);
|
||||
|
||||
aStream.Seek(0);
|
||||
GraphicConverter::Export(aStream, rGraphic, CVT_WMF);
|
||||
pBLIPType = OOO_STRING_SVTOOLS_RTF_WMETAFILE;
|
||||
aStream.Seek(STREAM_SEEK_TO_END);
|
||||
nSize = aStream.Tell();
|
||||
pGraphicAry = (sal_uInt8*)aStream.GetData();
|
||||
aStream.Seek(0);
|
||||
GraphicConverter::Export(aStream, rGraphic, CVT_WMF);
|
||||
pBLIPType = OOO_STRING_SVTOOLS_RTF_WMETAFILE;
|
||||
aStream.Seek(STREAM_SEEK_TO_END);
|
||||
nSize = aStream.Tell();
|
||||
pGraphicAry = (sal_uInt8*)aStream.GetData();
|
||||
|
||||
ExportPICT(pFlyFrmFmt, aSize, aRendered, aMapped, rCr, pBLIPType, pGraphicAry, nSize, m_rExport, &m_rExport.Strm());
|
||||
ExportPICT(pFlyFrmFmt, aSize, aRendered, aMapped, rCr, pBLIPType, pGraphicAry, nSize, m_rExport, &m_rExport.Strm());
|
||||
|
||||
m_rExport.Strm().WriteChar('}');
|
||||
m_rExport.Strm().WriteChar('}');
|
||||
}
|
||||
}
|
||||
else
|
||||
m_rExport.Strm().WriteCharPtr("}}}}"); // Close SV, SP, SHPINST and SHP.
|
||||
|
||||
if (bSwapped)
|
||||
const_cast<Graphic&>(rGraphic).SwapOut();
|
||||
|
|
Loading…
Reference in a new issue