blob: 4202e8f41a0fae15b18c3f5813661bba810c9f77 (
plain) (
tree)
|
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LUT Profile Extractor</title>
<style>
body {
width: 100%;
height: 100%;
background-color: beige;
}
</style>
</head>
<body>
<h1>LUT Profile Extractor</h1>
<input type="file" id="lut-upload" accept="image/png">
<canvas id="lut-preview" style="display:none;"></canvas>
<canvas id="sample-output"></canvas>
<img id="sample-image" src="sample.jpeg" alt="Photograph of a colorful parrot." />
<h2>LUT Profile JS Code:</h2>
<pre id="lut-code"></pre>
<script src="script.js"></script>
</body>
</html>
|