<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Exporting to PDF doesn't display the images contained in a table. in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5143631#M43237</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1571780" data-lia-user-login="EdouardL" class="lia-mention lia-mention-user"&gt;EdouardL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-pm-slice="0 0 []"&gt;This isn’t a setting you missed—it’s a known limitation of how Microsoft Power BI handles image URLs during export, especially in PDF and when hosted on Report Server or Service. In the report canvas, images render because your session has access (cookies/auth context), but during export the rendering engine runs server-side and unauthenticated, so it cannot fetch images from private sources like SharePoint—which is why you see broken image icons. This is not just permissions you can “fix” easily; it’s how the export pipeline works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only reliable workarounds are: (1) make the image URLs publicly accessible (no auth required), (2) store images in a location that allows anonymous access (e.g., public blob storage), or (3) embed images as Base64 in the model (works but increases model size and hurts performance). If your SharePoint images require login, they will never render in export, even though they work perfectly in report view.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 04 Apr 2026 12:47:08 GMT</pubDate>
    <dc:creator>Poojara_D12</dc:creator>
    <dc:date>2026-04-04T12:47:08Z</dc:date>
    <item>
      <title>Exporting to PDF doesn't display the images contained in a table.</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5139457#M43184</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Exporting to PDF doesn't display the images contained in a table. I have a table that includes links to images as one of its data points. In the Report view, it displays these images instead of the URL text. However, when I export to PDF, the images don't appear. I just get the "image" icon you see on websites when an image fails to load. Is there a setting I need to change for this? Could this be related to the data source permissions? The date comes from a private SharePoint list, so it's possible that the image isn't being retrieved during the export process?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help with this would be greatly appreciated. Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 13:20:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5139457#M43184</guid>
      <dc:creator>EdouardL</dc:creator>
      <dc:date>2026-03-26T13:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to PDF doesn't display the images contained in a table.</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5139497#M43185</link>
      <description>&lt;P&gt;Your hunch about SharePoint permissions is almost certainly the root cause. Here's what's happening:&lt;BR /&gt;When Power BI renders the report in the browser, it loads images using your browser session's authentication — so SharePoint images load fine because you're already signed in. When you export to PDF, the export runs server-side on Microsoft's rendering infrastructure, which doesn't have your SharePoint credentials. It tries to fetch the image URL but gets a 401/403 from SharePoint, resulting in the broken image placeholder.&lt;BR /&gt;Solutions depending on your setup:&lt;BR /&gt;Option 1 — Make images publicly accessible. If the images don't need to be behind authentication, move them to a public location (Azure Blob Storage with public access, a public SharePoint document library, or any CDN). The PDF renderer can then fetch them without credentials.&lt;BR /&gt;Option 2 — Embed images as Base64. Instead of storing URLs in SharePoint, store the images as Base64-encoded strings directly in your data. Power BI can render Base64 image strings in table visuals, and since the data is embedded rather than fetched externally, PDF export works perfectly. You'd need to convert the images to Base64 before storing them in your SharePoint list (a Power Automate flow could handle this).&lt;BR /&gt;Option 3 — Use a Power BI Report Builder paginated report instead. Report Builder handles authenticated image sources more gracefully and has better control over PDF rendering. If you're already in the Report Server ecosystem, this might be the cleaner long-term solution.&lt;BR /&gt;Of these, Option 2 (Base64) is the most robust if you need images to stay private and export reliably — no dependency on network authentication during rendering.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 14:13:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5139497#M43185</guid>
      <dc:creator>Juan-Power-bi</dc:creator>
      <dc:date>2026-03-26T14:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to PDF doesn't display the images contained in a table.</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5139526#M43186</link>
      <description>&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The images are already Base64 (see picture 1), but when exporting to PDF, it only displays the message "The image does not support export" (see picture 2).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have a solution for this problem?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 14:37:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5139526#M43186</guid>
      <dc:creator>EdouardL</dc:creator>
      <dc:date>2026-03-26T14:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to PDF doesn't display the images contained in a table.</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5141013#M43198</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1571780" data-lia-user-login="EdouardL" class="lia-mention lia-mention-user"&gt;EdouardL&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out to the Microsoft Community Forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please refer below community threads.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Service/Images-in-export-to-pdf-in-Power-BI-connecting-to-sharepoint-url/td-p/4715144" target="_blank"&gt;Solved: Images in export to pdf in Power BI connecting to ... - Microsoft Fabric Community&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Base64-Images/m-p/737648" target="_blank"&gt;Solved: Base64 Images - Microsoft Fabric Community&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this information helps. Please do let us know if you have any further queries.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Dinesh&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2026 10:25:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5141013#M43198</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2026-03-30T10:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to PDF doesn't display the images contained in a table.</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5143115#M43223</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1571780" data-lia-user-login="EdouardL" class="lia-mention lia-mention-user"&gt;EdouardL&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. And, if you have any further query do let us know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Dinesh&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2026 14:45:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5143115#M43223</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2026-04-02T14:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to PDF doesn't display the images contained in a table.</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5143631#M43237</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1571780" data-lia-user-login="EdouardL" class="lia-mention lia-mention-user"&gt;EdouardL&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-pm-slice="0 0 []"&gt;This isn’t a setting you missed—it’s a known limitation of how Microsoft Power BI handles image URLs during export, especially in PDF and when hosted on Report Server or Service. In the report canvas, images render because your session has access (cookies/auth context), but during export the rendering engine runs server-side and unauthenticated, so it cannot fetch images from private sources like SharePoint—which is why you see broken image icons. This is not just permissions you can “fix” easily; it’s how the export pipeline works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only reliable workarounds are: (1) make the image URLs publicly accessible (no auth required), (2) store images in a location that allows anonymous access (e.g., public blob storage), or (3) embed images as Base64 in the model (works but increases model size and hurts performance). If your SharePoint images require login, they will never render in export, even though they work perfectly in report view.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Apr 2026 12:47:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5143631#M43237</guid>
      <dc:creator>Poojara_D12</dc:creator>
      <dc:date>2026-04-04T12:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting to PDF doesn't display the images contained in a table.</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5143928#M43241</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1571780" target="_blank"&gt;@EdouardL&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. And, if you have any further query do let us know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Dinesh&lt;/P&gt;</description>
      <pubDate>Mon, 06 Apr 2026 05:01:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Exporting-to-PDF-doesn-t-display-the-images-contained-in-a-table/m-p/5143928#M43241</guid>
      <dc:creator>v-dineshya</dc:creator>
      <dc:date>2026-04-06T05:01:17Z</dc:date>
    </item>
  </channel>
</rss>

