Lines Matching refs:aBitmap

57         aBitmap             ( rBitmapEx.aBitmap ),  in BitmapEx()
73 aBitmap = Bitmap( aSize, rBitmapEx.aBitmap.GetBitCount() ); in BitmapEx()
116 aBitmap ( rBmp ), in BitmapEx()
117 aBitmapSize ( aBitmap.GetSizePixel() ), in BitmapEx()
126 aBitmap ( rBmp ), in BitmapEx()
128 aBitmapSize ( aBitmap.GetSizePixel() ), in BitmapEx()
132 if(!!aBitmap && !!aMask && aBitmap.GetSizePixel() != aMask.GetSizePixel()) in BitmapEx()
135 aMask.Scale(aBitmap.GetSizePixel()); in BitmapEx()
149 aBitmap ( rBmp ), in BitmapEx()
151 aBitmapSize ( aBitmap.GetSizePixel() ), in BitmapEx()
155 if(!!aBitmap && !!aMask && aBitmap.GetSizePixel() != aMask.GetSizePixel()) in BitmapEx()
164 if( aBitmap.GetBitCount() < aMask.GetBitCount() ) in BitmapEx()
165 aBitmap.Convert( BMP_CONVERSION_24BIT ); in BitmapEx()
171 aBitmap ( rBmp ), in BitmapEx()
172 aBitmapSize ( aBitmap.GetSizePixel() ), in BitmapEx()
177 aMask = aBitmap.CreateMask( aTransparentColor ); in BitmapEx()
197 aBitmap = rBitmapEx.aBitmap; in operator =()
215 if( aBitmap != rBitmapEx.aBitmap ) in operator ==()
236 rBmpEx.aBitmap.IsEqual( aBitmap ) && in IsEqual()
244 return( aBitmap.IsEmpty() && aMask.IsEmpty() ); in IsEmpty()
251 aBitmap.SetEmpty(); in SetEmpty()
282 Bitmap aRetBmp( aBitmap ); in GetBitmap()
289 aTempMask = aBitmap.CreateMask( aTransparentColor ); in GetBitmap()
311 aRet.aBitmap = aBitmap.GetColorTransformedBitmap( eColorMode ); in GetColorTransformedBitmapEx()
317 aRet.aBitmap = aRet.aBitmap.GetColorTransformedBitmap( eColorMode ); in GetColorTransformedBitmapEx()
321 aRet.aMask.CombineSimple( aRet.aBitmap, BMP_COMBINE_OR ); in GetColorTransformedBitmapEx()
322 … aRet.aBitmap.Erase( ( BMP_COLOR_MONOCHROME_BLACK == eColorMode ) ? COL_BLACK : COL_WHITE ); in GetColorTransformedBitmapEx()
324 DBG_ASSERT( aRet.aBitmap.GetSizePixel() == aRet.aMask.GetSizePixel(), in GetColorTransformedBitmapEx()
362 sal_uLong nSizeBytes = aBitmap.GetSizeBytes(); in GetSizeBytes()
374 sal_uInt32 nCrc = aBitmap.GetChecksum(); in GetChecksum()
408 if( !!aBitmap ) in Invert()
410 bRet = aBitmap.Invert(); in Invert()
425 if( !!aBitmap ) in Mirror()
427 bRet = aBitmap.Mirror( nMirrorFlags ); in Mirror()
442 if( !!aBitmap ) in Scale()
444 bRet = aBitmap.Scale( rScaleX, rScaleY, nScaleFlag ); in Scale()
451 aBitmapSize = aBitmap.GetSizePixel(); in Scale()
453 DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(), in Scale()
484 if( !!aBitmap ) in Rotate()
491 bRet = aBitmap.Rotate( nAngle10, aTransparentColor ); in Rotate()
494 bRet = aBitmap.Rotate( nAngle10, COL_BLACK ); in Rotate()
509 bRet = aBitmap.Rotate( nAngle10, rFillColor ); in Rotate()
515 aBitmapSize = aBitmap.GetSizePixel(); in Rotate()
517 DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(), in Rotate()
530 if( !!aBitmap ) in Crop()
532 bRet = aBitmap.Crop( rRectPixel ); in Crop()
537 aBitmapSize = aBitmap.GetSizePixel(); in Crop()
539 DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(), in Crop()
550 return( !!aBitmap ? aBitmap.Convert( eConversion ) : sal_False ); in Convert()
557 return( !!aBitmap ? aBitmap.ReduceColors( nNewColorCount, eReduce ) : sal_False ); in ReduceColors()
566 if( !!aBitmap ) in Expand()
568 bRet = aBitmap.Expand( nDX, nDY, pInitColor ); in Expand()
576 aBitmapSize = aBitmap.GetSizePixel(); in Expand()
578 DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(), in Expand()
594 if( !aBitmap.IsEmpty() ) in CopyPixel()
596 bRet = aBitmap.CopyPixel( rRectDst, rRectSrc ); in CopyPixel()
604 if( !aBitmap.IsEmpty() ) in CopyPixel()
606 bRet = aBitmap.CopyPixel( rRectDst, rRectSrc, &pBmpExSrc->aBitmap ); in CopyPixel()
680 if( !!aBitmap ) in Erase()
682 bRet = aBitmap.Erase( rFillColor ); in Erase()
707 return( !!aBitmap ? aBitmap.Dither( nDitherFlags ) : sal_False ); in Dither()
714 return( !!aBitmap ? aBitmap.Replace( rSearchColor, rReplaceColor, nTol ) : sal_False ); in Replace()
721 …return( !!aBitmap ? aBitmap.Replace( pSearchColors, pReplaceColors, nColorCount, (sal_uLong*) pTol… in Replace()
730 return( !!aBitmap ? aBitmap.Adjust( nLuminancePercent, nContrastPercent, in Adjust()
739 return( !!aBitmap ? aBitmap.Filter( eFilter, pFilterParam, pProgress ) : sal_False ); in Filter()
772 if(!aBitmap.IsEmpty()) in GetTransparency()
786 Bitmap aTestBitmap(aBitmap); in GetTransparency()