Open In App

Python | Uploading images in Django

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

In most websites, we often deal with media data such as images, files, etc. In Django, we can deal with the images with the help of the model field which is ImageField. In this article, we have created the app image_app in a sample project named image_upload. The very first step is to add the below code in the settings.py file. 

Prerequisite – Introduction to Django 

Python3




MEDIA_ROOT =  os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'


MEDIA_ROOT is for server path to store files in the computer. MEDIA_URL is the reference URL for the browser to access the files over Http. In the urls.py we should edit the configuration like this

from django.conf import settings
from django.conf.urls.static import static
if settings.DEBUG:
        urlpatterns += static(settings.MEDIA_URL,
                              document_root=settings.MEDIA_ROOT)

A sample models.py should be like this, in that we have created a Hotel model which consists of hotel name and its image. In this project we are taking the hotel name and its image from the user for hotel booking website. 

Python3




# models.py
 class Hotel(models.Model):
    name = models.CharField(max_length=50)
    hotel_Main_Img = models.ImageField(upload_to='images/')


Here upload_to will specify, to which directory the images should reside, by default django creates the directory under media directory which will be automatically created when we upload an image. No need of explicit creation of media directory. We have to create a forms.py file under image_app, here we are dealing with model form to make content easier to understand. 

Python3




# forms.py
from django import forms
from .models import Hotel
 
 
class HotelForm(forms.ModelForm):
 
    class Meta:
        model = Hotel
        fields = ['name', 'hotel_Main_Img']


Django will implicitly handle the form verification’s with out declaring explicitly in the script, and it will create the analogous form fields in the page according to model fields we specified in the models.py file. This is the advantage of model form. Now create a templates directory under image_app in that we have to create a html file for uploading the images. HTML file should look like this. 

html




<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Hotel_image</title>
</head>
<body>
    <form method = "post" enctype="multipart/form-data">
        {% csrf_token %}
        {{ form.as_p }}
        <button type="submit">Upload</button>
    </form>
</body>
</html>


When making a POST request, we have to encode the data that forms the body of the request in some way. So, we have to specify the encoding format in the form tag. multipart/form-data is significantly more complicated but it allows entire files to be included in the data. The csrf_token is for protection against Cross-Site Request Forgeries. form.as_p simply wraps all the elements in HTML paragraph tags. The advantage is not having to write a loop in the template to explicitly add HTML to surround each title and field. In the views.py under image_app in that we have to write a view for taking requests from user and gives back some html page. 

Python3




from django.http import HttpResponse
from django.shortcuts import render, redirect
from .forms import HotelForm
 
# Create your views here.
 
 
def hotel_image_view(request):
 
    if request.method == 'POST':
        form = HotelForm(request.POST, request.FILES)
 
        if form.is_valid():
            form.save()
            return redirect('success')
    else:
        form = HotelForm()
    return render(request, 'hotel_image_form.html', {'form': form})
 
 
def success(request):
    return HttpResponse('successfully uploaded')


whenever the hotel_image_view hits and that request is POST, we are creating an instance of model form form = HotelForm(request.POST, request.FILES) image will be stored under request.FILES one. If it is valid save into the database and redirects to success url which indicates successful uploading of the image. If the method is not POST we are rendering with html template created. urls.py will look like this – 

Python3




from django.contrib import admin
from django.urls import path
from django.conf import settings
from django.conf.urls.static import static
from .views import hotel_image_view
 
urlpatterns = [
    path('image_upload', hotel_image_view, name='image_upload'),
    path('success', success, name='success'),
]
 
if settings.DEBUG:
    urlpatterns += static(settings.MEDIA_URL,
                          document_root=settings.MEDIA_ROOT)


Output: 

Now make the migrations and run the server.  When we hit the URL in the browser, in this way it looks.

 

After uploading the image it will show success.

Now in the project directory media directory will be created, an images directory will be created and the image will be stored under it. Here is the final result.

Final output stored in our database

Final output stored in the database

Now we can write a view for accessing those images, for simplicity let’s take example with one image and it is also applicable for many images. 

Python3




# Python program to view
# for displaying images
 
 
def display_hotel_images(request):
 
    if request.method == 'GET':
 
        # getting all the objects of hotel.
        Hotels = Hotel.objects.all()
        return render((request, 'display_hotel_images.html',
                       {'hotel_images': Hotels}))


A sample html file template for displaying images. 

html




<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Hotel Images</title>
 
    <meta name="viewport" content="width=device-width, initial-scale=1">
    </script>
    </script>
</head>
<body>
 
    {% for hotel in hotel_images %}
            <div class="col-md-4">
                    {{ hotel.name }}
                    <img src="{{ hotel.hotel_Main_Img.url }}" class="img-responsive" style="width: 100%; float: left; margin-right: 10px;" />
            </div>
    {% endfor %}
 
</body>
</html>


Insert the url path in the urls.py file

# urls.py
path('hotel_images', display_hotel_images, name = 'hotel_images'),

Here is the final view on the browser when we try to access the image.

Final result in browser

Hotel Image



Last Updated : 07 Aug, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads