Friday, November 3, 2023

Image compressor tool

Image Compressor Tool

Image Compressor Tool

body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f2f2f2; } .container { text-align: center; } h1 { color: #333; } input[type="file"] { padding: 10px; margin: 20px 0; } button { padding: 10px 20px; font-size: 16px; background-color: #3498db; color: #fff; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; } button:hover { background-color: #2980b9; } #outputImage { max-width: 80%; height: auto; margin-top: 20px; } document.getElementById('fileInput').addEventListener('change', function (event) { var file = event.target.files[0]; var image = document.getElementById('outputImage'); var options = { maxWidth: 800, maxHeight: 600, quality: 0.6, success(result) { image.src = URL.createObjectURL(result); image.style.display = 'block'; }, error(err) { console.log(err.message); }, }; if (file) { new Compressor(file, options); } }); document.getElementById('fileInput').addEventListener('change', function (event) { var file = event.target.files[0]; var image = document.getElementById('outputImage'); var options = { maxWidth: 800, maxHeight: 600, quality: 0.6, success(result) { image.src = URL.createObjectURL(result); image.style.display = 'block'; }, error(err) { console.log(err.message); }, }; if (file) { new Compressor(file, options); } });

No comments:

Post a Comment

Today,s tools

  Grammarly: Grammarly is a free grammar and spell checker that helps you write clear, error-free text. It is available as a browser ex...