Skip to content

Instantly share code, notes, and snippets.

View 0x6770's full-sized avatar

YUJIE WANG 0x6770

View GitHub Profile
@0x6770
0x6770 / VGAFrame2bmp.py
Created November 28, 2022 20:41
A python script to convert raw VGA output to bmp
#!/usr/bin/env python3
import math
SIZE_BMP_HEADER = 14
SIZE_DIB_HEADER = 40
WIDTH = 640
HEIGHT = 480