画像の名前は、画像ディレクトリに保存されているものと同じである必要があります。その後、ユーザーが画像をクリックしてダウンロードすると、画像の名前が返されます。
例えば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)