Is there any way I can read the content of the framebuffer in Qt or anyway in C? I read it is possible to write the content of /dev/fb0 to a file and then load it. But is it possible to avoid saving it to memory and simply copy to a new memory location to use in Qt? Thanks!
|
feedback
|
|
The ordinary Qt distribution is not likely to have special support for reading a framebuffer on Linux. It layers on top of X11 and is trying to provide cross-platform capability (as things like (Note: If you are writing an ordinary cross platform Qt app intended to run in a windowed environment, that's certainly the route you want to go for a simple screen capture task!!) On the other hand, Qt/Embedded is designed for Linux and to work with the QWS instead of X11. The mindset is that there's no windowing system and your app owns the whole screen. It writes directly to the framebuffer through a http://doc.qt.nokia.com/4.7-snapshot/qscreen.html#base Those are probably the only "Qt" ways to do these kinds of things. If you want an API instead of going through to | |||||||||||
feedback
|
|
You can look this example to take a screenshot from any window (even desktop). Example uses | |||
|
feedback
|
toImage()method...? doc.qt.nokia.com/4.7-snapshot/qglframebufferobject.html#toImage – HostileFork Aug 18 '11 at 13:51