35 lines
1 KiB
HTML
35 lines
1 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Android Icon Resizer - Tools</title>
|
||
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
|
||
|
|
<link rel="stylesheet" href="style.css">
|
||
|
|
</head>
|
||
|
|
<body class="container">
|
||
|
|
<header>
|
||
|
|
<hgroup>
|
||
|
|
<h1>Android Icon Resizer</h1>
|
||
|
|
<p>Resize PNG images to Android mipmap density buckets. Everything runs in your browser.</p>
|
||
|
|
</hgroup>
|
||
|
|
</header>
|
||
|
|
<main>
|
||
|
|
<div>
|
||
|
|
<label for="file-input">Select PNG files</label>
|
||
|
|
<input type="file" id="file-input" accept="image/png" multiple>
|
||
|
|
</div>
|
||
|
|
<div id="preview-area"></div>
|
||
|
|
<div id="circle-preview">
|
||
|
|
<h3>Circle Crop Preview</h3>
|
||
|
|
<canvas id="circle-canvas" width="192" height="192"></canvas>
|
||
|
|
</div>
|
||
|
|
<div class="actions">
|
||
|
|
<button id="prepare-btn" disabled>Prepare</button>
|
||
|
|
</div>
|
||
|
|
<div id="status"></div>
|
||
|
|
</main>
|
||
|
|
<script src="main.js" type="module"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|