Lines Matching refs:m_aBitmap
67 BitmapDeviceSharedPtr m_aBitmap; member in SalPrinterBmp
90 m_aBitmap( rDevice ) in SalPrinterBmp()
101 return m_aBitmap.get() ? m_aBitmap->getSize().getX() : 0; in GetWidth()
107 return m_aBitmap.get() ? m_aBitmap->getSize().getY() : 0; in GetHeight()
113 return m_aBitmap.get() ? in GetDepth()
114 SvpElement::getBitCountFromScanlineFormat( m_aBitmap->getScanlineFormat() ) in GetDepth()
122 return m_aBitmap.get() ? m_aBitmap->getPaletteEntryCount() : 0; in GetPaletteEntryCount()
129 if( m_aBitmap.get() && nIdx < static_cast<sal_uInt32>(m_aBitmap->getPaletteEntryCount()) ) in GetPaletteColor()
131 const basebmp::Color& rColor = (*m_aBitmap->getPalette().get())[ nIdx ]; in GetPaletteColor()
141 if( m_aBitmap.get() ) in GetPixelRGB()
142 nCol = getRGBFromColor( m_aBitmap->getPixel( B2IPoint( nColumn, nRow ) ) ); in GetPixelRGB()
150 if( m_aBitmap.get() ) in GetPixelGray()
153 basebmp::Color aCol = m_aBitmap->getPixel( B2IPoint( nColumn, nRow ) ); in GetPixelGray()
164 if( m_aBitmap.get() ) in GetPixelIdx()
165 nIdx = static_cast<sal_uInt8>(m_aBitmap->getPixelData( B2IPoint( nColumn, nRow ) )); in GetPixelIdx()