/* -*- 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/. *
*/
for (tools::Long y = 0; y < nHeightHalf; ++y)
{
Scanline pScanlineRead = pReadAccess->GetScanline( y );
Scanline pScanlineRead2 = pReadAccess->GetScanline( nHeight - y - 1 ); for (tools::Long x = 0; x < nWidthHalf; ++x)
{ if (pReadAccess->GetPixelFromData(pScanlineRead, x) != pReadAccess->GetPixelFromData(pScanlineRead2, x))
{ returnfalse;
} if (pReadAccess->GetPixelFromData(pScanlineRead, x) != pReadAccess->GetPixelFromData(pScanlineRead, nWidth - x - 1))
{ returnfalse;
} if (pReadAccess->GetPixelFromData(pScanlineRead, x) != pReadAccess->GetPixelFromData(pScanlineRead2, nWidth - x - 1))
{ returnfalse;
}
}
}
if (bWidthEven)
{ for (tools::Long y = 0; y < nHeightHalf; ++y)
{ if (pReadAccess->GetPixel(y, nWidthHalf) != pReadAccess->GetPixel(nHeight - y - 1, nWidthHalf))
{ returnfalse;
}
}
}
if (bHeightEven)
{
Scanline pScanlineRead = pReadAccess->GetScanline( nHeightHalf ); for (tools::Long x = 0; x < nWidthHalf; ++x)
{ if (pReadAccess->GetPixelFromData(pScanlineRead, x) != pReadAccess->GetPixelFromData(pScanlineRead, nWidth - x - 1))
{ returnfalse;
}
}
}
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 ist noch experimentell.