Skip to content

Instantly share code, notes, and snippets.

View vilelalabs's full-sized avatar
📚
Learning and creating

Henrique Vilela vilelalabs

📚
Learning and creating
View GitHub Profile
@wirepair
wirepair / 16to24.html
Created November 30, 2017 05:02
convert 24 bit to 16 bit and vice versa via an html page
<!DOCTYPE html>
<html>
<head>
<title>24bit 16bit color converter</title>
<script>
window.addEventListener('load', function()
{
let i24 = document.getElementById('in24');
let i16 = document.getElementById('in16');