Skip to content

AzGoalie/Bitmap-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Bitmap Library

Very simple bitmap library. Can load and create RGB bitmaps.

Example usage

Bitmap newBitmap;
Bitmap oldBitmap;

newBitmap.CreateBMP(filename, width, height, bpp);
oldBitmap.LoadBMP(filename);

for (int x = 0; x < width; x++) {
    for (int y = 0; y < height; y++) {
        RGBColor p(255,0,255);
        newBitmap.SetPixel(x, y, p);
    }
}

newBitmap.Save();
oldBitmap.Save();

About

Simple Bitmap Image Library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages