我也知道数据是经过fb驱动lcd驱动程序来完成显示的。
我也查到了最终是通过
void QVFbView::refreshDisplay(const QRect &r)
{
if ( animation ) {
if ( r.isEmpty() ) {
animation->appendBlankFrame();
} else {
int l;
QImage img = getBuffer( r, l );
animation->appendFrame(img,QPoint(r.x(),r.y()));
}
}
if ( !r.isNull() )
repaint();
}
来生成要显示在屏幕上的图像
我想知道的是:怎么样把这个QImage抓出来?