-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (40 loc) · 1.64 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fast Logo Icon Generator</title>
<!-- Add your icon/favicon here -->
<!-- Feel free to customize this page (responsive) -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Logo Icon Generator</h1>
<canvas id="canvas" width="200" height="200"></canvas>
<div class="controls">
<!-- Select Image Button -->
<button id="selectImageBtn">Select Image</button><br><br>
<label for="scale">Size:</label>
<input type="range" id="scale" min="0.1" max="3" step="0.1" value="1"><br><br>
<label for="rotation">Rotation:</label>
<input type="range" id="rotation" min="0" max="360" step="1" value="0"><br><br>
<label for="bgColor">Background Color:</label>
<input type="color" id="bgColor" value="#ffffff"><br>
<button onclick="setTransparent()">Set Transparent</button><br><br>
<label for="roundRadius">Rounded Radius: </label><br>
<input type="range" id="roundRadius" min="0" max="300" value="0"><br><br>
<!-- Input for File Name -->
<label for="filename">Enter File Name:</label><br>
<input type="text" id="filename" placeholder="logo.png" /><br><br>
<button id="saveBtn">Save as PNG</button>
</div>
<!-- Modal for Selecting Image -->
<div id="imageModal">
<div id="imageModalContent">
<h2>Select Image</h2>
<div class="image-grid" id="imageGrid"></div>
</div>
</div>
<script src="icown.js"></script>
</body>
</html>