Create your own Image Resizer site with the below code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Resizer and Compressor</title>
<style>
body {
font-family: 'Arial', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background: linear-gradient(135deg, #f3ec78, #af4261);
color: #333;
padding: 20px;
}
#controls {
background: #ffffff;
padding: 30px;
border-radius: 15px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
animation: fadeIn 1s ease-in-out;
}
label, input, button {
padding: 12px 20px;
border: none;
border-radius: 5px;
font-size: 1rem;
transition: all 0.3s ease;
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
input {
width: 220px;
}
button {
background-color: #af4261;
color: white;
cursor: pointer;
}
button:hover {
background-color: #f3ec78;
color: #af4261;
transform: scale(1.05);
}
#download, #compress-download {
margin-top: 20px;
display: none;
text-decoration: none;
padding: 12px 20px;
background-color: #ffffff;
color: #af4261;
border: 2px solid #af4261;
border-radius: 5px;
transition: all 0.3s ease;
}
#download:hover, #compress-download:hover {
background-color: #af4261;
color: white;
transform: scale(1.05);
}
.pattern {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
background-image: radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1px);
background-size: 20px 20px;
}
footer {
margin-top: 20px;
text-align: center;
padding: 10px;
background: rgba(255, 255, 255, 0.8);
border-radius: 10px;
}
footer a {
margin: 0 10px;
color: #af4261;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="pattern"></div>
<div id="controls">
<label for="upload">Upload an Image</label>
<input type="file" id="upload" accept="image/*" aria-describedby="upload-description">
<p id="upload-description" class="visually-hidden">Select an image file from your device</p>
<label for="percentage">Resize Percentage</label>
<input type="number" id="percentage" placeholder="Resize Percentage" aria-describedby="percentage-description">
<p id="percentage-description" class="visually-hidden">Enter the desired resize percentage</p>
<button id="resize">Resize Image</button>
</div>
<a id="download" aria-label="Download Resized Image">Download Resized Image</a>
<a id="compress-download" aria-label="Compress and Download Resized Image">Compress & Download Resized Image</a>
<canvas id="canvas" style="display: none;"></canvas>
<footer>
<a href="termsandconditions.html">Terms & Conditions</a>
<a href="privacy.html">Privacy Policy</a>
<a href="disclaimer.html">Disclaimer</a>
<a href="readme.html">Read Me</a>
<a href="/">Home</a>
<a href="code.html">Download the Code</a>
</footer>
<script defer>
document.getElementById('resize').addEventListener('click', () => {
const fileInput = document.getElementById('upload');
const percentageInput = document.getElementById('percentage');
const canvas = document.getElementById('canvas');
const downloadLink = document.getElementById('download');
const compressDownloadLink = document.getElementById('compress-download');
if (fileInput.files.length === 0) {
alert('Please select an image file to upload.');
return;
}
const file = fileInput.files[0];
const percentage = parseFloat(percentageInput.value) / 100;
if (isNaN(percentage) || percentage <= 0) {
alert('Please enter a valid resize percentage.');
return;
}
const img = new Image();
img.src = URL.createObjectURL(file);
img.onload = () => {
const width = img.width * percentage;
const height = img.height * percentage;
canvas.width = width;
canvas.height = height;
const ctx = canvas.getContext('2d');
ctx.imageSmoothingEnabled = true;
ctx.imageSmoothingQuality = 'high';
ctx.drawImage(img, 0, 0, width, height);
// Non-compressed download
canvas.toBlob((blob) => {
const url = URL.createObjectURL(blob);
downloadLink.href = url;
downloadLink.download = 'resized_image.png';
downloadLink.style.display = 'block';
}, 'image/png');
// Compressed download
canvas.toBlob((blob) => {
const url = URL.createObjectURL(blob);
compressDownloadLink.href = url;
compressDownloadLink.download = 'compressed_resized_image.jpg';
compressDownloadLink.style.display = 'block';
}, 'image/jpeg', 0.7); // 0.7 is the quality level (0 to 1)
};
img.onerror = () => {
alert('Failed to load the image file.');
};
});
</script>
</body>
</html>