Hi All,
In MOSS we have picture library where we can upload images. But there is no way where you can display thumbnail view of an image.
All you have to do is just append “_t” to directory and convert period in filename with underscore character and append images extension.
Here are the samples:
If the Image URL is:
"http://server/site/mysite/PictureLibrary/testPic.gif"
Change it to
"http://server/site/mysite/PictureLibrary/_t/testPic_gif.gif"
You can also use _w instead of _t. This will give you larger image.
This idea is given by Robert Bogue (MVP)
In MOSS we have picture library where we can upload images. But there is no way where you can display thumbnail view of an image.
All you have to do is just append “_t” to directory and convert period in filename with underscore character and append images extension.
Here are the samples:
If the Image URL is:
"http://server/site/mysite/PictureLibrary/testPic.gif"
Change it to
"http://server/site/mysite/PictureLibrary/_t/testPic_gif.gif"
You can also use _w instead of _t. This will give you larger image.
This idea is given by Robert Bogue (MVP)
Comments
Post a Comment