Get your own customer support community
 

can you create RSS feed of deepzoom images ?

Can you create an RSS list with references to DeepZoom content ?
This way, I would like to share my deepzoom collection with people
Inappropriate?
1 person has this question

The company marked this question as answered.


  • Inappropriate?
    Hey Dieter,

    Sorry for the delay, but the answer is yes, you can! Each <item> in the feed should include:


    • An <enclosure> referencing the .dzc/.dzi/.xml of the image or collection. The MIME type of this enclosure must be "text/xml".

    • An optional <enclosure> referencing a thumbnail for this image or collection. The MIME type of this enclosure must be "image/jpeg" or "image/png". This thumbnail should be at least 64x64 and is ideally no bigger than 128x128.

    • A <guid> with some unique value. This can be an actual GUID (e.g. generated through guidgenerator.com), or it can simply be the URL of the image or collection.


    Here is an example feed:


    <?xml version="1.0"?>
    <rss version="2.0">
    <channel>

    <title>My Seadragon RSS</title>
    <link>http://example.com/</link>
    <description>Some cool Seadragon content.</description>
    <language>en-us</language>

    <item>
    <category>Photos</category>
    <guid>5178b7d9-852b-4373-86db-fcd242aaebda</guid>
    <title>My Picture Set</title>
    <author>johnsmith@example.com (John Smith)</author>

    <enclosure type="text/xml" length="0"
    url="http://example.com/mycollection.xml" />

    <enclosure type="image/jpeg" length="0"
    url="http://example.com/mycollection.jpg" />

    </item>

    </channel>
    </rss>
     

    Hope this helps, and let us know if you try this!
     
    happy I’m happy to help
    Sprite_screen The company and 1 other person say this answers the question
User_default_medium