/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
sal_uInt32 nMetaType(0); if (checkSeek(*pStream, 0x28))
pStream->ReadUInt32(nMetaType);
pStream->Seek(nOrgPos);
bool bReadError(false);
try
{ if (nMetaType == 0x464d4520)
{ // read and get possible failure/error, ReadEnhWMF returns success
emfio::EmfReader aReader(*pStream, aMtf);
aReader.SetSizeHint(maSizeHint); if (!bEnableEMFPlus)
{
aReader.SetEnableEMFPlus(bEnableEMFPlus);
}
bReadError = !aReader.ReadEnhWMF();
} else
{
emfio::WmfReader aReader(*pStream, aMtf, bExternalHeaderUsed ? &aExternalHeader : nullptr); if (!bEnableEMFPlus)
aReader.SetEnableEMFPlus(bEnableEMFPlus);
aReader.ReadWMF();
// Need to check for ErrCode at stream to not lose former work. // This may contain important information and will behave the // same as before. When we have an error, do not create content
ErrCode aErrCode(pStream->GetError());
// use size const basegfx::B2DHomMatrix aMetafileTransform(
basegfx::utils::createScaleB2DHomMatrix(
aSize.Width(),
aSize.Height()));
// ...and create a single MetafilePrimitive2D containing the Metafile. // CAUTION: Currently, ReadWindowMetafile uses the local VectorGraphicData // and a MetafileAccessor hook at the MetafilePrimitive2D inside of // ImpGraphic::ImplGetGDIMetaFile to get the Metafile. Thus, the first // and only primitive in this case *has to be* a MetafilePrimitive2D.
aRetval.push_back( new drawinglayer::primitive2d::MetafilePrimitive2D(
aMetafileTransform,
aMtf));
// // force to use decomposition directly to get rid of the metafile // const css::uno::Sequence< css::beans::PropertyValue > aViewParameters; // drawinglayer::primitive2d::MetafilePrimitive2D aMetafilePrimitive2D( // aMetafileTransform, // aMtf); // aRetval.append(aMetafilePrimitive2D.getDecomposition(aViewParameters));
// if (aRetval.empty()) // { // // for test, just create some graphic data that will get visualized // const basegfx::B2DRange aRange(1000, 1000, 5000, 5000); // const basegfx::BColor aColor(1.0, 0.0, 0.0); // const basegfx::B2DPolygon aOutline(basegfx::utils::createPolygonFromRect(aRange)); // // aRetval.push_back(new drawinglayer::primitive2d::PolyPolygonColorPrimitive2D(basegfx::B2DPolyPolygon(aOutline), aColor)); // }
}
} else
{
SAL_WARN("emfio", "Invalid stream (!)");
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.