diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/xbitmap.hxx | 4 | ||||
-rw-r--r-- | include/vcl/dibtools.hxx | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/include/svx/xbitmap.hxx b/include/svx/xbitmap.hxx index d5ff0f7eb9e1..e062a0aebc5a 100644 --- a/include/svx/xbitmap.hxx +++ b/include/svx/xbitmap.hxx @@ -43,7 +43,7 @@ private: public: - XOBitmap( const Bitmap& rBitmap ); + XOBitmap( const BitmapEx& rBitmap ); ~XOBitmap(); void Bitmap2Array(); @@ -52,7 +52,7 @@ public: void SetPixelColor( const Color& rColor ) { aPixelColor = rColor; bGraphicDirty = true; } void SetBackgroundColor( const Color& rColor ) { aBckgrColor = rColor; bGraphicDirty = true; } - Bitmap GetBitmap() const; + BitmapEx GetBitmap() const; const Color& GetBackgroundColor() const { return aBckgrColor; } }; diff --git a/include/vcl/dibtools.hxx b/include/vcl/dibtools.hxx index 75618ad609d7..f56ee96bd4e4 100644 --- a/include/vcl/dibtools.hxx +++ b/include/vcl/dibtools.hxx @@ -60,6 +60,12 @@ bool VCL_DLLPUBLIC WriteDIB( // WriteDIB(rBitmap, rOStm, false, true); bool bCompressed, bool bFileHeader); +bool VCL_DLLPUBLIC WriteDIB( // WriteDIB(rBitmap, rOStm, false, true); + const BitmapEx& rSource, + SvStream& rOStm, + bool bCompressed, + bool bFileHeader); + bool VCL_DLLPUBLIC WriteDIBBitmapEx( const BitmapEx& rSource, SvStream& rOStm); |