您的位置:首页 > 健康 > 养生 > 嵌入式学习--linux系统提供的显示接口”framebuffer“

嵌入式学习--linux系统提供的显示接口”framebuffer“

2025/1/15 13:23:00 来源:https://blog.csdn.net/xufenglinger/article/details/142152231  浏览:    关键词:嵌入式学习--linux系统提供的显示接口”framebuffer“

1.利用framebuffer绘制图像

宏定义

1.#define RGB888_FMT 32
2.#define RGB565_FMT 16
3.#include"utf.h"

函数接口主体

void draw_bmp(int x, int y, char *picname, int w, int h)
{int fd = open(picname, O_RDONLY);if (-1 == fd){perror("fail open bmp");return ;}lseek(fd, 54, SEEK_SET);unsigned char r, g, b;unsigned char *buff = malloc(w*h*3);read(fd, buff, w*h*3);unsigned char *p = buff;for (int j = h-1; j >= 0; j--){for (int i = 0; i < w; i++){b = *p; p++;g = *p; p++;r = *p; p++;if (vinf.bits_per_pixel == RGB888_FMT){unsigned int col = (r << 16) | (g << 8) | (b << 0);draw_point(i+x, j+y, col);}else if (vinf.bits_per_pixel == RGB565_FMT){unsigned short col = ((r >> 3) << 11) | ((g >> 2) << 5) | ((b >> 3) << 0);draw_point(i+x, j+y, col);}}}free(buff);close(fd);
}

内部调用的函数接口

void draw_point(int x,int y,unsigned int col)
{
    if(x >= vinf.xres || y >= vinf.yres)
    {
        return;
    }
    if(vinf.bits_per_pixel == RGB888_FMT)
    {
        unsigned int *p = pmem;
        *(p + y* vinf.xres_virtual + x)= col;
    }
    else if(vinf.bits_per_pixel == RGB565_FMT)
    {
        unsigned short *p = pmem;
        *(p + y *vinf.xres_virtual + x)= col;
    }
    return;
}

2.利用framebuffer实现输出一个字

函数主体

void draw_word(int x,int y,unsigned char *word,int w,int h,unsigned int col)
{
    for(int j =0;j<h;++j)
    {
        for(int i=0;i<w;++i)
        {
            unsigned char tmp = word[i+j*w];
            for(int k =0;k<8;++k)
            {
                if(tmp & 0x80)
                {
                    draw_point(i*8+k+x,j+y,col);
                }
                else
                {
                    //文字背景色
                }
                tmp = tmp << 1;
            }
        }
    }
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com