2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 07:37:54 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:37:54 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:37:54 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:37:54 +00:00
|
|
|
* $RCSfile: bitmapex.cxx,v $
|
|
|
|
* $Revision: 1.27 $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:37:54 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:37:54 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:37:54 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 07:37:54 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
2006-09-17 10:57:54 +00:00
|
|
|
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_vcl.hxx"
|
2004-05-21 13:37:52 +00:00
|
|
|
#include <ctype.h>
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <rtl/crc.h>
|
2007-06-27 19:10:21 +00:00
|
|
|
#include <vcl/salbtype.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <tools/stream.hxx>
|
|
|
|
#include <tools/debug.hxx>
|
2007-06-27 19:10:21 +00:00
|
|
|
#include <vcl/outdev.hxx>
|
|
|
|
#include <vcl/alpha.hxx>
|
2007-07-24 09:07:37 +00:00
|
|
|
#include <vcl/image.h>
|
2007-06-27 19:10:21 +00:00
|
|
|
#include <vcl/bitmapex.hxx>
|
|
|
|
#include <vcl/pngread.hxx>
|
2004-05-21 13:37:52 +00:00
|
|
|
#ifndef _SV_IMPIMAGETREE_H
|
2007-07-24 09:07:37 +00:00
|
|
|
#include <vcl/impimagetree.hxx>
|
2004-05-21 13:37:52 +00:00
|
|
|
#endif
|
|
|
|
#ifndef _SV_RC_H
|
|
|
|
#include <tools/rc.h>
|
|
|
|
#endif
|
2007-06-27 19:10:21 +00:00
|
|
|
#include <vcl/svapp.hxx>
|
2009-10-20 15:36:02 +00:00
|
|
|
#include <vcl/bmpacc.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
// ------------
|
|
|
|
// - BitmapEx -
|
|
|
|
// ------------
|
|
|
|
|
|
|
|
BitmapEx::BitmapEx() :
|
|
|
|
eTransparent( TRANSPARENT_NONE ),
|
|
|
|
bAlpha ( FALSE )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BitmapEx::BitmapEx( const BitmapEx& rBitmapEx ) :
|
|
|
|
aBitmap ( rBitmapEx.aBitmap ),
|
|
|
|
aMask ( rBitmapEx.aMask ),
|
|
|
|
aBitmapSize ( rBitmapEx.aBitmapSize ),
|
|
|
|
aTransparentColor ( rBitmapEx.aTransparentColor ),
|
|
|
|
eTransparent ( rBitmapEx.eTransparent ),
|
|
|
|
bAlpha ( rBitmapEx.bAlpha )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-06-06 13:10:59 +00:00
|
|
|
BitmapEx::BitmapEx( const BitmapEx& rBitmapEx, Point aSrc, Size aSize ) :
|
|
|
|
eTransparent( TRANSPARENT_NONE ),
|
|
|
|
bAlpha ( FALSE )
|
|
|
|
{
|
|
|
|
if( rBitmapEx.IsEmpty() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
aBitmap = Bitmap( aSize, rBitmapEx.aBitmap.GetBitCount() );
|
|
|
|
aBitmapSize = aSize;
|
|
|
|
if( rBitmapEx.IsAlpha() )
|
|
|
|
{
|
|
|
|
bAlpha = TRUE;
|
|
|
|
aMask = AlphaMask( aSize ).ImplGetBitmap();
|
|
|
|
}
|
|
|
|
else if( rBitmapEx.IsTransparent() )
|
|
|
|
aMask = Bitmap( aSize, rBitmapEx.aMask.GetBitCount() );
|
|
|
|
|
|
|
|
Rectangle aDestRect( Point( 0, 0 ), aSize );
|
|
|
|
Rectangle aSrcRect( aSrc, aSize );
|
|
|
|
CopyPixel( aDestRect, aSrcRect, &rBitmapEx );
|
|
|
|
}
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2004-05-21 13:37:52 +00:00
|
|
|
BitmapEx::BitmapEx( const ResId& rResId ) :
|
|
|
|
eTransparent( TRANSPARENT_NONE ),
|
|
|
|
bAlpha ( FALSE )
|
|
|
|
{
|
|
|
|
static ImplImageTreeSingletonRef aImageTree;
|
|
|
|
ResMgr* pResMgr = NULL;
|
|
|
|
|
|
|
|
ResMgr::GetResourceSkipHeader( rResId.SetRT( RSC_BITMAP ), &pResMgr );
|
2005-01-03 16:40:57 +00:00
|
|
|
pResMgr->ReadLong();
|
|
|
|
pResMgr->ReadLong();
|
2004-05-21 13:37:52 +00:00
|
|
|
|
|
|
|
const String aFileName( pResMgr->ReadString() );
|
2006-01-05 17:07:16 +00:00
|
|
|
::rtl::OUString aCurrentSymbolsStyle = Application::GetSettings().GetStyleSettings().GetCurrentSymbolsStyleName();
|
2004-05-21 13:37:52 +00:00
|
|
|
|
2006-01-05 17:07:16 +00:00
|
|
|
if( !aImageTree->loadImage( aFileName, aCurrentSymbolsStyle, *this ) )
|
2004-05-21 13:37:52 +00:00
|
|
|
{
|
|
|
|
#ifdef DBG_UTIL
|
|
|
|
ByteString aErrorStr( "BitmapEx::BitmapEx( const ResId& rResId ): could not load image <" );
|
2004-05-24 14:25:19 +00:00
|
|
|
DBG_ERROR( ( ( aErrorStr += ByteString( aFileName, RTL_TEXTENCODING_ASCII_US ) ) += '>' ).GetBuffer() );
|
2004-05-21 13:37:52 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
BitmapEx::BitmapEx( const Bitmap& rBmp ) :
|
|
|
|
aBitmap ( rBmp ),
|
|
|
|
aBitmapSize ( aBitmap.GetSizePixel() ),
|
|
|
|
eTransparent( TRANSPARENT_NONE ),
|
|
|
|
bAlpha ( FALSE )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BitmapEx::BitmapEx( const Bitmap& rBmp, const Bitmap& rMask ) :
|
|
|
|
aBitmap ( rBmp ),
|
|
|
|
aMask ( rMask ),
|
|
|
|
aBitmapSize ( aBitmap.GetSizePixel() ),
|
|
|
|
eTransparent ( !rMask ? TRANSPARENT_NONE : TRANSPARENT_BITMAP ),
|
|
|
|
bAlpha ( FALSE )
|
|
|
|
{
|
2006-05-04 06:51:30 +00:00
|
|
|
DBG_ASSERT( !rMask || rBmp.GetSizePixel() == rMask.GetSizePixel(),
|
|
|
|
"BitmapEx::BitmapEx(): size mismatch for bitmap and mask." );
|
|
|
|
|
2003-04-11 16:28:27 +00:00
|
|
|
// #105489# Ensure a mask is exactly one bit deep
|
|
|
|
if( !!aMask && aMask.GetBitCount() != 1 )
|
|
|
|
{
|
|
|
|
OSL_TRACE("BitmapEx: forced mask to monochrome");
|
|
|
|
aMask.ImplMakeMono( 255 );
|
|
|
|
}
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BitmapEx::BitmapEx( const Bitmap& rBmp, const AlphaMask& rAlphaMask ) :
|
|
|
|
aBitmap ( rBmp ),
|
|
|
|
aMask ( rAlphaMask.ImplGetBitmap() ),
|
|
|
|
aBitmapSize ( aBitmap.GetSizePixel() ),
|
|
|
|
eTransparent ( !rAlphaMask ? TRANSPARENT_NONE : TRANSPARENT_BITMAP ),
|
|
|
|
bAlpha ( !rAlphaMask ? FALSE : TRUE )
|
|
|
|
{
|
2006-05-04 06:51:30 +00:00
|
|
|
DBG_ASSERT( !rAlphaMask || rBmp.GetSizePixel() == rAlphaMask.GetSizePixel(),
|
|
|
|
"BitmapEx::BitmapEx(): size mismatch for bitmap and alpha mask." );
|
2007-04-16 13:20:41 +00:00
|
|
|
|
|
|
|
// #i75531# the workaround below can go when
|
|
|
|
// X11SalGraphics::drawAlphaBitmap()'s render acceleration
|
|
|
|
// can handle the bitmap depth mismatch directly
|
|
|
|
if( aBitmap.GetBitCount() < aMask.GetBitCount() )
|
|
|
|
aBitmap.Convert( BMP_CONVERSION_24BIT );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BitmapEx::BitmapEx( const Bitmap& rBmp, const Color& rTransparentColor ) :
|
|
|
|
aBitmap ( rBmp ),
|
|
|
|
aBitmapSize ( aBitmap.GetSizePixel() ),
|
|
|
|
aTransparentColor ( rTransparentColor ),
|
|
|
|
eTransparent ( TRANSPARENT_BITMAP ),
|
|
|
|
bAlpha ( FALSE )
|
|
|
|
{
|
|
|
|
aMask = aBitmap.CreateMask( aTransparentColor );
|
2006-05-04 06:51:30 +00:00
|
|
|
|
|
|
|
DBG_ASSERT( rBmp.GetSizePixel() == aMask.GetSizePixel(),
|
|
|
|
"BitmapEx::BitmapEx(): size mismatch for bitmap and alpha mask." );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BitmapEx::~BitmapEx()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2004-05-21 13:37:52 +00:00
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
BitmapEx& BitmapEx::operator=( const BitmapEx& rBitmapEx )
|
|
|
|
{
|
|
|
|
if( &rBitmapEx != this )
|
|
|
|
{
|
|
|
|
aBitmap = rBitmapEx.aBitmap;
|
|
|
|
aMask = rBitmapEx.aMask;
|
|
|
|
aBitmapSize = rBitmapEx.aBitmapSize;
|
|
|
|
aTransparentColor = rBitmapEx.aTransparentColor;
|
|
|
|
eTransparent = rBitmapEx.eTransparent;
|
|
|
|
bAlpha = rBitmapEx.bAlpha;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::operator==( const BitmapEx& rBitmapEx ) const
|
|
|
|
{
|
|
|
|
if( eTransparent != rBitmapEx.eTransparent )
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if( aBitmap != rBitmapEx.aBitmap )
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if( aBitmapSize != rBitmapEx.aBitmapSize )
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if( eTransparent == TRANSPARENT_NONE )
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if( eTransparent == TRANSPARENT_COLOR )
|
|
|
|
return aTransparentColor == rBitmapEx.aTransparentColor;
|
|
|
|
|
|
|
|
return( ( aMask == rBitmapEx.aMask ) && ( bAlpha == rBitmapEx.bAlpha ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::IsEqual( const BitmapEx& rBmpEx ) const
|
|
|
|
{
|
|
|
|
return( rBmpEx.eTransparent == eTransparent &&
|
|
|
|
rBmpEx.bAlpha == bAlpha &&
|
|
|
|
rBmpEx.aBitmap.IsEqual( aBitmap ) &&
|
|
|
|
rBmpEx.aMask.IsEqual( aMask ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::IsEmpty() const
|
|
|
|
{
|
|
|
|
return( aBitmap.IsEmpty() && aMask.IsEmpty() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
void BitmapEx::SetEmpty()
|
|
|
|
{
|
|
|
|
aBitmap.SetEmpty();
|
|
|
|
aMask.SetEmpty();
|
|
|
|
eTransparent = TRANSPARENT_NONE;
|
|
|
|
bAlpha = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
void BitmapEx::Clear()
|
|
|
|
{
|
|
|
|
SetEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::IsTransparent() const
|
|
|
|
{
|
|
|
|
return( eTransparent != TRANSPARENT_NONE );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::IsAlpha() const
|
|
|
|
{
|
|
|
|
return( IsTransparent() && bAlpha );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
Bitmap BitmapEx::GetBitmap( const Color* pTransReplaceColor ) const
|
|
|
|
{
|
|
|
|
Bitmap aRetBmp( aBitmap );
|
|
|
|
|
|
|
|
if( pTransReplaceColor && ( eTransparent != TRANSPARENT_NONE ) )
|
|
|
|
{
|
|
|
|
Bitmap aTempMask;
|
|
|
|
|
|
|
|
if( eTransparent == TRANSPARENT_COLOR )
|
|
|
|
aTempMask = aBitmap.CreateMask( aTransparentColor );
|
|
|
|
else
|
|
|
|
aTempMask = aMask;
|
|
|
|
|
|
|
|
if( !IsAlpha() )
|
|
|
|
aRetBmp.Replace( aTempMask, *pTransReplaceColor );
|
|
|
|
else
|
|
|
|
aRetBmp.Replace( GetAlpha(), *pTransReplaceColor );
|
|
|
|
}
|
|
|
|
|
|
|
|
return aRetBmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2002-04-22 07:51:50 +00:00
|
|
|
BitmapEx BitmapEx::GetColorTransformedBitmapEx( BmpColorMode eColorMode ) const
|
|
|
|
{
|
2004-05-21 13:37:52 +00:00
|
|
|
BitmapEx aRet;
|
2002-04-22 07:51:50 +00:00
|
|
|
|
2004-05-21 13:37:52 +00:00
|
|
|
if( BMP_COLOR_HIGHCONTRAST == eColorMode )
|
|
|
|
{
|
|
|
|
aRet = *this;
|
|
|
|
aRet.aBitmap = aBitmap.GetColorTransformedBitmap( eColorMode );
|
|
|
|
}
|
|
|
|
else if( BMP_COLOR_MONOCHROME_BLACK == eColorMode ||
|
|
|
|
BMP_COLOR_MONOCHROME_WHITE == eColorMode )
|
|
|
|
{
|
|
|
|
aRet = *this;
|
|
|
|
aRet.aBitmap = aRet.aBitmap.GetColorTransformedBitmap( eColorMode );
|
|
|
|
|
|
|
|
if( !aRet.aMask.IsEmpty() )
|
|
|
|
{
|
|
|
|
aRet.aMask.CombineSimple( aRet.aBitmap, BMP_COMBINE_OR );
|
|
|
|
aRet.aBitmap.Erase( ( BMP_COLOR_MONOCHROME_BLACK == eColorMode ) ? COL_BLACK : COL_WHITE );
|
2006-05-04 06:51:30 +00:00
|
|
|
|
|
|
|
DBG_ASSERT( aRet.aBitmap.GetSizePixel() == aRet.aMask.GetSizePixel(),
|
|
|
|
"BitmapEx::GetColorTransformedBitmapEx(): size mismatch for bitmap and alpha mask." );
|
2004-05-21 13:37:52 +00:00
|
|
|
}
|
|
|
|
}
|
2002-04-22 07:51:50 +00:00
|
|
|
|
|
|
|
return aRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
Bitmap BitmapEx::GetMask() const
|
|
|
|
{
|
|
|
|
Bitmap aRet( aMask );
|
|
|
|
|
|
|
|
if( IsAlpha() )
|
|
|
|
aRet.ImplMakeMono( 255 );
|
|
|
|
|
|
|
|
return aRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
AlphaMask BitmapEx::GetAlpha() const
|
|
|
|
{
|
|
|
|
AlphaMask aAlpha;
|
|
|
|
|
|
|
|
if( IsAlpha() )
|
|
|
|
aAlpha.ImplSetBitmap( aMask );
|
|
|
|
else
|
|
|
|
aAlpha = aMask;
|
|
|
|
|
|
|
|
return aAlpha;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
ULONG BitmapEx::GetSizeBytes() const
|
|
|
|
{
|
|
|
|
ULONG nSizeBytes = aBitmap.GetSizeBytes();
|
|
|
|
|
|
|
|
if( eTransparent == TRANSPARENT_BITMAP )
|
|
|
|
nSizeBytes += aMask.GetSizeBytes();
|
|
|
|
|
|
|
|
return nSizeBytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
ULONG BitmapEx::GetChecksum() const
|
|
|
|
{
|
|
|
|
sal_uInt32 nCrc = aBitmap.GetChecksum();
|
|
|
|
SVBT32 aBT32;
|
|
|
|
|
2006-04-19 12:54:39 +00:00
|
|
|
UInt32ToSVBT32( (long) eTransparent, aBT32 );
|
2000-09-18 16:07:07 +00:00
|
|
|
nCrc = rtl_crc32( nCrc, aBT32, 4 );
|
|
|
|
|
2006-04-19 12:54:39 +00:00
|
|
|
UInt32ToSVBT32( (long) bAlpha, aBT32 );
|
2000-09-18 16:07:07 +00:00
|
|
|
nCrc = rtl_crc32( nCrc, aBT32, 4 );
|
|
|
|
|
|
|
|
if( ( TRANSPARENT_BITMAP == eTransparent ) && !aMask.IsEmpty() )
|
|
|
|
{
|
2006-04-19 12:54:39 +00:00
|
|
|
UInt32ToSVBT32( aMask.GetChecksum(), aBT32 );
|
2000-09-18 16:07:07 +00:00
|
|
|
nCrc = rtl_crc32( nCrc, aBT32, 4 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return nCrc;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
void BitmapEx::SetSizePixel( const Size& rNewSize )
|
|
|
|
{
|
|
|
|
Scale( rNewSize );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Invert()
|
|
|
|
{
|
|
|
|
BOOL bRet = FALSE;
|
|
|
|
|
|
|
|
if( !!aBitmap )
|
|
|
|
{
|
|
|
|
bRet = aBitmap.Invert();
|
|
|
|
|
|
|
|
if( bRet && ( eTransparent == TRANSPARENT_COLOR ) )
|
|
|
|
aTransparentColor = BitmapColor( aTransparentColor ).Invert();
|
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Mirror( ULONG nMirrorFlags )
|
|
|
|
{
|
|
|
|
BOOL bRet = FALSE;
|
|
|
|
|
|
|
|
if( !!aBitmap )
|
|
|
|
{
|
|
|
|
bRet = aBitmap.Mirror( nMirrorFlags );
|
|
|
|
|
|
|
|
if( bRet && ( eTransparent == TRANSPARENT_BITMAP ) && !!aMask )
|
|
|
|
aMask.Mirror( nMirrorFlags );
|
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Scale( const double& rScaleX, const double& rScaleY, ULONG nScaleFlag )
|
|
|
|
{
|
|
|
|
BOOL bRet = FALSE;
|
|
|
|
|
|
|
|
if( !!aBitmap )
|
|
|
|
{
|
|
|
|
bRet = aBitmap.Scale( rScaleX, rScaleY, nScaleFlag );
|
|
|
|
|
|
|
|
if( bRet && ( eTransparent == TRANSPARENT_BITMAP ) && !!aMask )
|
|
|
|
aMask.Scale( rScaleX, rScaleY, BMP_SCALE_FAST );
|
|
|
|
|
|
|
|
aBitmapSize = aBitmap.GetSizePixel();
|
2006-05-04 06:51:30 +00:00
|
|
|
|
|
|
|
DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(),
|
|
|
|
"BitmapEx::Scale(): size mismatch for bitmap and alpha mask." );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Scale( const Size& rNewSize, ULONG nScaleFlag )
|
|
|
|
{
|
|
|
|
BOOL bRet;
|
|
|
|
|
|
|
|
if( aBitmapSize.Width() && aBitmapSize.Height() )
|
|
|
|
{
|
|
|
|
bRet = Scale( (double) rNewSize.Width() / aBitmapSize.Width(),
|
|
|
|
(double) rNewSize.Height() / aBitmapSize.Height(),
|
|
|
|
nScaleFlag );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
bRet = TRUE;
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Rotate( long nAngle10, const Color& rFillColor )
|
|
|
|
{
|
|
|
|
BOOL bRet = FALSE;
|
|
|
|
|
|
|
|
if( !!aBitmap )
|
|
|
|
{
|
|
|
|
const BOOL bTransRotate = ( Color( COL_TRANSPARENT ) == rFillColor );
|
|
|
|
|
|
|
|
if( bTransRotate )
|
|
|
|
{
|
|
|
|
if( eTransparent == TRANSPARENT_COLOR )
|
|
|
|
bRet = aBitmap.Rotate( nAngle10, aTransparentColor );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bRet = aBitmap.Rotate( nAngle10, COL_BLACK );
|
|
|
|
|
|
|
|
if( eTransparent == TRANSPARENT_NONE )
|
|
|
|
{
|
|
|
|
aMask = Bitmap( aBitmapSize, 1 );
|
|
|
|
aMask.Erase( COL_BLACK );
|
|
|
|
eTransparent = TRANSPARENT_BITMAP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( bRet && !!aMask )
|
|
|
|
aMask.Rotate( nAngle10, COL_WHITE );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bRet = aBitmap.Rotate( nAngle10, rFillColor );
|
|
|
|
|
|
|
|
if( bRet && ( eTransparent == TRANSPARENT_BITMAP ) && !!aMask )
|
|
|
|
aMask.Rotate( nAngle10, COL_WHITE );
|
|
|
|
}
|
|
|
|
|
|
|
|
aBitmapSize = aBitmap.GetSizePixel();
|
2006-05-04 06:51:30 +00:00
|
|
|
|
|
|
|
DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(),
|
|
|
|
"BitmapEx::Rotate(): size mismatch for bitmap and alpha mask." );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Crop( const Rectangle& rRectPixel )
|
|
|
|
{
|
|
|
|
BOOL bRet = FALSE;
|
|
|
|
|
|
|
|
if( !!aBitmap )
|
|
|
|
{
|
|
|
|
bRet = aBitmap.Crop( rRectPixel );
|
|
|
|
|
|
|
|
if( bRet && ( eTransparent == TRANSPARENT_BITMAP ) && !!aMask )
|
|
|
|
aMask.Crop( rRectPixel );
|
|
|
|
|
|
|
|
aBitmapSize = aBitmap.GetSizePixel();
|
2006-05-04 06:51:30 +00:00
|
|
|
|
|
|
|
DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(),
|
|
|
|
"BitmapEx::Crop(): size mismatch for bitmap and alpha mask." );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Convert( BmpConversion eConversion )
|
|
|
|
{
|
|
|
|
return( !!aBitmap ? aBitmap.Convert( eConversion ) : FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::ReduceColors( USHORT nNewColorCount, BmpReduce eReduce )
|
|
|
|
{
|
|
|
|
return( !!aBitmap ? aBitmap.ReduceColors( nNewColorCount, eReduce ) : FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Expand( ULONG nDX, ULONG nDY, const Color* pInitColor, BOOL bExpandTransparent )
|
|
|
|
{
|
|
|
|
BOOL bRet = FALSE;
|
|
|
|
|
|
|
|
if( !!aBitmap )
|
|
|
|
{
|
|
|
|
bRet = aBitmap.Expand( nDX, nDY, pInitColor );
|
|
|
|
|
|
|
|
if( bRet && ( eTransparent == TRANSPARENT_BITMAP ) && !!aMask )
|
|
|
|
{
|
|
|
|
Color aColor( bExpandTransparent ? COL_WHITE : COL_BLACK );
|
|
|
|
aMask.Expand( nDX, nDY, &aColor );
|
|
|
|
}
|
|
|
|
|
|
|
|
aBitmapSize = aBitmap.GetSizePixel();
|
2006-05-04 06:51:30 +00:00
|
|
|
|
|
|
|
DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(),
|
|
|
|
"BitmapEx::Expand(): size mismatch for bitmap and alpha mask." );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2000-11-16 16:35:51 +00:00
|
|
|
BOOL BitmapEx::CopyPixel( const Rectangle& rRectDst, const Rectangle& rRectSrc,
|
|
|
|
const BitmapEx* pBmpExSrc )
|
|
|
|
{
|
|
|
|
BOOL bRet = FALSE;
|
|
|
|
|
|
|
|
if( !pBmpExSrc || pBmpExSrc->IsEmpty() )
|
|
|
|
{
|
|
|
|
if( !aBitmap.IsEmpty() )
|
|
|
|
{
|
|
|
|
bRet = aBitmap.CopyPixel( rRectDst, rRectSrc );
|
|
|
|
|
|
|
|
if( bRet && ( eTransparent == TRANSPARENT_BITMAP ) && !!aMask )
|
|
|
|
aMask.CopyPixel( rRectDst, rRectSrc );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( !aBitmap.IsEmpty() )
|
|
|
|
{
|
|
|
|
bRet = aBitmap.CopyPixel( rRectDst, rRectSrc, &pBmpExSrc->aBitmap );
|
|
|
|
|
|
|
|
if( bRet )
|
|
|
|
{
|
|
|
|
if( pBmpExSrc->IsAlpha() )
|
|
|
|
{
|
|
|
|
if( IsAlpha() )
|
2005-03-29 13:37:15 +00:00
|
|
|
// cast to use the optimized AlphaMask::CopyPixel
|
|
|
|
((AlphaMask*) &aMask)->CopyPixel( rRectDst, rRectSrc, (AlphaMask*)&pBmpExSrc->aMask );
|
2000-11-16 16:35:51 +00:00
|
|
|
else if( IsTransparent() )
|
|
|
|
{
|
|
|
|
AlphaMask* pAlpha = new AlphaMask( aMask );
|
|
|
|
|
|
|
|
aMask = pAlpha->ImplGetBitmap();
|
|
|
|
delete pAlpha;
|
|
|
|
bAlpha = TRUE;
|
|
|
|
aMask.CopyPixel( rRectDst, rRectSrc, &pBmpExSrc->aMask );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-05-21 13:37:52 +00:00
|
|
|
sal_uInt8 cBlack = 0;
|
2000-11-16 16:35:51 +00:00
|
|
|
AlphaMask* pAlpha = new AlphaMask( GetSizePixel(), &cBlack );
|
|
|
|
|
|
|
|
aMask = pAlpha->ImplGetBitmap();
|
|
|
|
delete pAlpha;
|
|
|
|
eTransparent = TRANSPARENT_BITMAP;
|
|
|
|
bAlpha = TRUE;
|
|
|
|
aMask.CopyPixel( rRectDst, rRectSrc, &pBmpExSrc->aMask );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( pBmpExSrc->IsTransparent() )
|
|
|
|
{
|
|
|
|
if( IsAlpha() )
|
|
|
|
{
|
|
|
|
AlphaMask aAlpha( pBmpExSrc->aMask );
|
|
|
|
aMask.CopyPixel( rRectDst, rRectSrc, &aAlpha.ImplGetBitmap() );
|
|
|
|
}
|
|
|
|
else if( IsTransparent() )
|
|
|
|
aMask.CopyPixel( rRectDst, rRectSrc, &pBmpExSrc->aMask );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aMask = Bitmap( GetSizePixel(), 1 );
|
|
|
|
aMask.Erase( Color( COL_BLACK ) );
|
|
|
|
eTransparent = TRANSPARENT_BITMAP;
|
|
|
|
aMask.CopyPixel( rRectDst, rRectSrc, &pBmpExSrc->aMask );
|
|
|
|
}
|
|
|
|
}
|
2004-05-21 13:37:52 +00:00
|
|
|
else if( IsAlpha() )
|
|
|
|
{
|
|
|
|
sal_uInt8 cBlack = 0;
|
|
|
|
const AlphaMask aAlphaSrc( pBmpExSrc->GetSizePixel(), &cBlack );
|
|
|
|
|
|
|
|
aMask.CopyPixel( rRectDst, rRectSrc, &aAlphaSrc.ImplGetBitmap() );
|
|
|
|
}
|
|
|
|
else if( IsTransparent() )
|
|
|
|
{
|
|
|
|
Bitmap aMaskSrc( pBmpExSrc->GetSizePixel(), 1 );
|
|
|
|
|
|
|
|
aMaskSrc.Erase( Color( COL_BLACK ) );
|
|
|
|
aMask.CopyPixel( rRectDst, rRectSrc, &aMaskSrc );
|
|
|
|
}
|
2000-11-16 16:35:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Erase( const Color& rFillColor )
|
|
|
|
{
|
|
|
|
BOOL bRet = FALSE;
|
|
|
|
|
|
|
|
if( !!aBitmap )
|
|
|
|
{
|
|
|
|
bRet = aBitmap.Erase( rFillColor );
|
|
|
|
|
|
|
|
if( bRet && ( eTransparent == TRANSPARENT_BITMAP ) && !!aMask )
|
|
|
|
{
|
2002-10-22 15:12:56 +00:00
|
|
|
// #104416# Respect transparency on fill color
|
|
|
|
if( rFillColor.GetTransparency() )
|
|
|
|
{
|
|
|
|
const Color aFill( rFillColor.GetTransparency(), rFillColor.GetTransparency(), rFillColor.GetTransparency() );
|
|
|
|
aMask.Erase( aFill );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const Color aBlack( COL_BLACK );
|
|
|
|
aMask.Erase( aBlack );
|
|
|
|
}
|
2000-11-16 16:35:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return bRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2006-06-19 18:21:05 +00:00
|
|
|
BOOL BitmapEx::Dither( ULONG nDitherFlags )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2006-06-19 18:21:05 +00:00
|
|
|
return( !!aBitmap ? aBitmap.Dither( nDitherFlags ) : FALSE );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Replace( const Color& rSearchColor, const Color& rReplaceColor, ULONG nTol )
|
|
|
|
{
|
|
|
|
return( !!aBitmap ? aBitmap.Replace( rSearchColor, rReplaceColor, nTol ) : FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Replace( const Color* pSearchColors, const Color* pReplaceColors, ULONG nColorCount, const ULONG* pTols )
|
|
|
|
{
|
|
|
|
return( !!aBitmap ? aBitmap.Replace( pSearchColors, pReplaceColors, nColorCount, (ULONG*) pTols ) : FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Adjust( short nLuminancePercent, short nContrastPercent,
|
|
|
|
short nChannelRPercent, short nChannelGPercent, short nChannelBPercent,
|
|
|
|
double fGamma, BOOL bInvert )
|
|
|
|
{
|
|
|
|
return( !!aBitmap ? aBitmap.Adjust( nLuminancePercent, nContrastPercent,
|
|
|
|
nChannelRPercent, nChannelGPercent, nChannelBPercent,
|
|
|
|
fGamma, bInvert ) : FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BitmapEx::Filter( BmpFilter eFilter, const BmpFilterParam* pFilterParam, const Link* pProgress )
|
|
|
|
{
|
|
|
|
return( !!aBitmap ? aBitmap.Filter( eFilter, pFilterParam, pProgress ) : FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
void BitmapEx::Draw( OutputDevice* pOutDev, const Point& rDestPt ) const
|
|
|
|
{
|
|
|
|
pOutDev->DrawBitmapEx( rDestPt, *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
void BitmapEx::Draw( OutputDevice* pOutDev,
|
|
|
|
const Point& rDestPt, const Size& rDestSize ) const
|
|
|
|
{
|
|
|
|
pOutDev->DrawBitmapEx( rDestPt, rDestSize, *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
void BitmapEx::Draw( OutputDevice* pOutDev,
|
|
|
|
const Point& rDestPt, const Size& rDestSize,
|
|
|
|
const Point& rSrcPtPixel, const Size& rSrcSizePixel ) const
|
|
|
|
{
|
|
|
|
pOutDev->DrawBitmapEx( rDestPt, rDestSize, rSrcPtPixel, rSrcSizePixel, *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2009-10-20 15:36:02 +00:00
|
|
|
sal_uInt8 BitmapEx::GetTransparency(sal_Int32 nX, sal_Int32 nY) const
|
|
|
|
{
|
|
|
|
sal_uInt8 nTransparency(0xff);
|
|
|
|
|
|
|
|
if(!aBitmap.IsEmpty())
|
|
|
|
{
|
|
|
|
if(nX >= 0 && nX < aBitmapSize.Width() && nY >= 0 && nY < aBitmapSize.Height())
|
|
|
|
{
|
|
|
|
switch(eTransparent)
|
|
|
|
{
|
|
|
|
case TRANSPARENT_NONE:
|
|
|
|
{
|
|
|
|
// not transparent, ergo all covered
|
|
|
|
nTransparency = 0x00;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TRANSPARENT_COLOR:
|
|
|
|
{
|
|
|
|
Bitmap aTestBitmap(aBitmap);
|
|
|
|
BitmapReadAccess* pRead = aTestBitmap.AcquireReadAccess();
|
|
|
|
|
|
|
|
if(pRead)
|
|
|
|
{
|
2009-10-21 09:47:51 +00:00
|
|
|
const Color aColor = pRead->GetColor(nY, nX);
|
2009-10-20 15:36:02 +00:00
|
|
|
|
|
|
|
// if color is not equal to TransparentColor, we are not transparent
|
|
|
|
if(aColor != aTransparentColor)
|
|
|
|
{
|
|
|
|
nTransparency = 0x00;
|
|
|
|
}
|
|
|
|
|
|
|
|
aTestBitmap.ReleaseAccess(pRead);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TRANSPARENT_BITMAP:
|
|
|
|
{
|
|
|
|
if(!aMask.IsEmpty())
|
|
|
|
{
|
|
|
|
Bitmap aTestBitmap(aMask);
|
|
|
|
BitmapReadAccess* pRead = aTestBitmap.AcquireReadAccess();
|
|
|
|
|
|
|
|
if(pRead)
|
|
|
|
{
|
|
|
|
const BitmapColor aBitmapColor(pRead->GetPixel(nY, nX));
|
|
|
|
|
|
|
|
if(bAlpha)
|
|
|
|
{
|
|
|
|
nTransparency = aBitmapColor.GetIndex();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(0x00 != aBitmapColor.GetIndex())
|
|
|
|
{
|
|
|
|
nTransparency = 0x00;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aTestBitmap.ReleaseAccess(pRead);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nTransparency;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
SvStream& operator<<( SvStream& rOStm, const BitmapEx& rBitmapEx )
|
|
|
|
{
|
|
|
|
rBitmapEx.aBitmap.Write( rOStm );
|
|
|
|
|
|
|
|
rOStm << (UINT32) 0x25091962;
|
|
|
|
rOStm << (UINT32) 0xACB20201;
|
|
|
|
rOStm << (BYTE) rBitmapEx.eTransparent;
|
|
|
|
|
|
|
|
if( rBitmapEx.eTransparent == TRANSPARENT_BITMAP )
|
|
|
|
rBitmapEx.aMask.Write( rOStm );
|
|
|
|
else if( rBitmapEx.eTransparent == TRANSPARENT_COLOR )
|
|
|
|
rOStm << rBitmapEx.aTransparentColor;
|
|
|
|
|
|
|
|
return rOStm;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
SvStream& operator>>( SvStream& rIStm, BitmapEx& rBitmapEx )
|
|
|
|
{
|
|
|
|
Bitmap aBmp;
|
|
|
|
|
|
|
|
rIStm >> aBmp;
|
|
|
|
|
|
|
|
if( !rIStm.GetError() )
|
|
|
|
{
|
|
|
|
const ULONG nStmPos = rIStm.Tell();
|
2006-05-03 15:34:25 +00:00
|
|
|
UINT32 nMagic1 = 0;
|
|
|
|
UINT32 nMagic2 = 0;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
rIStm >> nMagic1 >> nMagic2;
|
|
|
|
|
|
|
|
if( ( nMagic1 != 0x25091962 ) || ( nMagic2 != 0xACB20201 ) || rIStm.GetError() )
|
|
|
|
{
|
2005-07-12 11:15:53 +00:00
|
|
|
rIStm.ResetError();
|
2000-09-18 16:07:07 +00:00
|
|
|
rIStm.Seek( nStmPos );
|
|
|
|
rBitmapEx = aBmp;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-05-03 15:34:25 +00:00
|
|
|
BYTE bTransparent = false;
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
rIStm >> bTransparent;
|
|
|
|
|
|
|
|
if( bTransparent == (BYTE) TRANSPARENT_BITMAP )
|
|
|
|
{
|
|
|
|
Bitmap aMask;
|
|
|
|
|
|
|
|
rIStm >> aMask;
|
|
|
|
|
|
|
|
if( !!aMask)
|
|
|
|
{
|
|
|
|
// do we have an alpha mask?
|
|
|
|
if( ( 8 == aMask.GetBitCount() ) && aMask.HasGreyPalette() )
|
|
|
|
{
|
|
|
|
AlphaMask aAlpha;
|
|
|
|
|
|
|
|
// create alpha mask quickly (without greyscale conversion)
|
|
|
|
aAlpha.ImplSetBitmap( aMask );
|
|
|
|
rBitmapEx = BitmapEx( aBmp, aAlpha );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rBitmapEx = BitmapEx( aBmp, aMask );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rBitmapEx = aBmp;
|
|
|
|
}
|
|
|
|
else if( bTransparent == (BYTE) TRANSPARENT_COLOR )
|
|
|
|
{
|
|
|
|
Color aTransparentColor;
|
|
|
|
|
|
|
|
rIStm >> aTransparentColor;
|
|
|
|
rBitmapEx = BitmapEx( aBmp, aTransparentColor );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rBitmapEx = aBmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rIStm;
|
|
|
|
}
|