blob: 80a1fe1b83e180a223c3582aac8678b6189487ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _QV_SF_IMAGE_
#define _QV_SF_IMAGE_
#include <QvSubField.h>
class QvSFImage : public QvSField {
public:
short size[2]; // Width and height of image
int numComponents; // Number of components per pixel
unsigned char * bytes; // Array of pixels
QV_SFIELD_HEADER(QvSFImage);
};
#endif /* _QV_SF_IMAGE_ */
|