Open In App

Create a Resize and Compress Images in HTML CSS & JavaScript

Last Updated : 01 Aug, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report
News Follow

While using the GeeksforGeeks Write Portal to write articles, we need to upload the images. As we need to resize the image as per GeeksforGeeks's requirement, we search for different tools and websites on the internet to resize and compress the image. But, as a web developer, we can create our own image resize and compressor using HTML, CSS, and JavaScript.

This project contains HTML, CSS, and JavaScript files. The HTML files consist of the overall structure of our application; the CSS file contains the layout and styling of the application. The JavaScript file has the complete functionality to handle the images, resize and compress them, and also download them.

Preview

Screenshot-2023-10-09-at-12-28-44-Image-Resizer-and-Compressor-min

Prerequisites

Approach:

For resizing and compressing the image, we will first prompt the user to load the image in the application. Once the user uploads the image, a basic preview of the image is displayed to the user, and then the user needs to be given the desired ratio of width and height, as well as the provision to set the quality of the image by dynamically adjusting the quality bar. When the user does the customization, the user needs to press the button. After pressing the button, the image gets resized and compressed; simultaneously,  the preview gets updated, and the download button is pressed. The user can download the image by clicking on this button.

Example: This example describes the basic implementation for resizing and compressing the image in HTML, CSS and JavaScript lanaguage.

HTML
<!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>
    <link rel="stylesheet" href="styles.css">
</head>

<body>
    <div class="container">
        <h1 class="title">
            Image Resizer and Compressor
        </h1>

        <div class="image-upload">
            <label for="imageInput" 
                   class="upload-label">
                <i class="fas fa-cloud-upload-alt">
                </i> Upload an Image
            </label>
            <input type="file" 
                   id="imageInput" 
                   accept="image/*">
        </div>

        <div id="action-form" 
             style="display: none;">
            <div class="output">
                <h2 class="preview-label">
                    Preview:
                </h2>
                <img id="preview" alt="Preview">
                <p id="image-dimensions" 
                   style="margin-top: 10px;">
                </p>
            </div>

            <div class="controls">
                <div class="control-group">
                    <label for="resizeUnit">
                        Unit:
                    </label>
                    <select id="resizeUnit">
                        <option value="pixels">
                            Pixels
                        </option>
                        <option value="percentage">
                            Percentage
                        </option>
                    </select>
                </div>

                <div class="control-group" 
                     id="pixel-dimensions">
                    <label for="resizeWidth">
                        Width:
                    </label>
                    <input type="number" 
                           id="resizeWidth" 
                           placeholder="Width">
                    <span>px</span>
                </div>

                <div class="control-group" 
                     id="percentage-dimensions" 
                     style="display: none;">
                    <label for="resizePercentage">
                        Percent:
                    </label>
                    <input type="number" 
                           id="resizePercentage" 
                           placeholder="Percentage" 
                           min="1" 
                           max="100">
                    <span>%</span>
                </div>

                <div class="control-group" 
                     id="pixel-height-dimensions">
                    <label for="resizeHeight">
                        Height:
                    </label>
                    <input type="number" 
                           id="resizeHeight" 
                           placeholder="Height">
                    <span>px</span>
                </div>

                <div class="control-group quality-group">
                    <label for="quality">
                        Quality:
                    </label>
                    <input type="range" 
                           id="quality" 
                           min="1" 
                           max="100" 
                           value="80">
                    <span id="quality-value" 
                          class="quality-value">
                      80
                      </span>
                </div>

                <button id="resizeButton">
                    Resize & Compress
                </button>
                <a id="downloadButton" 
                   class="download-button" 
                   style="display: none">
                    Download Compressed Image
                </a>

            </div>
        </div>
    </div>
    <script src="script.js"></script>
</body>

</html>
CSS JavaScript

Output:


Next Article

Similar Reads

three90RightbarBannerImg