5

I might be asking the obvious, but is it possible to embed images in RSS or atom feeds using Data URI's?

(And if I would embed them hwo to make feedreaders understand?)

Example

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<image>
      <url><![CDATA[data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==]]></url>
      <title>Spain.info</title>
      <width>48</width>
      <height>48</height>
      <link>https://en.wikipedia.org/wiki/Data_URI_scheme</link>
    </image>
    <title>Data URI scheme</title>
    <atom:link href="https://en.wikipedia.org/wiki/Data_URI_scheme" rel="self" type="application/rss+xml" />
    <link>https://en.wikipedia.org/wiki/Data_URI_scheme</link>
    <description>Data URI scheme</description>
    <lastBuildDate>Tue, 12 Jul 2016 19:49:39 +0000</lastBuildDate>
    </channel>
</rss>
Dan Lowe
  • 51,713
  • 20
  • 123
  • 112
asbl
  • 115
  • 1
  • 5

1 Answers1

0

Your suggested code works fine for me in an iPhone podcast (although the 5x5 image shows up very large and blurry).

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<image>
      <url><![CDATA[data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==]]></url>
      <title>Spain.info</title>
      <width>48</width>
      <height>48</height>
      <link>https://en.wikipedia.org/wiki/Data_URI_scheme</link>
    </image>
    <title>Data URI scheme</title>
    <atom:link href="https://en.wikipedia.org/wiki/Data_URI_scheme" rel="self" type="application/rss+xml" />
    <link>https://en.wikipedia.org/wiki/Data_URI_scheme</link>
    <description>Data URI scheme</description>
    <lastBuildDate>Tue, 12 Jul 2016 19:49:39 +0000</lastBuildDate>
    </channel>
    <item>
      <title>Black and White Rag - Winifred Atwell</title>
      <description>Early rare stereo version by Winifred  Atwell, used Lenco L85 turntable with Grace F9E cartridge.</description>
      <link>https://archive.org/details/BlackAndWhiteRag-383</link>
      <pubDate>03 May 2021 00:00</pubDate>
      <enclosure url="https://ia800209.us.archive.org/7/items/BlackAndWhiteRag-383/BlackAndWhiteRagWinifredAtwell.mp3" type="audio/mpeg" />
    </item>
</rss>```
mwfearnley
  • 3,303
  • 2
  • 34
  • 35