Add static logo generator with canvas and download

This commit is contained in:
Leon Mika 2025-09-12 13:14:39 +10:00
parent ad1d8a740a
commit 5f7e3dad8e
2 changed files with 114 additions and 0 deletions

45
index.html Normal file
View file

@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Canvas Logo Generator</title>
<style>
body {
font-family: sans-serif;
padding: 20px;
background: #f0f0f0;
}
form {
margin-bottom: 10px;
}
canvas {
border: 1px solid #ccc;
display: block;
margin-bottom: 10px;
}
</style>
</head>
<body>
<form id="logoForm">
<label>Upper: <input type="text" id="upperText" name="Upper"></label>
<label>Lower: <input type="text" id="lowerText" name="Lower"></label>
<label>Background:
<select id="bgColor" name="Background">
<option value="#c0392b">Red</option>
<option value="#d35400">Orange</option>
<option value="#f39c12">Amber</option>
<option value="#27ae60">Green</option>
<option value="#16a085">Teal</option>
<option value="#2980b9">Blue</option>
<option value="#8e44ad">Purple</option>
<option value="#7f8c8d">Gray</option>
</select>
</label>
</form>
<canvas id="logoCanvas" width="80" height="80"></canvas>
<button id="downloadBtn">Download PNG</button>
<script src="script.js"></script>
</body>
</html>