关于blit的理解(ok):
void QScreen::blit ( const QImage & image, const QPoint & topLeft, const QRegion & region ) [virtual]
官方文档:
Copies the given region in the given image to the point specified by topLeft using device coordinates.
意思是把image中的region(矩形列表)区域内容,拷贝到设备坐标中的点topLeft上面。
但是,通过打印代码的log,发现,这样理解容易有误,
有一个例子如下:
在blit中,
const QVector rects = region.rects();
for (int i = 0; i < rects.size(); ++i) {
painter.drawImage( rects.at(i), image, QRect(rects.at(i).topLeft()-topLeft, rect
s.at(i).size()) );
}
这里,意思是把image中的所有region块(rects[i]),绘制到设备的rects[i]上面。
rects[i]的左上角坐标是相对于设备的,
topLeft是image相对于设备的左上角,
根据函数drawImage的意思,需要把rects[i]转化为相对于image的坐标,所以要减去topLeft。
综上所述,image包含了region中的许多或者一个矩形块,topLeft是image的左上角相对于设备的坐标。目前的理解就是这样。
另外,image的image.rect()的左上角永远是0,0。因为image本身就没有rect的意义。
阅读(5041) | 评论(0) | 转发(0) |