Image Resizer

Resize your images to exact dimensions or by percentage with this free online tool. Perfect for social media, websites, or email attachments.

How to Use

  1. Click the upload button or drag and drop your image into the upload area
  2. Choose your resize method: dimensions or percentage
  3. Enter your desired width and height or percentage
  4. Click the "Resize Image" button
  5. Preview the results and download your resized image

Features

Why Resize Images?

Image resizing is useful for many purposes:

Tips for Best Results

📁

Drag & drop your image here or

document.addEventListener('DOMContentLoaded', function() { // Elements const dropArea = document.getElementById('drop-area'); const fileInput = document.getElementById('file-input'); const uploadBtn = document.getElementById('upload-btn'); const settingsPanel = document.getElementById('settings-panel'); const dimensionsPanel = document.getElementById('dimensions-panel'); const percentagePanel = document.getElementById('percentage-panel'); const widthInput = document.getElementById('width'); const heightInput = document.getElementById('height'); const maintainRatio = document.getElementById('maintain-ratio'); const percentageInput = document.getElementById('percentage'); const resizeBtn = document.getElementById('resize-btn'); const previewContainer = document.getElementById('preview-container'); const originalPreview = document.getElementById('original-preview'); const resizedPreview = document.getElementById('resized-preview'); const originalDimensions = document.getElementById('original-dimensions'); const resizedDimensions = document.getElementById('resized-dimensions'); const downloadBtn = document.getElementById('download-btn'); const resizeMethods = document.getElementsByName('resize-method'); // Variables let originalImage = null; let resizedImage = null; });