1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
23 #include <vcl/wmf.hxx>
24 #include <vcl/gdimetafiletools.hxx>
25 #include <comphelper/scopeguard.hxx>
27 bool ConvertWMFToGDIMetaFile( SvStream
& rStreamWMF
, GDIMetaFile
& rGDIMetaFile
, FilterConfigItem
* pConfigItem
, WMF_EXTERNALHEADER
*pExtHeader
)
30 sal_uInt32 nOrgPos
= rStreamWMF
.Tell();
31 SvStreamEndian nOrigNumberFormat
= rStreamWMF
.GetEndian();
32 rStreamWMF
.SetEndian( SvStreamEndian::LITTLE
);
33 rStreamWMF
.Seek( 0x28 );
34 rStreamWMF
.ReadUInt32( nMetaType
);
35 rStreamWMF
.Seek( nOrgPos
);
36 if ( nMetaType
== 0x464d4520 )
38 if ( !EnhWMFReader( rStreamWMF
, rGDIMetaFile
, pConfigItem
).ReadEnhWMF() )
39 rStreamWMF
.SetError( SVSTREAM_FILEFORMAT_ERROR
);
43 WMFReader( rStreamWMF
, rGDIMetaFile
, pConfigItem
, pExtHeader
).ReadWMF( );
47 // #i123216# allow a look at CheckSum and ByteSize for debugging
48 SAL_INFO("vcl.emf", "\t\t\tchecksum: 0x" << std::hex
<< rGDIMetaFile
.GetChecksum() << std::dec
);
49 SAL_INFO("vcl.emf", "\t\t\tsize: " << rGDIMetaFile
.GetSizeBytes());
52 rStreamWMF
.SetEndian( nOrigNumberFormat
);
53 return !rStreamWMF
.GetError();
56 bool ReadWindowMetafile( SvStream
& rStream
, GDIMetaFile
& rMTF
, FilterConfigItem
* pFilterConfigItem
)
58 sal_uInt32
nMetaType(0);
59 sal_uInt32 nOrgPos
= rStream
.Tell();
61 SvStreamEndian nOrigNumberFormat
= rStream
.GetEndian();
62 rStream
.SetEndian( SvStreamEndian::LITTLE
);
63 //exception-safe reset nOrigNumberFormat at end of scope
64 const ::comphelper::ScopeGuard
aScopeGuard(
65 boost::bind(&SvStream::SetEndian
, ::boost::ref(rStream
),
69 rStream
.ReadUInt32( nMetaType
);
70 rStream
.Seek( nOrgPos
);
75 if ( nMetaType
== 0x464d4520 )
77 if ( !EnhWMFReader( rStream
, rMTF
, NULL
).ReadEnhWMF() )
78 rStream
.SetError( SVSTREAM_FILEFORMAT_ERROR
);
82 WMFReader( rStream
, rMTF
, pFilterConfigItem
).ReadWMF();
85 return rStream
.good();
88 bool ConvertGDIMetaFileToWMF( const GDIMetaFile
& rMTF
, SvStream
& rTargetStream
,
89 FilterConfigItem
* pConfigItem
, bool bPlaceable
)
92 GDIMetaFile
aGdiMetaFile(rMTF
);
94 if(usesClipActions(aGdiMetaFile
))
96 // #i121267# It is necessary to prepare the metafile since the export does *not* support
97 // clip regions. This tooling method clips the geometry content of the metafile internally
98 // against it's own clip regions, so that the export is safe to ignore clip regions
99 clipMetafileContentAgainstOwnRegions(aGdiMetaFile
);
102 return aWMFWriter
.WriteWMF( aGdiMetaFile
, rTargetStream
, pConfigItem
, bPlaceable
);
105 bool ConvertGDIMetaFileToEMF(const GDIMetaFile
& rMTF
, SvStream
& rTargetStream
)
107 EMFWriter
aEMFWriter(rTargetStream
);
108 GDIMetaFile
aGdiMetaFile(rMTF
);
110 if(usesClipActions(aGdiMetaFile
))
112 // #i121267# It is necessary to prepare the metafile since the export does *not* support
113 // clip regions. This tooling method clips the geometry content of the metafile internally
114 // against it's own clip regions, so that the export is safe to ignore clip regions
115 clipMetafileContentAgainstOwnRegions(aGdiMetaFile
);
118 return aEMFWriter
.WriteEMF(aGdiMetaFile
);
121 bool WriteWindowMetafileBits( SvStream
& rStream
, const GDIMetaFile
& rMTF
)
123 return WMFWriter().WriteWMF( rMTF
, rStream
, NULL
, false );
126 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */