<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How to add image to excel report?]]></title><description><![CDATA[<p>I have &quot;html-to-xlsx&quot; report with &quot;handlebars&quot; engine from one of default examples(sales-main).<br />
Body code looks something like</p>
<pre><code class="language-html">&lt;table name=&quot;Sales-Detail&quot;&gt;
  &lt;tbody class=&quot;head&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
        &lt;img src=&quot;{{{base64image}}}&quot; class=&quot;some-class&quot; /&gt;
      &lt;/td&gt;
    &lt;/tr&gt;
 &lt;!-- The rest of the code --&gt;
&lt;/table&gt;
</code></pre>
<p>May you have any ideas what went wrong? Everything else if working fine, but I keep having white space instead of image</p>
]]></description><link>https://forum.jsreport.net/topic/2581/how-to-add-image-to-excel-report</link><generator>RSS for Node</generator><lastBuildDate>Sun, 07 Jun 2026 01:28:14 GMT</lastBuildDate><atom:link href="https://forum.jsreport.net/topic/2581.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 28 Sep 2022 12:36:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to add image to excel report? on Invalid Date]]></title><description><![CDATA[<p>I have &quot;html-to-xlsx&quot; report with &quot;handlebars&quot; engine from one of default examples(sales-main).<br />
Body code looks something like</p>
<pre><code class="language-html">&lt;table name=&quot;Sales-Detail&quot;&gt;
  &lt;tbody class=&quot;head&quot;&gt;
    &lt;tr&gt;
      &lt;td&gt;
        &lt;img src=&quot;{{{base64image}}}&quot; class=&quot;some-class&quot; /&gt;
      &lt;/td&gt;
    &lt;/tr&gt;
 &lt;!-- The rest of the code --&gt;
&lt;/table&gt;
</code></pre>
<p>May you have any ideas what went wrong? Everything else if working fine, but I keep having white space instead of image</p>
]]></description><link>https://forum.jsreport.net/post/11198</link><guid isPermaLink="true">https://forum.jsreport.net/post/11198</guid><dc:creator><![CDATA[Eugene-Hodasevich]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to How to add image to excel report? on Invalid Date]]></title><description><![CDATA[<p><a href="https://jsreport.net/learn/html-to-xlsx" rel="nofollow">html-to-xlsx</a> recipe doesn't support images.<br />
We have this feature in the backlog if you want to upvote it or follow it.<br />
<a href="https://github.com/jsreport/jsreport/issues/711" rel="nofollow">https://github.com/jsreport/jsreport/issues/711</a></p>
<p>You need to use the <a href="https://jsreport.net/learn/xlsx" rel="nofollow">xlsx</a> recipe until it gets implemented.</p>
]]></description><link>https://forum.jsreport.net/post/11199</link><guid isPermaLink="true">https://forum.jsreport.net/post/11199</guid><dc:creator><![CDATA[jan_blaha]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to How to add image to excel report? on Invalid Date]]></title><description><![CDATA[<p>Hi <a class="plugin-mentions-a" href="https://forum.jsreport.net/uid/2">@jan_blaha</a>,</p>
<p>I saw the older note that <strong>jsreport <code>html-to-xlsx</code> recipe didn’t support images</strong> (issue #711) and that it was in the backlog.</p>
<p>Can you please confirm if <strong><code>html-to-xlsx</code> supports images now</strong> (for example <code>&lt;img src=&quot;data:image/png;base64,...&quot;&gt;</code> or external image URLs)?<br />
If not, is there any recommended workaround besides switching to the <strong><code>xlsx</code> recipe</strong>?</p>
<p>Thanks in advance.</p>
]]></description><link>https://forum.jsreport.net/post/14852</link><guid isPermaLink="true">https://forum.jsreport.net/post/14852</guid><dc:creator><![CDATA[Ish Modi]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to How to add image to excel report? on Invalid Date]]></title><description><![CDATA[<p>Hi <a class="plugin-mentions-a" href="https://forum.jsreport.net/uid/2805">@Ish-Modi</a></p>
<p>It will be part of the next release 4.12.0 which should be live within two weeks.</p>
]]></description><link>https://forum.jsreport.net/post/14853</link><guid isPermaLink="true">https://forum.jsreport.net/post/14853</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to How to add image to excel report? on Invalid Date]]></title><description><![CDATA[<p>Hi <a class="plugin-mentions-a" href="https://forum.jsreport.net/uid/2">@jan_blaha</a>,</p>
<p>I noticed that jsreport released <strong>v4.12.0</strong>; congratulations!</p>
<p>Can you please provide guidance on how to use <strong>html-to-xlsx</strong> with image support?</p>
<p>Thanks in advance.</p>
]]></description><link>https://forum.jsreport.net/post/14860</link><guid isPermaLink="true">https://forum.jsreport.net/post/14860</guid><dc:creator><![CDATA[Ish Modi]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to How to add image to excel report? on Invalid Date]]></title><description><![CDATA[<p><a class="plugin-mentions-a" href="https://forum.jsreport.net/uid/2805">@Ish-Modi</a> the usage is exactly as the code snippet in this thread.</p>
<pre><code class="language-html">&lt;table&gt;
&lt;tr&gt;
      &lt;td&gt;
        &lt;img src=&quot;{{base64imageDataUri}}&quot; /&gt;
      &lt;/td&gt;
    &lt;/tr&gt;
&lt;/table&gt;
</code></pre>
<p>to generate the base64 data uri you can use <a href="https://jsreport.net/learn/html-to-xlsx#images" rel="nofollow">assets</a></p>
]]></description><link>https://forum.jsreport.net/post/14861</link><guid isPermaLink="true">https://forum.jsreport.net/post/14861</guid><dc:creator><![CDATA[bjrmatos]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>