#include <AImage.h>
Public Member Functions | |
AImage () | |
AImage (int w, int h) | |
AImage (const string &in_file_name) | |
AImage (const AImage &i) | |
AImage (const AImage &image, int tlx, int tly, int brx, int bry, bool zero_pading) | |
int | getSize () const |
int | getWidth () const |
int | getHeight () const |
virtual void | saveTo (const string &file_name)=0 |
virtual IMAGE_TYPE | getType () const =0 |
Protected Attributes | |
int | width |
int | height |
int | size |
Definition at line 51 of file AImage.h.
AImage::AImage | ( | const AImage & | image, | |
int | tlx, | |||
int | tly, | |||
int | brx, | |||
int | bry, | |||
bool | zero_pading | |||
) | [inline] |
int AImage::getHeight | ( | ) | const [inline] |
Definition at line 79 of file AImage.h.
References height.
Referenced by WordDraw::drawVerticalGrid(), and WordDraw::WordDraw().
virtual IMAGE_TYPE AImage::getType | ( | ) | const [pure virtual] |
int AImage::getWidth | ( | ) | const [inline] |
virtual void AImage::saveTo | ( | const string & | file_name | ) | [pure virtual] |
int AImage::height [protected] |
Definition at line 91 of file AImage.h.
Referenced by getHeight().
int AImage::size [protected] |
Definition at line 93 of file AImage.h.
Referenced by getSize(), and GRImage::GRImage().
int AImage::width [protected] |
Definition at line 89 of file AImage.h.
Referenced by getWidth().