Home
last modified time | relevance | path

Searched refs:BitmapColor (Results 1 – 25 of 88) sorted by relevance

1234

/trunk/main/vcl/inc/vcl/
H A Dsalbtype.hxx86 d_Col = BitmapColor( (sal_uInt8) ( _def_cR | ( ( _def_cR & mnROr ) >> mnROrShift ) ), …
106 class VCL_DLLPUBLIC BitmapColor class
122 inline BitmapColor();
123 inline BitmapColor( const BitmapColor& rBitmapColor );
124 inline BitmapColor( sal_uInt8 cRed, sal_uInt8 cGreen, sal_uInt8 cBlue );
125 inline BitmapColor( const Color& rColor );
127 inline BitmapColor( sal_uInt8 cIndex );
129 inline ~BitmapColor() {}; in ~BitmapColor()
131 inline sal_Bool operator==( const BitmapColor& rBitmapColor ) const;
132 inline sal_Bool operator!=( const BitmapColor& rBitmapColor ) const;
[all …]
H A Dbmpacc.hxx39 static BitmapColor GetPixelFor##Format( ConstScanline pScanline, long nX, const ColorMask& rMask );
42 static void SetPixelFor##Format( Scanline pScanline, long nX, const BitmapColor& rBitmapColor, cons…
49 BitmapColor BitmapReadAccess::GetPixelFor##Format( ConstScanline pScanline, long nX, const ColorMas…
52 BitmapColor BitmapReadAccess::GetPixelFor##Format( ConstScanline pScanline, long nX, const ColorMas…
55 void BitmapReadAccess::SetPixelFor##Format( Scanline pScanline, long nX, const BitmapColor& rBitmap…
58 void BitmapReadAccess::SetPixelFor##Format( Scanline pScanline, long nX, const BitmapColor& rBitmap…
74 typedef BitmapColor (*FncGetPixel)( ConstScanline pScanline, long nX, const ColorMask& rMask );
75 typedef void (*FncSetPixel)( Scanline pScanline, long nX, const BitmapColor& rBitmapColor, const Co…
153 inline BitmapColor GetBestMatchingColor( const BitmapColor& rBitmapColor );
161 inline const BitmapColor& GetPaletteColor( sal_uInt16 nColor ) const;
[all …]
H A Doctree.hxx74 BitmapColor* pColor;
95 void AddColor( const BitmapColor& rColor );
98 inline sal_uInt16 GetBestPaletteIndex( const BitmapColor& rColor );
113 inline sal_uInt16 Octree::GetBestPaletteIndex( const BitmapColor& rColor ) in GetBestPaletteIndex()
115 pColor = &(BitmapColor&) rColor; in GetBestPaletteIndex()
145 inline sal_uInt16 GetBestPaletteIndex( const BitmapColor& rColor );
150 inline sal_uInt16 InverseColorMap::GetBestPaletteIndex( const BitmapColor& rColor ) in GetBestPaletteIndex()
/trunk/main/vcl/source/gdi/
H A Dbitmap4.cxx123BitmapColor* pColRow1 = (BitmapColor*) new sal_uInt8[ sizeof( BitmapColor ) * nWidth2 ]; in ImplConvolute3()
124BitmapColor* pColRow2 = (BitmapColor*) new sal_uInt8[ sizeof( BitmapColor ) * nWidth2 ]; in ImplConvolute3()
125BitmapColor* pColRow3 = (BitmapColor*) new sal_uInt8[ sizeof( BitmapColor ) * nWidth2 ]; in ImplConvolute3()
126 BitmapColor* pRowTmp1 = pColRow1; in ImplConvolute3()
127 BitmapColor* pRowTmp2 = pColRow2; in ImplConvolute3()
128 BitmapColor* pRowTmp3 = pColRow3; in ImplConvolute3()
129 BitmapColor* pColor; in ImplConvolute3()
204 … pWriteAcc->SetPixel( nY, nX, BitmapColor( (sal_uInt8) MinMax( nSumR / nDivisor, 0, 255 ), in ImplConvolute3()
270BitmapColor* pColRow1 = (BitmapColor*) new sal_uInt8[ sizeof( BitmapColor ) * nWidth2 ]; in ImplMedianFilter()
271BitmapColor* pColRow2 = (BitmapColor*) new sal_uInt8[ sizeof( BitmapColor ) * nWidth2 ]; in ImplMedianFilter()
[all …]
H A Dbmpacc2.cxx35 return BitmapColor( pScanline[ nX >> 3 ] & ( 1 << ( 7 - ( nX & 7 ) ) ) ? 1 : 0 ); in IMPL_FORMAT_GETPIXEL_NOMASK()
52 return BitmapColor( pScanline[ nX >> 3 ] & ( 1 << ( nX & 7 ) ) ? 1 : 0 ); in IMPL_FORMAT_GETPIXEL_NOMASK()
69 return BitmapColor( ( pScanline[ nX >> 1 ] >> ( nX & 1 ? 0 : 4 ) ) & 0x0f ); in IMPL_FORMAT_GETPIXEL_NOMASK()
86 return BitmapColor( ( pScanline[ nX >> 1 ] >> ( nX & 1 ? 4 : 0 ) ) & 0x0f ); in IMPL_FORMAT_GETPIXEL_NOMASK()
103 return BitmapColor( pScanline[ nX ] ); in IMPL_FORMAT_GETPIXEL_NOMASK()
117 BitmapColor aColor; in IMPL_FORMAT_GETPIXEL()
133 BitmapColor aColor; in IMPL_FORMAT_GETPIXEL()
149 BitmapColor aColor; in IMPL_FORMAT_GETPIXEL()
165 BitmapColor aBitmapColor; in IMPL_FORMAT_GETPIXEL_NOMASK()
187 BitmapColor aBitmapColor; in IMPL_FORMAT_GETPIXEL_NOMASK()
[all …]
H A Dbitmap.cxx132 … aPal[ nActCol++ ] = BitmapColor( (sal_uInt8) nR, (sal_uInt8) nG, (sal_uInt8) nB ); in Bitmap()
135 aPal[ nActCol++ ] = BitmapColor( 0, 184, 255 ); in Bitmap()
174 aGreyPalette2[ 0 ] = BitmapColor( 0, 0, 0 ); in GetGreyPalette()
175 aGreyPalette2[ 1 ] = BitmapColor( 255, 255, 255 ); in GetGreyPalette()
185 aGreyPalette4[ 0 ] = BitmapColor( 0, 0, 0 ); in GetGreyPalette()
186 aGreyPalette4[ 1 ] = BitmapColor( 85, 85, 85 ); in GetGreyPalette()
187 aGreyPalette4[ 2 ] = BitmapColor( 170, 170, 170 ); in GetGreyPalette()
188 aGreyPalette4[ 3 ] = BitmapColor( 255, 255, 255 ); in GetGreyPalette()
202 aGreyPalette16[ i ] = BitmapColor( cGrey, cGrey, cGrey ); in GetGreyPalette()
214 … aGreyPalette256[ i ] = BitmapColor( (sal_uInt8) i, (sal_uInt8) i, (sal_uInt8) i ); in GetGreyPalette()
[all …]
H A Dbmpacc3.cxx55 …mpLineColor = ( HasPalette() ? new BitmapColor( (sal_uInt8) GetBestPaletteIndex( rColor ) ) : new… in SetLineColor()
89 …mpFillColor = ( HasPalette() ? new BitmapColor( (sal_uInt8) GetBestPaletteIndex( rColor ) ) : new… in SetFillColor()
112 BitmapColor aColor = rColor; in Erase()
114 aColor = BitmapColor( (sal_uInt8)GetBestPaletteIndex( rColor) ); in Erase()
120 BitmapColor* pOldFillColor = mpFillColor ? new BitmapColor( *mpFillColor ) : NULL; in Erase()
136 const BitmapColor& rLineColor = *mpLineColor; in DrawLine()
274 const BitmapColor& rFillColor = *mpFillColor; in FillRect()
318 const BitmapColor& rFillColor = *mpFillColor; in FillPolygon()
379 const BitmapColor& rFillColor = *mpFillColor; in FillPolyPolygon()
H A Dbmpacc.cxx331 sal_uInt16 BitmapReadAccess::GetBestPaletteIndex( const BitmapColor& rBitmapColor ) const in GetBestPaletteIndex()
336 BitmapColor BitmapReadAccess::GetInterpolatedColorWithFallback( double fY, double fX, const BitmapC… in GetInterpolatedColorWithFallback()
348 BitmapColor aRetval(GetColor(nY, nX)); in GetInterpolatedColorWithFallback()
377 BitmapColor aXCol(rFallback); in GetInterpolatedColorWithFallback()
385 BitmapColor aYCol(rFallback); in GetInterpolatedColorWithFallback()
393 BitmapColor aXYCol(rFallback); in GetInterpolatedColorWithFallback()
425 BitmapColor BitmapReadAccess::GetColorWithFallback( double fY, double fX, const BitmapColor& rFallb… in GetColorWithFallback()
443 BitmapColor BitmapReadAccess::GetColorWithFallback( long nY, long nX, const BitmapColor& rFallback … in GetColorWithFallback()
H A Dpngread.cxx139 BitmapColor mcTranspColor; // transparency mask's transparency "color"
140 BitmapColor mcOpaqueColor; // transparency mask's opaque "color"
166 void ImplSetPixel( sal_uInt32 y, sal_uInt32 x, const BitmapColor & );
168 …void ImplSetTranspPixel( sal_uInt32 y, sal_uInt32 x, const BitmapColor &, sal_Bool …
170 …void ImplSetAlphaPixel( sal_uInt32 y, sal_uInt32 x, const BitmapColor&, sal_uInt8 n…
753 mpAcc->SetPaletteColor( (sal_uInt16)i, BitmapColor( mpColorTable[ nStart ], in ImplGetGrayPalette()
852 mcOpaqueColor = BitmapColor( 0x00 ); in ImplReadTransparent()
853 mcTranspColor = BitmapColor( 0xFF ); in ImplReadTransparent()
1466 BitmapColor( in ImplDrawScanline()
1477 BitmapColor( in ImplDrawScanline()
[all …]
H A Dbitmap3.cxx376 const BitmapColor aBlack( pWriteAcc->GetBestMatchingColor( Color( COL_BLACK ) ) ); in ImplMakeMono()
377 const BitmapColor aWhite( pWriteAcc->GetBestMatchingColor( Color( COL_WHITE ) ) ); in ImplMakeMono()
450 const BitmapColor aBlack( pWriteAcc->GetBestMatchingColor( Color( COL_BLACK ) ) ); in ImplMakeMonoDither()
451 const BitmapColor aWhite( pWriteAcc->GetBestMatchingColor( Color( COL_WHITE ) ) ); in ImplMakeMonoDither()
726 BitmapColor aColor; in ImplConvertDown()
845 const BitmapColor& rOld = pR->GetPaletteColor( (sal_uInt16) i ); in ImplConvertGhosted()
846 aNewPal[ (sal_uInt16) i ] = BitmapColor( ( rOld.GetRed() >> 1 ) | 0x80, in ImplConvertGhosted()
875 const BitmapColor aOld( pR->GetPixel( nY, nX ) ); in ImplConvertGhosted()
876 pW->SetPixel( nY, nX, BitmapColor( ( aOld.GetRed() >> 1 ) | 0x80, in ImplConvertGhosted()
1187 BitmapColor aCol0; in ImplScaleInterpolate()
[all …]
H A Dsalmisc.cxx65 static long ImplIndexFromColor( const BitmapColor& rCol ) in ImplIndexFromColor()
97 BitmapColor* pColMapBuf = aColMap.ImplGetColorBuffer(); in ImplPALToPAL()
98 BitmapColor aIndex( 0 ); in ImplPALToPAL()
130 const BitmapColor* pColBuf = rSrcBuffer.maPalette.ImplGetColorBuffer(); in ImplPALToTC()
134 const BitmapColor aCol0( pColBuf[ 0 ] ); in ImplPALToTC()
135 const BitmapColor aCol1( pColBuf[ 1 ] ); in ImplPALToTC()
210 BitmapColor aCol; in ImplTCToTC()
253 BitmapColor aIndex( 0 ); in ImplTCToPAL()
261 BitmapColor aCol( sal::static_int_cast<sal_uInt8>(nR << 4), in ImplTCToPAL()
H A Doctree.cxx108 void Octree::AddColor( const BitmapColor& rColor ) in AddColor()
110 pColor = &(BitmapColor&) rColor; in AddColor()
133 pColor = &(BitmapColor&) pAcc->GetPaletteColor( pAcc->GetPixelIndex( nY, nX ) ); in ImplCreateOctree()
144 BitmapColor aColor; in ImplCreateOctree()
264 aPal[ nPalIndex++ ] = BitmapColor( (sal_uInt8) ( (double) pNode->nRed / pNode->nCount ), in CreatePalette()
316 const BitmapColor& rColor = rPal[ (sal_uInt16) nIndex ]; in InverseColorMap()
/trunk/main/vcl/source/helper/
H A Dcanvasbitmap.cxx688 const BitmapColor aCol = m_pBmpAcc->GetPaletteColor(sal::static_int_cast<sal_uInt16>(nIndex)); in getIndex()
785 const BitmapColor aCol = m_pBmpAcc->GetPaletteColor( in convertToRGB()
834 const BitmapColor aCol = m_pBmpAcc->GetPaletteColor( in convertToARGB()
887 const BitmapColor aCol = m_pBmpAcc->GetPaletteColor( in convertToPARGB()
933 BitmapColor(toByteColor(rgbColor[i].Red), in convertFromRGB()
973 BitmapColor(toByteColor(rgbColor[i].Red), in convertFromARGB()
1014 BitmapColor(toByteColor(rgbColor[i].Red / nAlpha), in convertFromPARGB()
1083 const BitmapColor aCol = m_pBmpAcc->GetPaletteColor( in convertFromIntegerColorSpace()
1160 const BitmapColor aCol = in convertIntegerToRGB()
1177 const BitmapColor aCol = in convertIntegerToRGB()
[all …]
/trunk/main/vcl/inc/
H A Dimpoct.hxx43 inline ImpErrorQuad( const BitmapColor& rColor ) : in ImpErrorQuad()
48 inline void operator=( const BitmapColor& rColor );
49 inline ImpErrorQuad& operator-=( const BitmapColor& rColor );
56 inline BitmapColor ImplGetColor();
61 inline void ImpErrorQuad::operator=( const BitmapColor& rColor ) in operator =()
70 inline ImpErrorQuad& ImpErrorQuad::operator-=( const BitmapColor& rColor ) in operator -=()
117 inline BitmapColor ImpErrorQuad::ImplGetColor() in ImplGetColor()
119 return BitmapColor( (sal_uInt8) ( ( nRed < 0L ? 0L : nRed > 8160L ? 8160L : nRed ) >> 5L ), in ImplGetColor()
/trunk/main/vcl/test/
H A Dcanvasbitmaptest.cxx890 BitmapColor aBlack(0); in Paint()
891 BitmapColor aWhite(0); in Paint()
894 … aBlack.SetIndex( sal::static_int_cast<BYTE>(pAcc->GetBestPaletteIndex(BitmapColor(0,0,0))) ); in Paint()
895 …aWhite.SetIndex( sal::static_int_cast<BYTE>(pAcc->GetBestPaletteIndex(BitmapColor(255,255,255))) ); in Paint()
923 pAcc->SetPixel(0,0,BitmapColor(1)); in Paint()
924 pAcc->SetPixel(0,1,BitmapColor(0)); in Paint()
925 pAcc->SetPixel(0,2,BitmapColor(1)); in Paint()
941 pAcc->SetPixel(0,0,BitmapColor(255)); in Paint()
942 pAcc->SetPixel(0,1,BitmapColor(0)); in Paint()
943 pAcc->SetPixel(0,2,BitmapColor(255)); in Paint()
[all …]
/trunk/main/filter/source/graphicfilter/itga/
H A Ditga.cxx328 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody()
353 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody()
442 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody()
462 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody()
491 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody()
511 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody()
542 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody()
565 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody()
609 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody()
637 mpAcc->SetPixel( nY, nX, BitmapColor( nRed, nGreen, nBlue ) ); in ImplReadBody()
[all …]
/trunk/main/canvas/source/vcl/
H A Dimpltools.cxx306 const BitmapColor& rCol0( pAlphaReadAccess->GetPaletteColor( 0 ) ); in transformBitmap()
307 const BitmapColor& rCol1( pAlphaReadAccess->GetPaletteColor( 1 ) ); in transformBitmap()
375 pAlphaWriteAccess->SetPixel( y, x, BitmapColor(255) ); in transformBitmap()
389 BitmapColor aColor( pReadAccess->GetPixel( nSrcY, nSrcX ) ); in transformBitmap()
421 pAlphaWriteAccess->SetPixel( y, x, BitmapColor(255) ); in transformBitmap()
433 BitmapColor( in transformBitmap()
439 BitmapColor aColor( pReadAccess->GetPixel( nSrcY, in transformBitmap()
500 pAlphaWriteAccess->SetPixel( y, x, BitmapColor(255) ); in transformBitmap()
504 pAlphaWriteAccess->SetPixel( y, x, BitmapColor(0) ); in transformBitmap()
H A Dcanvasbitmaphelper.cxx266 BitmapColor( data[ nCurrPos ], in setData()
329 pWriteAccess->SetPixel( y, x, BitmapColor( data[ nCurrPos ], in setData()
336 BitmapColor( in setData()
359 BitmapColor( data[ nCurrPos ], in setData()
408 pWriteAccess->SetPixel( y, x, BitmapColor( data[ nCurrPos ], in setData()
478 pWriteAccess->SetPixel( pos.Y, pos.X, BitmapColor( color[ 0 ], in setPixel()
483 pAlphaWriteAccess->SetPixel( pos.Y, pos.X, BitmapColor( 255 - color[ 3 ] ) ); in setPixel()
534 const BitmapColor aColor( pReadAccess->GetColor( pos.Y, pos.X ) ); in getPixel()
/trunk/main/svtools/source/graphic/
H A Dgrfmgr2.cxx1030 BitmapColor aCol0, aCol1, aColRes; in ImplCreateScaled()
1064 const BitmapColor& rCol0 = pAcc->GetPaletteColor( pLine0[ nTmpX ] ); in ImplCreateScaled()
1065 const BitmapColor& rCol2 = pAcc->GetPaletteColor( pLine1[ nTmpX ] ); in ImplCreateScaled()
1066 const BitmapColor& rCol1 = pAcc->GetPaletteColor( pLine0[ ++nTmpX ] ); in ImplCreateScaled()
1067 const BitmapColor& rCol3 = pAcc->GetPaletteColor( pLine1[ nTmpX ] ); in ImplCreateScaled()
1270 BitmapColor aAlphaValue( 0 ); in ImplCreateScaled()
1364 const BitmapColor aB( pAcc->GetBestMatchingColor( Color( COL_BLACK ) ) ); in ImplCreateScaled()
1365 const BitmapColor aWB( pWAcc->GetBestMatchingColor( Color( COL_BLACK ) ) ); in ImplCreateScaled()
1366 const BitmapColor aWW( pWAcc->GetBestMatchingColor( Color( COL_WHITE ) ) ); in ImplCreateScaled()
1468 BitmapColor aColRes; in ImplCreateRotatedScaled()
[all …]
/trunk/main/vcl/aqua/source/gdi/
H A Dsalbmp.cxx387 …const BitmapColor aColor( COLORDATA_RED( nColor ), COLORDATA_GREEN( nColor ), COLORDATA_BLUE( nCol… in WritePixel()
418 const BitmapColor& rColor = mrPalette[( pData[mnX >> 1] >> mnShift) & 0x0f]; in ReadPixel()
425 …const BitmapColor aColor( COLORDATA_RED( nColor ), COLORDATA_GREEN( nColor ), COLORDATA_BLUE( nCol… in WritePixel()
455 const BitmapColor& rColor = mrPalette[ (pData[mnX >> 3 ] >> ( 7 - ( mnX & 7 ) )) & 1]; in ReadPixel()
461 …const BitmapColor aColor( COLORDATA_RED( nColor ), COLORDATA_GREEN( nColor ), COLORDATA_BLUE( nCol… in WritePixel()
618 aDefPalette256[i] = BitmapColor( aImplSalSysPalEntryAry[i].mnRed, in GetDefaultPalette()
623 aDefPalette2[0] = BitmapColor( 0, 0, 0 ); in GetDefaultPalette()
624 aDefPalette2[1] = BitmapColor( 0xff, 0xff, 0xff ); in GetDefaultPalette()
637 aDefPalette256[ i ] = BitmapColor( nRed, nGreen, nBlue ); in GetDefaultPalette()
/trunk/main/filter/source/graphicfilter/ipsd/
H A Dipsd.cxx347 BitmapColor aBitmapColor; in ImplReadBody()
470 … mpWriteAcc->SetPixel( nY, nX, BitmapColor( nRed, (sal_uInt8)0, (sal_uInt8)0 ) ); in ImplReadBody()
487 … mpWriteAcc->SetPixel( nY, nX, BitmapColor( nRed, (sal_uInt8)0, (sal_uInt8)0 ) ); in ImplReadBody()
511 …mpWriteAcc->SetPixel( nY, nX, BitmapColor( aBitmapColor.GetRed(), nGreen, aBitmapColor.GetBlue() )… in ImplReadBody()
529 …mpWriteAcc->SetPixel( nY, nX, BitmapColor( aBitmapColor.GetRed(), nGreen, aBitmapColor.GetBlue() )… in ImplReadBody()
553 …mpWriteAcc->SetPixel( nY, nX, BitmapColor( aBitmapColor.GetRed(), aBitmapColor.GetGreen(), nBlue )… in ImplReadBody()
571 …mpWriteAcc->SetPixel( nY, nX, BitmapColor( aBitmapColor.GetRed(), aBitmapColor.GetGreen(), nBlue )… in ImplReadBody()
659 mpWriteAcc->SetPixel( nY, nX, BitmapColor( cR, cG, cB ) ); in ImplReadBody()
/trunk/main/svx/source/sdr/primitive2d/
H A Dsdrprimitivetools.cxx54 const BitmapColor aPixColor(aVCLColor); in createDefaultCross_3x3()
55 const BitmapColor aMaskColor(0x01); in createDefaultCross_3x3()
101 const BitmapColor aPixColorA(aColA); in createDefaultGluepoint_9x9()
102 const BitmapColor aPixColorB(aColB); in createDefaultGluepoint_9x9()
103 const BitmapColor aMaskColor(0x01); in createDefaultGluepoint_9x9()
/trunk/main/basebmp/test/
H A Dbmpdemo.cxx870 const BitmapColor* palette;
873 double norm( BitmapColor const& rLHS, in norm()
874 BitmapColor const& rRHS ) const in norm()
886 const BitmapColor aTmpCol(v.red(), in find_best_match()
891 const BitmapColor* best_entry; in find_best_match()
892 const BitmapColor* palette_end( palette+num_entries ); in find_best_match()
899 const BitmapColor* curr_entry( palette ); in find_best_match()
912 value_type toCol( BitmapColor const& rCol ) const in toCol()
923 PaletteImageAccessor( const BitmapColor* pPalette, in PaletteImageAccessor()
/trunk/main/svtools/source/filter/jpeg/
H A Djpeg.cxx372 aGrayPal[ n ] = BitmapColor( cGray, cGray, cGray ); in CreateBitmap()
444 BitmapColor aColor; in FillBitmap()
451 BitmapColor* pCols = new BitmapColor[ 256 ]; in FillBitmap()
456 pCols[ n ] = pAcc->GetBestMatchingColor( BitmapColor( cGray, cGray, cGray ) ); in FillBitmap()
679 BitmapColor aColor; in GetScanline()
745 BitmapColor aColor; in Write()
/trunk/main/filter/source/graphicfilter/ipbm/
H A Dipbm.cxx114 mpAcc->SetPaletteColor( 0, BitmapColor( 0xff, 0xff, 0xff ) ); in ReadPBM()
115 mpAcc->SetPaletteColor( 1, BitmapColor( 0x00, 0x00, 0x00 ) ); in ReadPBM()
137 …mpAcc->SetPaletteColor( i, BitmapColor( (sal_uInt8)nCount, (sal_uInt8)nCount, (sal_uInt8)nCount ) … in ReadPBM()
325 …mpAcc->SetPixel( nHeight, nWidth++, BitmapColor( (sal_uInt8)nRed, (sal_uInt8)nGreen, (sal_uInt8)nB… in ImplReadBody()
464 …mpAcc->SetPixel( nHeight, nWidth++, BitmapColor( static_cast< sal_uInt8 >( ( nRGB[ 0 ] * 255 ) / m… in ImplReadBody()

1234