Ask a Question related to ASP.NET General, Design and Development.
-
Rick Spiewak #1
Re: Create thumbnails on the fly
Here's code I use to do the task in a Windows form, but you should be able
to adapt it:
Dim wReq As System.Net.HttpWebRequest
wReq = WebRequest.Create(sURL)
Dim wResp As WebResponse = wReq.GetResponse
picImage.Image = New Bitmap(wResp.GetResponseStream)
"David W. Simmonds" <david@simmonds.ca> wrote in message
news:8DXTa.504871$3C2.13477317@news3.calgary.shaw. ca...
in> I would like to be able to create thumbnails on the fly and display thema> a datalist. The original images would be sourced from a website, not frominstead> virtual path on the server. ie. [url]http://www.foo.bar/photos/image.jpg[/url]how> of /photos/image.jpg. I have seen code to do the latter. Any ideas as to> to create a Bitmap or Image object based on a url?
>
>
Rick Spiewak Guest
-
Thumbnails
What a helpful person cheesefood is.......prat!!! Ifv your thumbnails were saved in an earlier version of PS they may not open so you will need to... -
Illustrator thumbnails Win YES and illustrator thumbnails Mac NO? thumbnails thumbnails Illustr
Y have 2 different version Adobe Creative Suite one for windows, and one for MacOS X. The probem is: and Illustrator CS Mac the illustrator file... -
thumbnails with php
hy all, i am complety new to GD and i must have a code within 2 days that does the following for me - Upload an image (jpg / png / gif) and... -
Hot To: Create thumbnails?
I am using the Dreamweaver 6.1 Studio on WinXP. This includes version 6 of Fireworks. If I have a huge JPG image, I am trying to figure out how... -
Delete thumbnails
Rwhalls, I have a camcorder, but I'm not following you. You want to delete the images from the memory of your camcorder, is that it ? My... -
David W. Simmonds #2
Re: Create thumbnails on the fly
What type of object is picImage? I need to have about 20 thumbnails
presented. I was going to use a DataList to do such. I would put an
ImageButton into the DataList, but it only supports an ImageUrl method.
There is no way of giving it an Image object.
"Rick Spiewak" <rickspiewak@mindspring.com> wrote in message
news:OQAxt8iUDHA.2284@TK2MSFTNGP11.phx.gbl...from> Here's code I use to do the task in a Windows form, but you should be able
> to adapt it:
>
>
>
> Dim wReq As System.Net.HttpWebRequest
>
> wReq = WebRequest.Create(sURL)
>
> Dim wResp As WebResponse = wReq.GetResponse
>
> picImage.Image = New Bitmap(wResp.GetResponseStream)
>
> "David W. Simmonds" <david@simmonds.ca> wrote in message
> news:8DXTa.504871$3C2.13477317@news3.calgary.shaw. ca...
>> in> > I would like to be able to create thumbnails on the fly and display them> > a datalist. The original images would be sourced from a website, not> a> instead> > virtual path on the server. ie. [url]http://www.foo.bar/photos/image.jpg[/url]> how> > of /photos/image.jpg. I have seen code to do the latter. Any ideas as to>> > to create a Bitmap or Image object based on a url?
> >
> >
>
David W. Simmonds Guest



Reply With Quote

