Lines Matching refs:aBitmap

55 		aBitmap				( rBitmapEx.aBitmap ),  in BitmapEx()
71 aBitmap = Bitmap( aSize, rBitmapEx.aBitmap.GetBitCount() ); in BitmapEx()
114 aBitmap ( rBmp ), in BitmapEx()
115 aBitmapSize ( aBitmap.GetSizePixel() ), in BitmapEx()
124 aBitmap ( rBmp ), in BitmapEx()
126 aBitmapSize ( aBitmap.GetSizePixel() ), in BitmapEx()
130 if(!!aBitmap && !!aMask && aBitmap.GetSizePixel() != aMask.GetSizePixel()) in BitmapEx()
133 aMask.Scale(aBitmap.GetSizePixel()); in BitmapEx()
147 aBitmap ( rBmp ), in BitmapEx()
149 aBitmapSize ( aBitmap.GetSizePixel() ), in BitmapEx()
153 if(!!aBitmap && !!aMask && aBitmap.GetSizePixel() != aMask.GetSizePixel()) in BitmapEx()
162 if( aBitmap.GetBitCount() < aMask.GetBitCount() ) in BitmapEx()
163 aBitmap.Convert( BMP_CONVERSION_24BIT ); in BitmapEx()
169 aBitmap ( rBmp ), in BitmapEx()
170 aBitmapSize ( aBitmap.GetSizePixel() ), in BitmapEx()
175 aMask = aBitmap.CreateMask( aTransparentColor ); in BitmapEx()
195 aBitmap = rBitmapEx.aBitmap; in operator =()
213 if( aBitmap != rBitmapEx.aBitmap ) in operator ==()
234 rBmpEx.aBitmap.IsEqual( aBitmap ) && in IsEqual()
242 return( aBitmap.IsEmpty() && aMask.IsEmpty() ); in IsEmpty()
249 aBitmap.SetEmpty(); in SetEmpty()
280 Bitmap aRetBmp( aBitmap ); in GetBitmap()
287 aTempMask = aBitmap.CreateMask( aTransparentColor ); in GetBitmap()
309 aRet.aBitmap = aBitmap.GetColorTransformedBitmap( eColorMode ); in GetColorTransformedBitmapEx()
315 aRet.aBitmap = aRet.aBitmap.GetColorTransformedBitmap( eColorMode ); in GetColorTransformedBitmapEx()
319 aRet.aMask.CombineSimple( aRet.aBitmap, BMP_COMBINE_OR ); in GetColorTransformedBitmapEx()
320 aRet.aBitmap.Erase( ( BMP_COLOR_MONOCHROME_BLACK == eColorMode ) ? COL_BLACK : COL_WHITE ); in GetColorTransformedBitmapEx()
322 DBG_ASSERT( aRet.aBitmap.GetSizePixel() == aRet.aMask.GetSizePixel(), in GetColorTransformedBitmapEx()
360 sal_uLong nSizeBytes = aBitmap.GetSizeBytes(); in GetSizeBytes()
372 sal_uInt32 nCrc = aBitmap.GetChecksum(); in GetChecksum()
406 if( !!aBitmap ) in Invert()
408 bRet = aBitmap.Invert(); in Invert()
423 if( !!aBitmap ) in Mirror()
425 bRet = aBitmap.Mirror( nMirrorFlags ); in Mirror()
440 if( !!aBitmap ) in Scale()
442 bRet = aBitmap.Scale( rScaleX, rScaleY, nScaleFlag ); in Scale()
449 aBitmapSize = aBitmap.GetSizePixel(); in Scale()
451 DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(), in Scale()
482 if( !!aBitmap ) in Rotate()
489 bRet = aBitmap.Rotate( nAngle10, aTransparentColor ); in Rotate()
492 bRet = aBitmap.Rotate( nAngle10, COL_BLACK ); in Rotate()
507 bRet = aBitmap.Rotate( nAngle10, rFillColor ); in Rotate()
513 aBitmapSize = aBitmap.GetSizePixel(); in Rotate()
515 DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(), in Rotate()
528 if( !!aBitmap ) in Crop()
530 bRet = aBitmap.Crop( rRectPixel ); in Crop()
535 aBitmapSize = aBitmap.GetSizePixel(); in Crop()
537 DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(), in Crop()
548 return( !!aBitmap ? aBitmap.Convert( eConversion ) : sal_False ); in Convert()
555 return( !!aBitmap ? aBitmap.ReduceColors( nNewColorCount, eReduce ) : sal_False ); in ReduceColors()
564 if( !!aBitmap ) in Expand()
566 bRet = aBitmap.Expand( nDX, nDY, pInitColor ); in Expand()
574 aBitmapSize = aBitmap.GetSizePixel(); in Expand()
576 DBG_ASSERT( !aMask || aBitmap.GetSizePixel() == aMask.GetSizePixel(), in Expand()
592 if( !aBitmap.IsEmpty() ) in CopyPixel()
594 bRet = aBitmap.CopyPixel( rRectDst, rRectSrc ); in CopyPixel()
602 if( !aBitmap.IsEmpty() ) in CopyPixel()
604 bRet = aBitmap.CopyPixel( rRectDst, rRectSrc, &pBmpExSrc->aBitmap ); in CopyPixel()
678 if( !!aBitmap ) in Erase()
680 bRet = aBitmap.Erase( rFillColor ); in Erase()
705 return( !!aBitmap ? aBitmap.Dither( nDitherFlags ) : sal_False ); in Dither()
712 return( !!aBitmap ? aBitmap.Replace( rSearchColor, rReplaceColor, nTol ) : sal_False ); in Replace()
719 …return( !!aBitmap ? aBitmap.Replace( pSearchColors, pReplaceColors, nColorCount, (sal_uLong*) pTol… in Replace()
728 return( !!aBitmap ? aBitmap.Adjust( nLuminancePercent, nContrastPercent, in Adjust()
737 return( !!aBitmap ? aBitmap.Filter( eFilter, pFilterParam, pProgress ) : sal_False ); in Filter()
770 if(!aBitmap.IsEmpty()) in GetTransparency()
784 Bitmap aTestBitmap(aBitmap); in GetTransparency()