I know in Sharepoint 2010 Foundation there is no Thumbnail feature but let me explain my problem 'cause I need just the thumbnail creation invoked programmatically, not to show the image or something like that so if the functionality is exposed by Object Model I can solve my problem.
I have a Web Service that expose some methods. One of the method I must implement had to get the "ID" of the file and return the thumbnail of the selected file.
To me the best could be:
- On file Adding: SPListItem.CREATETHUMBNAIL
- On my Web Service Invocation: return SPListItem.THUMBNAIL
Is there, in Sharepoint 2010 Foundation the possibility to return the Thumbnail of a file? There are other ways to implement it?
Thank you very much!