Click here to Skip to main content
15,879,613 members
Articles / Web Development / ASP.NET

WSS Picture Thumbnails Web Part

Rate me:
Please Sign up or sign in to vote.
4.43/5 (14 votes)
25 May 2009CPOL6 min read 180K   849   35   57
Displays images from a SharePoint Picture Library in a widget-like thumbnail layout

Figure 1

Figure 1

Figure 2

Figure 2

Introduction

For use in Microsoft Windows SharePoint Services (WSS) 3.0, this Picture Thumbnails Web Part displays images from a SharePoint Picture Library in a widget-like thumbnail layout (see Figure 1). When a user clicks on a thumbnail, the original image opens up Lightbox style on top of the darkened page (see Figure 2).

Background

For images stored in a SharePoint Picture Library, thumbnails are generated by referencing the Url /<Picture Library Url>/_t/<Image Name>_<Image Extension>.jpg. This URL is stored in field EncodedAbsThumbnailUrl. However the thumbnails are too big for my liking. Instead of using some custom HTTP handler to generate thumbnails of smaller size, I decided to use the thumbnails as they are but use them as CSS background images. This way I can control the "apparent" thumbnail size by sizing the block element associated with the background image, thereby avoiding any aspect ratio issue of just resizing the thumbnail images directly.

Next I would like to have some Dynamic HTML or Ajax functionality to view the original image when user clicks on a thumbnail. Lightbox style preview looks very cool to me. There are many implementations or variations of Lightbox and I settled on using Litebox because of its compact size and relatively small number of supporting files.

Description

PictureThumbnailsWebPart functions as a wrapper by calling custom web control PictureThumbnails. This design allows developer the option to add the web control directly to a master page or a publishing page layout where Web Parts are not allowed. The Web Part has the following public properties:

  • SiteUrl - (Site Url) Server relative URL of the site. If left blank, current site is used.
  • ListName - (Picture Library Name) Name of a Picture Library in the current site.
  • SortField - (Sorting Field) Available options are Name, Title, Created and Modified.
  • SortOrder - (Sorting Order) Available options are Ascending, Descending and Random. When Random is selected, SortField will be ignored.
  • RowLimit - (Maximum Number of Pictures) Default is 0, which means no limit.
  • ShowAsImageSet - (Group Images into a Single Set) Default is false. If set to true, all images will be treated as part of an image set in Litebox, allowing previous and next navigation during preview.
  • CssClassPictureThumbnails - (CSS class)

The Lightbox functionality is provided by Litebox and requires a number of supporting files:

  • litebox-1.0.js, moo.fx.js, prototype.lite.js.

    These Javascript files are treated as Embedded Resources in Visual Studio. In code, they are referenced using Page.ClientScript.GetWebResourceUrl, passing in the files in the form of [Assembly of project].[Folder containing resource].[Filename of resource]. In AssemblyInfo.cs, include each of these files in the same format. For example:

    C#
    [assembly: System.Web.UI.WebResource
       ("QuestechSystems.SharePoint.ClientScripts.litebox-1.0.js", "text/javascript")]
  • blank.gif, closelabel.gif, loading.gif, nextlabel.gif, prevlabel.gif

    These images are treated as Class Resources. In code, the path to Class Resource files is obtained by calling SPWebPartManager.GetClassResourcePath. Since the project assembly is deployed to GAC, the path will be something like /_wpresources/QuestechSystems.SharePoint/1.0.0.0__ce574b585167cfb8/. To package Class Resource files for deployment in a Solution, include them in Manifest.xml like:

    XML
    <?xml version="1.0" encoding="utf-8" ?>
    <Solution xmlns="http://schemas.microsoft.com/sharepoint/"
              SolutionId="07234243-5F13-4e29-A3E2-FA3702F13994"
              DeploymentServerType="WebFrontEnd"
              ResetWebServer="TRUE">
        <Assemblies>
            <Assembly Location="QuestechSystems.SharePoint.PictureThumbnails.dll"
                      DeploymentTarget="GlobalAssemblyCache">
                <ClassResources>
                    <ClassResource Location="Images\blank.gif" />
                    <ClassResource Location="Images\closelabel.gif" />
                    <ClassResource Location="Images\loading.gif" />
                    <ClassResource Location="Images\nextlabel.gif" />
                    <ClassResource Location="Images\prevlabel.gif" />
                </ClassResources>
                <SafeControls>
                    ...
                </SafeControls>
            </Assembly>
        </Assemblies>
        <FeatureManifests>
            ...
        </FeatureManifests>
    </Solution>
  • lightbox.css, picturethumbnails.css

    You can find them in the Styles directory within the SharePoint project. lightbox.css is customized from the original Litebox module to reflect the directory path of Class Resource images. If you recompile the supplied Visual Studio project with your own strong name key file, you would need to update these paths. (Do a global find in the entire Visual Studio solution to replace all other values affected.) picturethumbnails.css is not part of Litebox but is required for the widget/thumbnail look and feel as shown in the screenshots above.

The Web Part also uses a resource file to store all messages and property attribute UI strings. It demonstrates how to develop a custom class that inherits WebDescriptionAttribute, WebDisplayNameAttribute or CategoryAttribute and returns a localized string from your own Resource Manager.

The supplied Visual Studio 2008 solution includes all the support files you need to build and deploy this Web Part, minus strong name key files (*.snk). It contains three projects: Deployment, Features and SharePoint. The SharePoint project contains source codes for the Web Part and the web control. The Features project contains all the features to support the SharePoint project. The Deployment project contains a pre-build script to aggregate all the files needed for deployment. It contains a Solution directory where a WSP file is generated and deployed by a post-build script.

This structure of Visual Studio solution and projects is scalable to full blown MOSS/WSS development and deployment. You could add additional projects like SharePoint.Publishing for MOSS publishing development or SharePoint.ApplicationPages for customization of administrative layout pages. Within your projects, you could have other custom components like user controls, custom fields, feature receivers, etc.

Installation

Using stsadm, install solution file QuestechPictureThumbnails.wsp in \Deployments\Solution\:

stsadm -o addsolution -filename QuestechPictureThumbnails.wsp

Go to SharePoint Central Administration/Operations/Global Configuration-Solution Management. Deploy the installed solution to selected web applications. In the site collection where the solution is deployed, activate the Site Collection Feature Questech Systems Picture Thumbnail Web Part. After that, the Picture Thumbnails Web Part (listed under Questech Systems) should be available for you to add to pages.

As mentioned, the Lightbox functionality depends on lightbox.css and picturethumbnails.css. If you have a custom CSS file for your site already, you could just copy the content out from the two files and paste it into your custom CSS. If you do not have a custom CSS file, you would need to either add it through the SharePoint UI Site Settings interface or insert it in your custom master page or page layout (for MOSS).
Tips: You can control the number of thumbnails shown per line by adjusting the width of the Web Part.

Please note that though this web part is licensed under The Code Project Open License, Litebox is licensed separately under Creative Commons Attribution 2.5.

References

  1. CodeGuru: Write Custom WebParts for SharePoint 2007
  2. Eric Stallworth: How To Build a Solution Pack (WSP)
  3. Tyler Mulligan: Litebox

History

  • V1.2 - 2009.05.22
    • Converted Visual Studio solution projects to version 2008
    • Added SiteUrl property
    • New SharePoint Solution QuestechPictureThumbnails.wsp and assembly QuestechSystems.SharePoint.PictureThumbnails.dll. This allows my other sample solutions in CodeProject to co-exist with this Web Part.
    • Renamed Feature from QuestechWebParts to QuestechPictureThumbnailsWebPart
  • V1.1.1 - 2008.09.08
    • Fixed missing litebox images when web part is added to some sub-sites
  • V1.1 - 2008.09.08 
    • Fixed missing thumbnail images when web part is added to some sub-sites
  • V1.0 - 2008.08.01 - Base

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Canada Canada
A Microsoft Certified Professional Developer and Technology Specialist.

Experience and expertise in SharePoint 2016 / 2013 / 2010 / 2007.

Role ranges from a developer in a multi-person team to a solution consultant with expert-level skills, leading a project to completion status.

Proven experience working effectively in a team environment and a self-managed environment.

Comments and Discussions

 
Questiondose not work for ME Pin
h.jalilzade3-May-12 0:11
h.jalilzade3-May-12 0:11 
QuestionLarge Javascript Shadow Over WebPart Pin
Member 86561391-Mar-12 14:11
Member 86561391-Mar-12 14:11 
QuestionMarquee picture? Pin
niemouse051114-Dec-10 20:20
niemouse051114-Dec-10 20:20 
QuestionUpdate for 2010? Pin
Ruther Ang30-Jun-10 16:17
Ruther Ang30-Jun-10 16:17 
AnswerRe: Update for 2010? Pin
Stephen Huen5-Jul-10 13:13
Stephen Huen5-Jul-10 13:13 
GeneralHi Pin
pmondal30-Mar-10 20:01
pmondal30-Mar-10 20:01 
QuestionSub sites problem Pin
hussam2101-Nov-09 21:25
hussam2101-Nov-09 21:25 
GeneralError when I try include webpart on page [modified] Pin
Member 358190020-Oct-09 5:39
Member 358190020-Oct-09 5:39 
when I try to use the webpart....
I see a error "Picture Thumbnails: Cannot import this Web part"

some idea?

here below i attach the log from sharepoint.

10/20/2009 12:27:47.81 w3wp.exe (0x0D78) 0x127C Windows SharePoint Services Web Parts 89ku High Failed to add webpart http%253A%252F%252Fmoss2007vhd%253A2000%252F%255Fcatalogs%252Fwp%252FQuestechPictureThumbnailsWebPart%252Ewebpart;Picture%2520Thumbnails. Exception Microsoft.SharePoint.WebPartPages.WebPartPageUserException: Cannot import this Web Part. at Microsoft.SharePoint.WebPartPages.WebPartImporter.CreateWebPart(Boolean clearConnections) at Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, Uri webPartPageUri, SPWeb spWeb) at Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, SPWeb spWeb) at Microsoft.SharePoint.WebPartPages.WebPartQuickAdd.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgum...

modified on Tuesday, October 20, 2009 1:34 PM

GeneralProblem with Web Part + Silverlight [modified] Pin
Ben Stapylton11-Aug-09 20:01
Ben Stapylton11-Aug-09 20:01 
GeneralDeployed, but not shown in feature list Pin
Thomas Medvey1-Jul-09 5:15
Thomas Medvey1-Jul-09 5:15 
QuestionIssues with library size and IE6 ? Pin
webdev12318-Jun-09 9:05
webdev12318-Jun-09 9:05 
QuestionCould CSS files and images be added as embedded resources? Pin
CDevon19-May-09 23:17
CDevon19-May-09 23:17 
GeneralFilenames / Titles displayed Pin
mastj2512-May-09 10:14
mastj2512-May-09 10:14 
GeneralRe: Filenames / Titles displayed Pin
CDevon19-May-09 23:55
CDevon19-May-09 23:55 
Questioncan't see the images [modified] Pin
crosenes25-Mar-09 1:08
crosenes25-Mar-09 1:08 
AnswerRe: can't see the images Pin
Stephen Huen29-Mar-09 20:20
Stephen Huen29-Mar-09 20:20 
AnswerRe: can't see the images Pin
crosenes29-Mar-09 20:28
crosenes29-Mar-09 20:28 
QuestionSize of the Lightbox Pin
bhand275-Mar-09 5:16
bhand275-Mar-09 5:16 
QuestionFolder wise Thumbnail Display Pin
Santosh Kannan11-Feb-09 16:04
Santosh Kannan11-Feb-09 16:04 
GeneralPrompted to login while loading this webpart Pin
tmarchione6-Feb-09 8:56
tmarchione6-Feb-09 8:56 
GeneralA better Thumbnail images path Pin
pccai7-Dec-08 6:14
pccai7-Dec-08 6:14 
QuestionRe: A better Thumbnail images path Pin
bhand279-Mar-09 12:16
bhand279-Mar-09 12:16 
QuestionProblems in IE7 Pin
Rodolfo Yañez24-Oct-08 12:59
Rodolfo Yañez24-Oct-08 12:59 
AnswerRe: Problems in IE7 Pin
Stephen Huen28-Oct-08 13:46
Stephen Huen28-Oct-08 13:46 
GeneralRe: Problems in IE7 Pin
Rodolfo Yañez29-Oct-08 10:09
Rodolfo Yañez29-Oct-08 10:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.