Django get the static files URL in view
问题 I\'m using reportlab pdfgen to create a PDF. In the PDF there is an image created by drawImage . For this I either need the URL to an image or the path to an image in the view. I managed to build the URL but how would I get the local path to the image? How I get the URL: prefix = \'https://\' if request.is_secure() else \'http://\' image_url = prefix + request.get_host() + STATIC_URL + \"images/logo_80.png\" 回答1: Since this is the top result on Google, I thought I'd add another way to do this