Qt 常用类(五)QPixmap

标签:
qtqpixmap |
分类: Qt |
-
QPixmap();
// 构造一个大小为 0 的空图像
-
QPixmap(const
QSize &size); // 构造大小为 size 的图像,图像数据未初始化 -
QPixmap(int
width, int height); // 等价于 QPixmap(QSize(width, height));
-
QPixmap(const
QString &filename, const char *format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor);
-
int
depth() const; // 颜色深度,既每像素所占的比特数 -
int
width() const; // 图像宽度,单位是像素 -
int
height() const; // 图像高度,单位是像素 -
QSize
size() cosnt; // 图像的大小,即 QSize(width(), height()); -
QRect
rect() const; // 图像的矩形区域,即 QRect(QPoint(0,0),size());
-
bool
load(const QString &filename, const char *fornat = 0, Qt::ImageCoversionFlags flags = Qt::AutoColor);
-
bool
save(const QString &filename, const char *format = 0, int quality = -1) const;