How to upload and display image in JavaScript?

In this article, I am going to show you how to create a custom image upload and preview design. Image Preview is a great system where you can check before uploading an image whether the image is eligible for upload.

This is a very simple system that you can only create with the help of HTML and javascript. But here I have used a small amount of CSS to design it.

✅ Watch Live Preview 👉👉 Image Upload With Preview

HTML has many types of input functions, one of which is text, passwords, emails, etc. that we always use. There is also another type of input known as the file input (<input type=" file">). Here you can use any type of file for input.

This is similar to the general input design. Only 'File' will be used instead of 'Password' or 'Email'. It will receive the file from your device and then show it as a preview. However, to do this image preview, you have to take the help of JavaScript or JQuery. Here I have created this image upload and preview design using Pure JavaScript.

Preview image before upload

Now is the time to fully understand how it is made. Before starting the tutorial, let me tell you some important points. First I designed the web page using some CSS. Then I created a box on the webpage. I made a small button using the input in that box.

I used a level to make this button here. With this, I have made a small display for previewing the image. I implemented it using JavaScript at the end of it all. Let's take a look at how to make it in the full step below.

Step 1: Design the webpage with CSS

First I designed the web page using CSS code. Here we have set the background color of the web page as blue and the height as 100vh.

body {
  margin:0px;
  height:100vh;
  background: #1283da;
}

Enter fullscreen mode Exit fullscreen mode

How to upload and display image in JavaScript?

Step 2: Create the basic structure of the image preview

Now I have made a small box on the web page using some basic HTML and CSS. As you can see above, image previews and buttons are all in this box.

The width of the box is 350 px and the background color is white. I have used some box shadows here which have made it brighter and more attractive.

 <div class="center">
  <div class="form-input">


  </div>
</div> 

Enter fullscreen mode Exit fullscreen mode

.center {
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;

}
.form-input {
  width:350px;
  padding:20px;
  background:#fff;
  box-shadow: -3px -3px 7px rgba(94, 104, 121, 0.377),
              3px 3px 7px rgba(94, 104, 121, 0.377);
}

Enter fullscreen mode Exit fullscreen mode

How to upload and display image in JavaScript?

Step 3: Create a place to preview the image

I made a small display to view the previewed image. Although it cannot be seen in normal conditions. This can only be seen when we implement it with the help of JavaScript.

 <div class="preview">
   <img id="file-ip-1-preview">
 </div>

Enter fullscreen mode Exit fullscreen mode

.form-input img {
  width:100%;
  display:none;
  margin-bottom:30px;
}

Enter fullscreen mode Exit fullscreen mode

Step 4: Create input boxes and buttons

Now I have created an input box using file input and created a button there. I used the level of input to make this button. Later, using CSS, I gave that level the shape of a button. Button height 45 px and width 45%.

 <label for="file-ip-1">Upload Image</label>
 <input type="file" id="file-ip-1" accept="image/*" onchange="showPreview(event);">

Enter fullscreen mode Exit fullscreen mode

.form-input input {
  display:none;
}

.form-input label {
  display:block;
  width:45%;
  height:45px;
  margin-left: 25%;
  line-height:50px;
  text-align:center;
  background:#1172c2;
  color:#fff;
  font-size:15px;
  font-family:"Open Sans",sans-serif;
  text-transform:Uppercase;
  font-weight:600;
  border-radius:5px;
  cursor:pointer;
}

Enter fullscreen mode Exit fullscreen mode

How to upload and display image in JavaScript?

Step 5: Activate Image Upload with JavaScript code

As you can see above, we have designed it completely. Now I will implement this image preview system with the help of JavaScript.

  function showPreview(event){
  if(event.target.files.length > 0){
    var src = URL.createObjectURL(event.target.files[0]);
    var preview = document.getElementById("file-ip-1-preview");
    preview.src = src;
    preview.style.display = "block";
  }
}

Enter fullscreen mode Exit fullscreen mode

How to upload and display image in JavaScript?

After using js, image preview and upload will be fully effective. Then when you click on the upload button, you will see a preview of any image you select from your file.

Related Post:

  1. Footer Design HTML CSS
  2. Make a Todo List using JavaScript
  3. Simple Stopwatch using JavaScript
  4. Javascript Age Calculator
  5. Random Password Generator with JavaScript
  6. Automatic Image Slider in Html, CSS
  7. Sidebar Menu Using HTML CSS

Hopefully from the tutorial above you have learned how to make an image upload with preview. I have already created a system of multiple image previews using JQuery.

How to upload and view image in JavaScript?

Display the Preview of the Image Using JavaScript..
Step 1: Create a Basic Layout for the Image Preview Using HTML. Add a div element with a class named image-preview-container . ... .
Step 2: Design the Image Preview Section Using CSS. ... .
Step 3: Display the Preview of the Image Using JavaScript..

How to display an image file in JavaScript?

Steps:.
Create <img> element in the HTML code..
Add style to <img> element and set display properties to none..
Create a JavaScript “show()” function that can access the image and change the display property to block..
Add button in HTML code which calls “show()” function when user clicks on it..

How to insert image in JavaScript code?

Given an HTML element and the task is to create an <img> element and append it to the document using JavaScript..
Create an empty img element using document. createElement() method..
Then set its attributes like (src, height, width, alt, title, etc)..
Finally, insert it into the document..

How to display selected image in JavaScript?

We have to display image after selecting file in input(type='file') using JavaScript. We can preview input file(image) with following 'readURL' user defined JavaScript function. The Preview action executed when input 'onchange' event trigged.