How to display the thumbnail view of the documents in Sharepoint Document Library

Is there a way that we can have the thumbnail view of the documents that are uploaded in SharePoint Document Library. We have thumbnail feature in Picture Library but can we have the same in Document Library too. Documents includes Words,Excel,PDF.
Any Suggestions Please 

Hey Mike,
Good post, I'd be curious to see if anyone has used the GD Picture SDK with SharePoint, maybe there would be some sample code.
Hey Kukdai,
Developing your own solution would potentially provide a better way to accomplish your task, but before setting out on that long road you may want to try the simple customization, it's less time consuming and it will help gauge your customer's interest and
support.
Also, there is a wealth of open source code for SharePoint available on CodePlex, you might want to check that out as well.  Here is the linK:
http://www.codeplex.com/
Also, here is an interesting project to consider for your task:
http://enhancedpicture.codeplex.com/
I hope that helps!
Tom Molskow SharePoint Architect - If I solved the issue please propose my reply as the answer - Thanks!

Similar Messages

  • How do I change my PDF files on my desktop back to the THUMBNAIL view & not the adobe icon?

    How do I fix this problem ?  When I turned on my laptop yesterday all my PDF files on my desktop have changed from the thumbnail view (which I need) to the adobe icon ?  I don't know why it changed ?  But I'm having major problems trying to change it back....!!!  Can anyone help me please ??
    I'm using a PC & I use Windows 7

    Please don't post the same question mutliple times!  I have deleted your duplicate post.
    Have you tried a System Restore to a time before the change occurred?

  • Showing the thumbnail view of the uploaded image

    Hello Experts,
    I am developing a website in jsp, where i have a module for patron uploading their photo into the server.
    After a lot of gooling and searches in this site, i found code to upload the image and it uploads perfectly into the specified folder at server also. But my need is showing the uploaded image at once, after the image is uploaded. i used
    <img src="images\<%=filepath%>"> and also
    <img src="ImageServlet\file=<%=filepath%>"> both are not working.
    any suggession will be greatly appreciated.
    Regards,
    Sri.

    Thanks for your suggessions, i have placed my code below, i think i am closing the file afrer writing.
    If anything is failed to close, please let me know.
                if (request.getParameter("upload") != null) {
                    String contentType = request.getContentType();
                    if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0)) {
                        DataInputStream in = new DataInputStream(request.getInputStream());
                        int formDataLength = request.getContentLength();
                        byte dataBytes[] = new byte[formDataLength];
                        int byteRead = 0;
                        int totalBytesRead = 0;
                        while (totalBytesRead < formDataLength) {
                            byteRead = in.read(dataBytes, totalBytesRead, formDataLength);
                            totalBytesRead += byteRead;
                        String file = new String(dataBytes);
                        String saveFile = file.substring(file.indexOf("filename=\"") + 10);
                        saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
                        saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1, saveFile.indexOf("\""));
                        String ext = "";
                        if (saveFile.indexOf(".") != -1) {
                            ext = saveFile.substring(saveFile.lastIndexOf("."));
                        int lastIndex = contentType.lastIndexOf("=");
                        String boundary = contentType.substring(lastIndex + 1, contentType.length());
                        int pos;
                        pos = file.indexOf("filename=\"");
                        pos = file.indexOf("\n", pos) + 1;
                        pos = file.indexOf("\n", pos) + 1;
                        pos = file.indexOf("\n", pos) + 1;
                        int boundaryLocation = file.indexOf(boundary, pos) - 4;
                        int startPos = ((file.substring(0, pos)).getBytes()).length;
                        int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
                        if (ext.equalsIgnoreCase(".jpeg") || ext.equalsIgnoreCase(".jpg") || ext.equalsIgnoreCase(".gif") || ext.equalsIgnoreCase(".png") || ext.equalsIgnoreCase(".tiff")) {
                            String strFilePath = "";
                            String strCopyPath = "";
                            Properties props = new Properties();
                            try {
                                File filDBConfig = new File(strFilePath);
                                FileInputStream fiStream = new FileInputStream("C:\\sansri\\config.properties");
                                props.load(fiStream);
                                strFilePath = props.getProperty("db.photopath");
                                strCopyPath = props.getProperty("db.copypath");
                                fiStream.close();
                                filDBConfig = null;
                            } catch (Exception e) {
                                e.printStackTrace();
                                Photo = "Invalid File";
                            System.out.println("strFilePath " + strFilePath);
                            File fff = new File(strFilePath);
                            if (fff.exists() == false) {
                                fff.mkdirs();
                            fff = new File(strCopyPath);
                            if (fff.exists() == false) {
                                fff.mkdirs();
                            //copying into build to show uploaded image at once
                            Photo = request.getParameter("upload").concat(ext);
                            FileOutputStream fileOut = new FileOutputStream(strFilePath + "\\" + Photo);
                            fileOut.write(dataBytes, startPos, (endPos - startPos));
                            fileOut.flush();
                            fileOut.close();
                            //copying into web also to avoid unavailability of image while rebuilding
                            fileOut = new FileOutputStream(strCopyPath + "\\" + Photo);
                            fileOut.write(dataBytes, startPos, (endPos - startPos));
                            fileOut.flush();
                            fileOut.close();
                        } else {
                            Photo = "Invalid File";
                }{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How can i see the previews of a folder's images from the Thumbnail View?

    I mean, in windows XP if you set the Thumbnail View, inside the icon of the folder you can see the preview of the images inside ( like this http://mowd.idv.tw/LonghornPDC/folder_preview.JPG )...
    Is there a way to do it on Mac OS X? Maybe some plug-in, some file manager: anything...i often have to check out thousands of photos to find the reference for an illustration, and it's pretty frustrating having to open up every folder...
    Thanks in advance
    iMac 24"   Mac OS X (10.4.9)  

    but none of these two options allows me to see a folder's images BEFORE opening it...
    You want to go back and try that again... just right click on the folder - you don't have to open it - and choose 'Show In PicturePopPro2'.
    Check out the icons on the menu bar - you can get a contact sheet view, move from shot to shot using the arrow keys... it'll do what you want.
    Regards
    TD

  • Thumbnail view as the default setting.

    Two related questions. 
    1) How do I make Thumbnail view in the project panel the default setting for all/new projects?   I've set my workspace and keyboard arrangement as my custom layouts, but when I make a new project, it always defaults to list view.
    2) In a project I'm already using, when I load it up, it's loading up in list view where as in all old Premiere versions, it would load up as whatever the previous setting was.  Am I doing something without realizing it that's making it default back to list view?
    Thanks.

    It doesn't sound like you're doing anything wrong. And as far as I know, nothing's been changed in this regard in terms of expected behavior. So my first guess is that your preferences aren't getting saved properly. The first test I'd try is to launch PPro, change a pref that's easy to test like Show Tooltips, save/close/relaunch, and check whether tooltips are displayed--or simply go back into Preferences and see if the setting stuck.
    If that change to the prefs didn't take, then the next step is to clear the prefs by holding down the Alt key while you launch Pr.  Keep holding it down until you see the Welcome Screen pops up.

  • This is a silly question, but I cannot fix it! The icons that appear on my photos after I edit them, have gone away. The only way I can see them is in the Grid view. How can I get the icons back on the thumbnail photos of the full gallery that is loaded?

    This is a silly question, but I cannot fix it! The icons that appear on my photos after I edit them, have gone away. The only way I can see them is in the Grid view.
    How can I get the icons back on the thumbnail photos of the full gallery that is loaded? TIA =)

    You have likely dragged the size of the filmstrip thumbnails to a small size that prevents Lightroom from displaying the badges. Using your mouse, mouse over the top line of the filmstrip and then drag it supports to increase the size.

  • There is no pic shown when someone calls me. Not even the thumbnail view. How to fix this?

    I just reset my iphone. Now there is no pic shown when someone calls me. Not even the thumbnail
    view on top right corner. How to fix this?

    Have you entered pics for contacts in your contacts?

  • HT2506 Change the Thumbnail view in Preview (Mac)

    Hi everybody!
    I am wondering if there is the chance to change the thumbnails view  in order to display pdf pages on two or more columns, the same as in acrobat it is increasing or decreasing the size of the thumbnail window or zooming in/out in the same window.
    Thank you for your support!
    Best regards!

    Minimally, are you aware that Artists view has an Artwork Size slider under the View Options menu item?  These preferences stick with the application. 
    I mucked around for a while before I realized that View Options items change for each view.  Still smallish in the Artists right column at maximum, but better than nothing, and I would have expected to expand the graphics view all the way up to a full window in Albums view, which doesn't seem possible. 
    Also, I noted there doesn't seem to be a way to view full size album art other than selecting the art icon of the currently song, up at the top.  Still there under Get Info in the song record but I couldn't figure out how to view anything larger but through the icon at the top.  Not a big deal overall, but I have occasionally opened multiple album art and tiled them to check details side by side. 
    Alsoalso, I thought I could put the album art full screen like an audio slide show and blot out the background, but that seems to have disappeared.  Again, not that important to me, but odd. 

  • Display a Calendar View in the Portale Server

    Hi, we use portal server 6.2 and we want to display a view of the calendar inside a channel of the portal.
    We know that portal have a calendar provider but we really didn't understand how can we use this provider to call a custom view of the calendar.
    Is it possible to display a custom view of the calendar inside a page of the portal ?
    Thanx

    Probably better to be posting this in the Calendar forum.

  • Safari is missing the thumbnail view icon.

    I just updated my iPad to iOS 5 and now Safari doesn't show the thumbnail view icon in either landscape or portrait?

    Yes, we want what we already had (wizard of oz style)....it's not about how it is, it's how it was (and isn't now). I wished they'd spent more time on trying to get the app store and the iBooks  store to remember where I was searching and not go back to page 1 after many, many pages!. Not waste their time on changing the whole kit and caboodle in a massive upgrade that gives us, original iPad/iPod users, something that we didn't want. What we had was fine...just needed a few tweaks and a few extras (maybe?)'not  a copy of a computer screen...that is way bigger to view in any case!

  • Is there a way to display less thumbnails but keep the images in gallery?

    I am creating a photo gallery for my website and have hit a small problem,
    I want to display only 6 thumbnails but I want the gallery mode to display all 27.
    I have tried overlaying the thumbnails in the ''free form thumbnails'' mode but this seems counter intuitive and possibly buggy.
    I am sure there is an easy fix or hack for this but I am a first time user.
    I will publish the site on Adobe today after watching some tutorial.
    Thanks in advance for the help.

    I will try the compositions idea, how do I set a link to a lightbox slideshow gallery?
    I probably should have mentioned I am using the lightbox slideshow.
    When I click on any of the thumbnails is opens the slideshow.
    I have uploaded the site  to BC:
    home
    There are some things that need updating and I think I built the website too wide.
    I am still learning so any suggestions or observations are welcome.

  • How can I make GRID view the default view? The icons for view that used to be located in the upper right top of the page near the 'search library' are gone.

    How can I make GRID view the default view? The icons for view that used to be located in the upper right top of the page near the 'search library' are gone.

    99jon wrote:
    Perhaps it’s a design feature to speed up the Organizer launch.
    I am sure it is.
    - The normal use of the Organizer is not the folder view, it's the thumbnail view with an organization based on categories and folder. That way you should forget completely where your pictures are stored. Anyway, the folder view in the Explorer is not a map of the location of the different bits of your file, it's only a logical representation. That's easy to see when you are doing a defragmentation.
    - The folder view is useful even for those using normally the thumbnail view, but that is only for rare cases when you must change the folder organization, for instance moving files to another drive. The folder view is here to prevent you from changing things from the explorer and outside of the Organizer.
    - The new folder list view, which you find 'funny' is there to help better organizing using tags. Its huge advantage is that such a view is created extremely quickly by extracting the last subfolder in the media table : it's the way the database sees the folders, based on its own content,  totally ignoring the complex folder organization of your disk with media files or any unrelated other kind of data. You should use it in many cases, the main purpose being assigning tags when you have assigned descriptive folder names. I had suggested such a solution to prevent the long standing bugs in the folder view of previous versions.
    So yes, the purpose is:
    - to speed up switching modes
    - to help folder organization fans to migrate to tags organization
    - to hopefully get rid of the old folder organization bugs

  • Rearranging and duplicating pages in the thumbnails view?

    How do I rearrange and duplicate pages in the thumbnails view of pages? I could before, but can't with the new pages. DROPPING features?! That's not what an upgrade does! This hugely messes up my work!

    List of changes to Pages 5
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&mforum=iworktipsn trick
    You should have Pages '09 in your Applications/iWork folder. Use that meanwhile.
    You can trash or archive Pages 5, and rate/review it in the App Store.
    Peter

  • How to display properties of dimension on the input form and report in bpc

    Dear Expert,
    Please tell me how to display properties of dimension on the input form and report in bpc. I can only display dimension number.
    thanks so much
    hungth

    Hi Hungh,
    If your are using BPC 10 with EPM add in client, you can use the function:
    EPMDimensionProperty ()
    This function retrieves the properties of a specified dimension in a specified cell range.
    Thanks, Safa

  • "I would like to know how to set the default view for the columns. Somewhere I read it could be done in by music icon under Library.  Can't find it.  Thanks

    "I would like to know how to set the default view for the columns that are shown in iTunes. Every time I open it, I have to either go to the options, or right-click to get the pop-up options, and delete "rating" and add "composer." I'd really like to just do it once and be done with it."  Somewhere I read you could do this by clicking on the Music icon under LIBRARY then arramge the columns.  Trouble is, I can't find a Musi Folder or icon in my user library.
    Any help would be appreiated.  OSX 10.9.2  iTunes version 11.1.5  Thanks!!! CW!

    From the iTunes menu bar try View>Show View Options.  Make sure what you want to see is checked and what you don't is unchecked.  You can do this (may need to do this) for any playlists, your main Library, etc.
    Good luck
    srb

Maybe you are looking for

  • Is my iPhone 4S battery usage normal?

    I've only had my phone for  a week now. Totally loving it but I noticed my battery wasn't lasting as long as I would have liked. So I went through all the steps to optimize my battery life. Switched location services  off, push notifications  off, no

  • Backgrounds on several pages keep changing in a different order every time the site is published.

    Hello Adobe Team, i'd like to know how can i fix this situation: I just added a couple of things (only text) more to my website, after i downloaded the update, and now everytime l upload it back to my host, some of the several pages it has changes th

  • DVD quitting

    This is my first time burning a disk. I created a project with a slideshow of about 150 pictures. There doesn't seem to be a problem when I burn the DVD, but when I put the DVD into my DVD player, everything goes smoothly until about the 98th picture

  • Downloaded audio books from library website. How do I get it to appear in audiobooks on my ipod.

    I have downloaded audiobooks from a library website.  The books are listed under RECENTLY ADDED.  The only way I can listen to a book on my ipod is to listen as a playlist.  How do I get the book to show up in AUDIOBOOKS?

  • ISE & EAP-TLS Wired document

    All, Is there a document out there that explicitly shows wired authentication via EAP-TLS and explains the steps? I have a good handle on what's needed, but I had trouble finding relevant documentation.