framebuffer

来自:

http://www.linuxgraphics.cn/graphics/fb_readscreeninfo.html

 

gcc framebuffer.c -o framebuffer

在ubuntu下面执行是要sudo的,否则打不开设备。

#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
#include <linux/fb.h>
#include <sys/mman.h>

int main () {

int fbfd = 0;
struct fb_var_screeninfo vinfo;
struct fb_fix_screeninfo finfo;
long int screensize = 0;
char *fbp = 0;
int x = 0, y = 0,i;
long int location = 0;

/* Open the file for reading and writing */
fbfd = open("/dev/fb0", O_RDWR);
if (fbfd < 0) {
printf("Error: cannot open framebuffer device./n");
return -1;
}
printf("The framebuffer device was opened successfully./n");

/* Get fixed screen information */
if (ioctl(fbfd, FBIOGET_FSCREENINFO, &finfo)) {
printf("Error reading fixed information./n");
return -1;
}

/* Get variable screen information */
if (ioctl(fbfd, FBIOGET_VSCREENINFO, &vinfo)) {
printf("Error reading variable information./n");
return -1;
}

printf ("The mem is %d/n", finfo.smem_len);
printf("The line_length is :%d/n",finfo.line_length);
printf("The xres is :%d/n",vinfo.xres);
printf("The yres is :%d/n",vinfo.yres);
printf("bits_per_pixel is :%d/n",vinfo.bits_per_pixel);

close(fbfd);
return 0;
}


这里有个从framebuffer截图的程序
http://www.limodev.cn/blog/archives/985

但在ubuntu9.10下面抓的图形就是个黑屏,因为ubuntu XWindow的一般启动模式下,没有是由fb作为显卡驱动。可以切换到字符界面,
CTRL+ALT+F1~F6, 然后试试,可以抓图。或者修改启动参数,进入VGA模式,这个时候fb也是有数据的。
CTRL+ALT+F7进入X
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值