Giter Club home page Giter Club logo

libfb's Introduction

libfb

C/C++ library for Framebuffer graphics

C C++ Linux

Usage

#include "libfb.h"

int main()
{
    use_fb("fb0");

    draw_rect(10, 10, 100, 100, 1, 0xf2ff00);

    close_fb();
    return 0;
}

Functions

use_fb

open given frame buffer

bool use_fb(char* fb_)

close_fb

close frame buffer

void close_fb()

draw_image

draw .jpg and .png

bool draw_image(int32_t offset_x, int32_t offset_y, uint32_t img_width,  
                uint32_t img_height, const char *image_path)

draw_pixel

draw pixel

void draw_pixel(int32_t x, int32_t y, uint32_t color)

draw_rect

draw reactangle

void draw_rect(int32_t x, int32_t y, uint32_t width, uint32_t height,
                uint32_t borderWidth, uint32_t borderColor)

draw_rect_round

draw round rectangle

void draw_rect_round(int32_t x, int32_t y, uint32_t width, uint32_t height, 
                    uint32_t borderWidth, uint32_t borderRadius, uint32_t borderColor)

Sources

Here are the sources of code that the /vendor directory contains, these files are simply copied from the source without modification

libfb's People

Contributors

s0ubhik avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.