Unable to Display Image in Print Format Customer HTML

I could manage to display all the fields for Purchase Order in Print Format using Custom HTML but unable to display image along with them

tried different options, one of them is: (but didn’t work)

colspan=“6” style=“text-align: center; border: 1px solid black; padding: 5px;”>
{% if row.item_image %}

{% else %}
No image available
{% endif %}

Hello,

to display image you should do like this:

<img src="{{ row.IMAGE_URL_FIELD }}" alt="">

for Purchase Order Items

<img src="{{ row.image }}" alt="{{ row.item_name }}">

For reference check: