PdfBundle
PdfBundle copied to clipboard
Including image
I am trying to include an image using the img tag:
<div>
{% for photo in report.photos %}
<img src="{{ photo.absolutePath }}" />
{% endfor %}
</div>
</div>
I tested the image path from the command line, so the absolute path is correct. I get maximum execution time exceeded....
the actual filename is: /home/alex/dev_partition/SGMobile/src/SGMobile/Bundle/ApiBundle/Entity/../../../../../web/uploads/documents/e5ac67c9-8608-4c37-8b34-386977827da7.jpeg
does "jpeg" mess it up?
Maybe image is too large or image is not compressed?