No pude obtener imágenes para que aparezcan a pesar de intentar todas las soluciones que pude encontrar en google. Pero esta fudge trabajó para mí como la versión de línea de comandos de pisa muestra imágenes bien:
from tempfile import mkstemp
# write html to a temporary file
# can used NamedTemporaryFile if using python 2.6+
fid, fname = mkstemp(dir='/tmp')
f = open(fname, 'w+b')
f.write(html)
f.close()
# now create pdf from the html
cmd = 'xhtml2pdf "%s"' % fname
os.system(cmd)
os.unlink(fname)
# get the content of the pdf
filename = fname+'.pdf'
pdf = open(filename, 'r')
content = pdf.read()
pdf.close()
os.unlink(pdf.name)
# return content
response = HttpResponse(content, mimetype='application/pdf')
response['Content-Disposition'] = 'attachment; filename=draft.pdf'
Esta trabajado en las imágenes tenían una URL o la ruta completa, por ejemplo.
<img src="/home/django/project/site_media/css/output/images/logo.jpg" />
<img src="http://www.mysite.com/css/output/images/logo.jpg" />
Enlace muerto - esto es: http://20seven.org/journal/2008/11/11/pdf-generation-with-pisa-in-django/ – Gady