Tên của hình ảnh phải giống với tên đã lưu trong thư mục hình ảnh, sau đó khi người dùng nhấp vào để tải hình ảnh xuống, nó sẽ trả về tên của hình ảnh.
ví dụ. base_path ='E:/ images /
image_name =request_nme + '.jpg'
file_path = os.path.join(base_path, image_name)
if os.path.exists(file_path):
with open(file_path, 'rb') as fh:
response = HttpResponse(fh, content_type='application/jpg')
response['Content-Disposition'] = 'attachment; filename=' + os.path.basename(file_path)