You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.0 KiB
48 lines
1.0 KiB
//======================================================================== |
|
// |
|
// SplashBitmap.h |
|
// |
|
//======================================================================== |
|
|
|
#ifndef SPLASHBITMAP_H |
|
#define SPLASHBITMAP_H |
|
|
|
#include <aconf.h> |
|
|
|
#ifdef USE_GCC_PRAGMAS |
|
#pragma interface |
|
#endif |
|
|
|
#include "SplashTypes.h" |
|
|
|
//------------------------------------------------------------------------ |
|
// SplashBitmap |
|
//------------------------------------------------------------------------ |
|
|
|
class SplashBitmap { |
|
public: |
|
|
|
// Create a new bitmap. |
|
SplashBitmap(int widthA, int heightA, SplashColorMode modeA); |
|
|
|
~SplashBitmap(); |
|
|
|
int getWidth() { return width; } |
|
int getHeight() { return height; } |
|
int getRowSize() { return rowSize; } |
|
SplashColorMode getMode() { return mode; } |
|
SplashColorPtr getDataPtr() { return data; } |
|
|
|
SplashError writePNMFile(char *fileName); |
|
|
|
private: |
|
|
|
int width, height; // size of bitmap |
|
int rowSize; // size of one row of data, in bytes |
|
SplashColorMode mode; // color mode |
|
SplashColorPtr data; |
|
|
|
friend class Splash; |
|
}; |
|
|
|
#endif
|
|
|