<?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 Thumbnail Viewing -- Is this possible in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/thumbnail-viewing-is-this-possible/m-p/30395#M15605</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Suppose we are using imagemagick to convert an image to a thumbnail, is this possible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could the image be converted and stored directly into the repository and file system, and in otherwords how do we manipulate the system so that we dont have to create thumbnail, then store it in repository and then delete the temporary file that was in the local file system and not the alfresco file system.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See my point?? If not let me be abit clear.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When you want to create a thumbnail u use imconvert in the fiollowing way – imcovert image.jpeg -option image_thumbnail,jpeg&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so now we have two files image.jpeg and image_thumbnail.jpeg. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My question is whether this image_thumbnail.jpeg can be directly stored into the alfresco file system and repository without the need of having to create a copy, upload it to alfresco system and then delete the temprary file created&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See my point???&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Mar 2006 06:48:59 GMT</pubDate>
    <dc:creator>thaneshk</dc:creator>
    <dc:date>2006-03-06T06:48:59Z</dc:date>
    <item>
      <title>Thumbnail Viewing -- Is this possible</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/thumbnail-viewing-is-this-possible/m-p/30395#M15605</link>
      <description>Suppose we are using imagemagick to convert an image to a thumbnail, is this possible.Could the image be converted and stored directly into the repository and file system, and in otherwords how do we manipulate the system so that we dont have to create thumbnail, then store it in repository and then</description>
      <pubDate>Mon, 06 Mar 2006 06:48:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/thumbnail-viewing-is-this-possible/m-p/30395#M15605</guid>
      <dc:creator>thaneshk</dc:creator>
      <dc:date>2006-03-06T06:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Thumbnail Viewing -- Is this possible</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/thumbnail-viewing-is-this-possible/m-p/30396#M15606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The Alfresco "Rules" functionality can be used to automatically generate thumbnails and add them to the repository. A couple of temporary files are created when imagemagick runs, but they are cleaned up by Alfresco.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can currently use Templates to display those thumbnails as a dashboard view.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We do not yet have a dedicated Thumbnails view, but as i say it is easy enough to use Alfresco to generate them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is an example using rules to generate thumbnails:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://www.alfresco.org/forums/viewtopic.php?p=4301" rel="nofollow noopener noreferrer"&gt;http://www.alfresco.org/forums/viewtopic.php?p=4301&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kevin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Mar 2006 11:36:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/thumbnail-viewing-is-this-possible/m-p/30396#M15606</guid>
      <dc:creator>kevinr</dc:creator>
      <dc:date>2006-03-06T11:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: Thumbnail Viewing -- Is this possible</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/thumbnail-viewing-is-this-possible/m-p/30397#M15607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I see your point.&amp;nbsp; The answer is "unfortunately not".&amp;nbsp; Consider the nature of a &lt;/SPAN&gt;&lt;STRONG&gt;ContentTransformer&lt;/STRONG&gt;&lt;SPAN&gt;.&amp;nbsp; It has to transform content from a &lt;/SPAN&gt;&lt;STRONG&gt;ReadableByteChannel&lt;/STRONG&gt;&lt;SPAN&gt; and output it to a &lt;/SPAN&gt;&lt;STRONG&gt;WritableByteChannel&lt;/STRONG&gt;&lt;SPAN&gt;.&amp;nbsp; Some transformers, especially those that run in a process outside of our system, cannot deal directly with streams.&amp;nbsp; This is true of the ImageMagick convert executable that we use.&amp;nbsp; Other transformers (ImageMagick and OpenOffice) require &lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline;"&gt;files&lt;/SPAN&gt;&lt;SPAN&gt; with well-known extensions.&amp;nbsp; But we only have streams and are therefore compelled to create temporary files.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So why not just pass files in and out of the &lt;/SPAN&gt;&lt;STRONG&gt;ContentTransformer&lt;/STRONG&gt;&lt;SPAN&gt;?&amp;nbsp; Because the content storage system is designed to be extendable.&amp;nbsp; We can bolt on a database store, a tape-drive store, a zip-file store and any other number of remote content stores.&amp;nbsp; The lowest common denominator is an IO channel.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Mar 2006 11:13:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/thumbnail-viewing-is-this-possible/m-p/30397#M15607</guid>
      <dc:creator>derek</dc:creator>
      <dc:date>2006-03-07T11:13:42Z</dc:date>
    </item>
  </channel>
</rss>

