Generate a table of thumbnails on the fly without saving to disk

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

  1. #1

    Default Generate a table of thumbnails on the fly without saving to disk

    Hi,
    I am trying to present the images in a folder as thumbnails in a dynamically
    created asp:table.
    I however do not want to save the thumbnails to disk, only show the images
    in this folder as thumbnails and then forget about them.

    I've seen a lot of samples using a datagrid/list and automatically bind
    thumbnails to these controls, but it does not meet my requirements. I've
    also seen a sample where the thumbnail of one image is genereated and then
    saved to the response.outputstream, which is almost what I am looking for,
    but I cannot make this work with more that 1 image.

    So my pseudocode for what I want is something like this:
    ------------------------------------------------------------
    for each image in folder
    add new cell in table
    cell.text="<img src=" & image.getThumbnail( ) & "/>"
    next
    ------------------------------------------------------------

    I know that the Thumbnail that is generated is an object and it will not
    make sense in a src attribute, but you might see what I want.

    Hope anyone can help
    /espen


    Espen Evje Guest

  2. Similar Questions and Discussions

    1. Saving .swf files to hard disk
      Hello everyone; first of all: before asking this question, I made some research, but I can't manage to find an appropriate answer. That's why I'm...
    2. Generate csv file from sql table
      I am looking to do the following from a C# ASP.Net applicatio 1. Generate a DS from a SQL pull of a single table. Once I have pulled the data...
    3. Manually generate a table of contents(TOC)
      I am trying to understand how the bookmarks in a table of contents work so I can make manual entries to it. When I generate the TOC with Layout>TOC...
    4. php generate thumbnails
      Sir, I read in a thread that you mailed some code to generate thumbnails Might I also have a copy ? It's been driving me crazy, all week. Thanks...
    5. How to generate a document from table schema?
      In article <bc503f80.0306270809.50bdb2cd@posting.google.com>, dnlchou@yahoo.com says... I've done that with Sybase PowerDesigner. After 'reverse...
  3. #2

    Default Re: Generate a table of thumbnails on the fly without saving to disk

    Thanx a lot. This worked superb :-)

    /espen

    "Natty Gur" <natty@dao2com.com> wrote in message
    news:uXN8ZktRDHA.2768@tk2msftngp13.phx.gbl...
    > Hi,
    >
    > You need to split your page to two pages. One will produce the Image by
    > outputstream. The other creates that images in table and set the src
    > attribute to the first page with the right parameters (pass as query
    > string).
    >
    > for each image in folder
    > add new cell in table
    > cell.text="<img src= GetImage.aspx?id=" & image.ID & "/>"
    > next
    >
    >
    > Natty Gur, CTO
    > Dao2Com Ltd.
    > 28th Baruch Hirsch st. Bnei-Brak
    > Israel , 51114
    >
    > Phone Numbers:
    > Office: +972-(0)3-5786668
    > Fax: +972-(0)3-5703475
    > Mobile: +972-(0)58-888377
    >
    > Know the overall picture
    >
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!

    Espen Evje 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