473,651 Members | 2,670 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

GetThumbnailIma ge Question

I am trying to convert the regular sized images in a directory to
thumbnails and then display the thumbnails in a datalist. My code
below is displaying the first image and nothing else after it. What
do I have to do to have the thumbnails displayed in my datalist?
Thanks.

Dim strFile As String
Dim pics As ArrayList = New ArrayList

' Get image folder path on server - use "\" string if root
Dim strServerPath As String = Server.MapPath( "photos\")

For Each strFile In System.IO.Direc tory.GetFiles(s trServerPath,
"*.jpg")
' Get the regular sized image
Dim FullSizeImg As System.Drawing. Image
FullSizeImg = System.Drawing. Image.FromFile( strFile)

' Create the delegate
Dim dummyCallBack As System.Drawing. Image.GetThumbn ailImageAbort
dummyCallBack = New
System.Drawing. Image.GetThumbn ailImageAbort(A ddressOf
ThumbnailCallba ck)

' Create the thumbnail
Dim ThumbNailImg As System.Drawing. Image
ThumbNailImg = FullSizeImg.Get ThumbnailImage( 160, 120,
dummyCallBack, IntPtr.Zero)
ThumbNailImg.Sa ve(Response.Out putStream,
System.Drawing. Imaging.ImageFo rmat.Jpeg)
pics.Add(ThumbN ailImg)
Next

DataList1.DataS ource = pics
DataList1.DataB ind()
Nov 18 '05 #1
3 1010
Hi John

First, in the item template of the datalist you need an image control

Second, the image control needs a url (either src= or imageurl=, depending on whether it's a server control)

Third, you can do the url the easy way or the harder-but-cooler way

Easier way: Don't store your thumbnails in the array, instead write them to disk with temp names and store just the names in the array, then bind the source url to those names and you're off

Harder way: Keep your images in the arraylist, but now you need a url that returns each image from memory. Consider GetImage.aspx, which returns a byte stream the browser will interpret as an image, with something like this in PageLoad

Dim bmp As Image = New Bitmap(Server.M apPath("images\ myfile.jpg")
Dim thumb as image = bmp.GetThumbnai lImage, etc
Response.Conten tType = "image/jpeg
bmp.Save(Respon se.OutputStream , Imaging.ImageFo rmat.Jpeg

Now you bind the source url to GetImage.aspx and the thumbnail is fed from memory rather than disk

Finally, in my example GetImage returns the *same* image each time, so if your directory has 30 images you'd get the same one each time...not good. A few ways to go about it, buy maybe the easiest is that you build your arraylist with just the file names, pass the file name to GetImage.aspx in a query string, and let GetImage convert it to a thumbnail and stream it back

hth

Bil

P.S. If you're serious about it, there's a great discussion in Dino Esposito's book, Programming Microsoft ASP.NET

----- John wrote: ----

I am trying to convert the regular sized images in a directory t
thumbnails and then display the thumbnails in a datalist. My cod
below is displaying the first image and nothing else after it. Wha
do I have to do to have the thumbnails displayed in my datalist?
Thanks

Dim strFile As Strin
Dim pics As ArrayList = New ArrayLis

' Get image folder path on server - use "\" string if roo
Dim strServerPath As String = Server.MapPath( "photos\"

For Each strFile In System.IO.Direc tory.GetFiles(s trServerPath
"*.jpg"
' Get the regular sized imag
Dim FullSizeImg As System.Drawing. Imag
FullSizeImg = System.Drawing. Image.FromFile( strFile

' Create the delegat
Dim dummyCallBack As System.Drawing. Image.GetThumbn ailImageAbor
dummyCallBack = Ne
System.Drawing. Image.GetThumbn ailImageAbort(A ddressO
ThumbnailCallba ck

' Create the thumbnai
Dim ThumbNailImg As System.Drawing. Imag
ThumbNailImg = FullSizeImg.Get ThumbnailImage( 160, 120
dummyCallBack, IntPtr.Zero
ThumbNailImg.Sa ve(Response.Out putStream
System.Drawing. Imaging.ImageFo rmat.Jpeg
pics.Add(ThumbN ailImg
Nex

DataList1.DataS ource = pic
DataList1.DataB ind(

Nov 18 '05 #2
Thanks Bill. That was what I needed.

Bill Borg <an*******@disc ussions.microso ft.com> wrote in message news:<0F******* *************** ************@mi crosoft.com>...
Hi John,

First, in the item template of the datalist you need an image control.

Second, the image control needs a url (either src= or imageurl=, depending on whether it's a server control).

Third, you can do the url the easy way or the harder-but-cooler way.

Easier way: Don't store your thumbnails in the array, instead write them to disk with temp names and store just the names in the array, then bind the source url to those names and you're off.

Harder way: Keep your images in the arraylist, but now you need a url that returns each image from memory. Consider GetImage.aspx, which returns a byte stream the browser will interpret as an image, with something like this in PageLoad:

Dim bmp As Image = New Bitmap(Server.M apPath("images\ myfile.jpg"))
Dim thumb as image = bmp.GetThumbnai lImage, etc.
Response.Conten tType = "image/jpeg"
bmp.Save(Respon se.OutputStream , Imaging.ImageFo rmat.Jpeg)

Now you bind the source url to GetImage.aspx and the thumbnail is fed from memory rather than disk.

Finally, in my example GetImage returns the *same* image each time, so if your directory has 30 images you'd get the same one each time...not good. A few ways to go about it, buy maybe the easiest is that you build your arraylist with just the file names, pass the file name to GetImage.aspx in a query string, and let GetImage convert it to a thumbnail and stream it back.

hth,

Bill

P.S. If you're serious about it, there's a great discussion in Dino Esposito's book, Programming Microsoft ASP.NET.

----- John wrote: -----

I am trying to convert the regular sized images in a directory to
thumbnails and then display the thumbnails in a datalist. My code
below is displaying the first image and nothing else after it. What
do I have to do to have the thumbnails displayed in my datalist?
Thanks.

Dim strFile As String
Dim pics As ArrayList = New ArrayList

' Get image folder path on server - use "\" string if root
Dim strServerPath As String = Server.MapPath( "photos\")

For Each strFile In System.IO.Direc tory.GetFiles(s trServerPath,
"*.jpg")
' Get the regular sized image
Dim FullSizeImg As System.Drawing. Image
FullSizeImg = System.Drawing. Image.FromFile( strFile)

' Create the delegate
Dim dummyCallBack As System.Drawing. Image.GetThumbn ailImageAbort
dummyCallBack = New
System.Drawing. Image.GetThumbn ailImageAbort(A ddressOf
ThumbnailCallba ck)

' Create the thumbnail
Dim ThumbNailImg As System.Drawing. Image
ThumbNailImg = FullSizeImg.Get ThumbnailImage( 160, 120,
dummyCallBack, IntPtr.Zero)
ThumbNailImg.Sa ve(Response.Out putStream,
System.Drawing. Imaging.ImageFo rmat.Jpeg)
pics.Add(ThumbN ailImg)
Next

DataList1.DataS ource = pics
DataList1.DataB ind()

Nov 18 '05 #3
P.S. In Esposito's book, he skips the dummy callback and just does this (which worked for me too)

Dim bmp As Image = New Bitmap(Server.M apPath("images\ myimage.jpg")
Dim newbmp As Image = bmp.GetThumbnai lImage(20, 20, *Nothing*, IntPtr.Zero

Enjoy

----- John wrote: ----

Thanks Bill. That was what I needed.

Bill Borg <an*******@disc ussions.microso ft.com> wrote in message news:<0F******* *************** ************@mi crosoft.com>..
Hi John
First, in the item template of the datalist you need an image control
Second, the image control needs a url (either src= or imageurl=, depending on whether it's a server control)
Third, you can do the url the easy way or the harder-but-cooler way
Easier way: Don't store your thumbnails in the array, instead write them to disk with temp names and store just the names in the array, then bind the source url to those names and you're off
Harder way: Keep your images in the arraylist, but now you need a url that returns each image from memory. Consider GetImage.aspx, which returns a byte stream the browser will interpret as an image, with something like this in PageLoad
Dim bmp As Image = New Bitmap(Server.M apPath("images\ myfile.jpg")

Dim thumb as image = bmp.GetThumbnai lImage, etc
Response.Conten tType = "image/jpeg
bmp.Save(Respon se.OutputStream , Imaging.ImageFo rmat.Jpeg
Now you bind the source url to GetImage.aspx and the thumbnail is fed from memory rather than disk
Finally, in my example GetImage returns the *same* image each time, so if your directory has 30 images you'd get the same one each time...not good. A few ways to go about it, buy maybe the easiest is that you build your arraylist with just the file names, pass the file name to GetImage.aspx in a query string, and let GetImage convert it to a thumbnail and stream it back
hth
Bil
P.S. If you're serious about it, there's a great discussion in Dino Esposito's book, Programming Microsoft ASP.NET
----- John wrote: ----
I am trying to convert the regular sized images in a directory t

thumbnails and then display the thumbnails in a datalist. My cod
below is displaying the first image and nothing else after it. Wha
do I have to do to have the thumbnails displayed in my datalist?
Thanks
Dim strFile As Strin

Dim pics As ArrayList = New ArrayLis
' Get image folder path on server - use "\" string if roo

Dim strServerPath As String = Server.MapPath( "photos\"
For Each strFile In System.IO.Direc tory.GetFiles(s trServerPath

"*.jpg"
' Get the regular sized imag
Dim FullSizeImg As System.Drawing. Imag
FullSizeImg = System.Drawing. Image.FromFile( strFile
' Create the delegat

Dim dummyCallBack As System.Drawing. Image.GetThumbn ailImageAbor
dummyCallBack = Ne
System.Drawing. Image.GetThumbn ailImageAbort(A ddressO
ThumbnailCallba ck
' Create the thumbnai

Dim ThumbNailImg As System.Drawing. Imag
ThumbNailImg = FullSizeImg.Get ThumbnailImage( 160, 120
dummyCallBack, IntPtr.Zero
ThumbNailImg.Sa ve(Response.Out putStream
System.Drawing. Imaging.ImageFo rmat.Jpeg
pics.Add(ThumbN ailImg
Nex
DataList1.DataS ource = pic

DataList1.DataB ind(


Nov 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
279
by: John | last post by:
I am trying to convert the regular sized images in a directory to thumbnails and then display the thumbnails in a datalist. My code below is displaying the first image and nothing else after it. What do I have to do to have the thumbnails displayed in my datalist? Thanks. Dim strFile As String Dim pics As ArrayList = New ArrayList ' Get image folder path on server - use "\" string if root
5
331
by: John | last post by:
I am trying to convert the regular sized images in a directory to thumbnails and then display the thumbnails in a datalist. My code below is displaying the first image and nothing else after it. What do I have to do to have the thumbnails displayed in my datalist? Thanks. Dim strFile As String Dim pics As ArrayList = New ArrayList ' Get image folder path on server - use "\" string if root
3
2492
by: John | last post by:
I am trying to convert the regular sized images in a directory to thumbnails and then display the thumbnails in a datalist. My code below is displaying the first image and nothing else after it. What do I have to do to have the thumbnails displayed in my datalist? Thanks. Dim strFile As String Dim pics As ArrayList = New ArrayList ' Get image folder path on server - use "\" string if root
2
375
by: rhungund | last post by:
Hi all. I'm using a simple thumbnail generating script in VB.NET/GDI. It uses the GetThumbnailImage method. It works great when resizing gifs. But when I resize a jpeg the quality looks terrible. Here's a code snippet. Thanks. Dim fullSizeImg as System.Drawing.Image fullSizeImg = System.Drawing.Image.FromFile(Server.MapPath(imageUrl))
0
8275
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8802
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8697
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8465
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8579
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7297
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6158
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5612
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2699
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.