Create thumbnails on the fly

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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...
    > I would like to be able to create thumbnails on the fly and display them
    in
    > a datalist. The original images would be sourced from a website, not from
    a
    > virtual path on the server. ie. [url]http://www.foo.bar/photos/image.jpg[/url]
    instead
    > of /photos/image.jpg. I have seen code to do the latter. Any ideas as to
    how
    > to create a Bitmap or Image object based on a url?
    >
    >

    Rick Spiewak Guest

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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...
    > 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...
    >
    > > I would like to be able to create thumbnails on the fly and display them
    > in
    > > a datalist. The original images would be sourced from a website, not
    from
    > a
    > > virtual path on the server. ie. [url]http://www.foo.bar/photos/image.jpg[/url]
    > instead
    > > of /photos/image.jpg. I have seen code to do the latter. Any ideas as to
    > how
    > > to create a Bitmap or Image object based on a url?
    > >
    > >
    >
    >

    David W. Simmonds Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139