Home
last modified time | relevance | path

Searched refs:aNewBmp (Results 1 – 6 of 6) sorted by relevance

/trunk/main/vcl/source/gdi/
H A Dbitmap3.cxx371 Bitmap aNewBmp( GetSizePixel(), 1 ); in ImplMakeMono() local
372 BitmapWriteAccess* pWriteAcc = aNewBmp.AcquireWriteAccess(); in ImplMakeMono()
415 aNewBmp.ReleaseAccess( pWriteAcc ); in ImplMakeMono()
426 *this = aNewBmp; in ImplMakeMono()
445 Bitmap aNewBmp( GetSizePixel(), 1 ); in ImplMakeMonoDither() local
446 BitmapWriteAccess* pWriteAcc = aNewBmp.AcquireWriteAccess(); in ImplMakeMonoDither()
492 aNewBmp.ReleaseAccess( pWriteAcc ); in ImplMakeMonoDither()
503 *this = aNewBmp; in ImplMakeMonoDither()
533 Bitmap aNewBmp( GetSizePixel(), ( nGreys == 16 ) ? 4 : 8, &rPal ); in ImplMakeGreyscales() local
534 BitmapWriteAccess* pWriteAcc = aNewBmp.AcquireWriteAccess(); in ImplMakeGreyscales()
[all …]
H A Dbitmap4.cxx114 Bitmap aNewBmp( GetSizePixel(), 24 ); in ImplConvolute3() local
115 BitmapWriteAccess* pWriteAcc = aNewBmp.AcquireWriteAccess(); in ImplConvolute3()
230 aNewBmp.ReleaseAccess( pWriteAcc ); in ImplConvolute3()
242 *this = aNewBmp; in ImplConvolute3()
261 Bitmap aNewBmp( GetSizePixel(), 24 ); in ImplMedianFilter() local
262 BitmapWriteAccess* pWriteAcc = aNewBmp.AcquireWriteAccess(); in ImplMedianFilter()
361 aNewBmp.ReleaseAccess( pWriteAcc ); in ImplMedianFilter()
373 *this = aNewBmp; in ImplMedianFilter()
397 Bitmap aNewBmp( GetSizePixel(), 8, &pReadAcc->GetPalette() ); in ImplSobelGrey() local
398 BitmapWriteAccess* pWriteAcc = aNewBmp.AcquireWriteAccess(); in ImplSobelGrey()
[all …]
H A Dbitmap.cxx773 Bitmap aNewBmp( aNewSizePix, GetBitCount(), &pReadAcc->GetPalette() ); in Rotate() local
774 BitmapWriteAccess* pWriteAcc = aNewBmp.AcquireWriteAccess(); in Rotate()
798 aNewBmp.ReleaseAccess( pWriteAcc ); in Rotate()
801 aRotatedBmp = aNewBmp; in Rotate()
812 Bitmap aNewBmp( aNewSizePix, GetBitCount(), &pReadAcc->GetPalette() ); in Rotate() local
813 BitmapWriteAccess* pWriteAcc = aNewBmp.AcquireWriteAccess(); in Rotate()
875 aNewBmp.ReleaseAccess( pWriteAcc ); in Rotate()
878 aRotatedBmp = aNewBmp; in Rotate()
909 … Bitmap aNewBmp( aNewRect.GetSize(), GetBitCount(), &pReadAcc->GetPalette() ); in Crop() local
910 BitmapWriteAccess* pWriteAcc = aNewBmp.AcquireWriteAccess(); in Crop()
[all …]
H A Ddibtools.cxx636 Bitmap aNewBmp(aSizePixel, nBitCount, &aDummyPal); in ImplReadDIBBody() local
638 BitmapWriteAccess* pAcc = aNewBmp.AcquireWriteAccess(); in ImplReadDIBBody()
741 aNewBmp.SetPrefMapMode(aMapMode); in ImplReadDIBBody()
742 aNewBmp.SetPrefSize(Size(aHeader.nWidth, aHeader.nHeight)); in ImplReadDIBBody()
752 aNewBmp.ReleaseAccess(pAcc); in ImplReadDIBBody()
766 rBmp = aNewBmp; in ImplReadDIBBody()
H A Dimpimage.cxx358 …const Bitmap aNewBmp( Size( nPosCount * maSize.Width(), maSize.Height() ), maBmpEx.GetBitmap()… in GetBitmapEx() local
366 aRet = BitmapEx( aNewBmp, aAlpha ); in GetBitmapEx()
369 aRet = BitmapEx( aNewBmp ); in GetBitmapEx()
/trunk/main/vcl/source/helper/
H A Dcanvasbitmap.cxx459 BitmapEx aNewBmp( m_aBitmap ); in getScaledBitmap() local
460aNewBmp.Scale( sizeFromRealSize2D( newSize ), beFast ? BMP_SCALE_FASTESTINTERPOLATE : BMP_SCALE_IN… in getScaledBitmap()
461 return uno::Reference<rendering::XBitmap>( new VclCanvasBitmap( aNewBmp ) ); in getScaledBitmap()