Workaround for GetThumbnailImage Problem?

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

  1. #1

    Default Workaround for GetThumbnailImage Problem?

    I understand that one of the limitations of the Image.GetThumbnailImage()
    function is that it's not really good for creating "large" thumbnails
    because if it exists in the image file, the function will take the embedded
    thumbnail and actually blow it up to the requested height/width.

    Does anyone know if Microsoft will be fixing this "feature" or whether
    there's a work around to force the function to use the full image to scale?

    Thanks in advance for any comments.


    Comcast Guest

  2. Similar Questions and Discussions

    1. Problem with Active X Workaround
      Greets, Using Adobe's javascript workaround for Microsoft's "Click to Activate" Active X issue. PROBLEM: For any floating ads using "wmode"...
    2. Session Bug in IE? Workaround?
      I am having a problem with session variables in IE, Mozilla test fine. When i set session.username = 'abc' things work fine when I set...
    3. html_entity_decode workaround for 4.1.x
      Is there another function or a workaround to have same results of html_entity_decode in php 4.1.x? Thanks. --...
    4. Workaround for bug Q316495
      I tried posting the following to the aspnet group and got no response. I am on a tight deadline and it is a small detail in the overall picture but...
    5. Workaround for Bug: Q316495
      I have a datagrid where I need to display a list of radiobuttons for each row. Unfortunatly, RadioButtonList does not meet my requirements because I...
  3. #2

    Default Re: Workaround for GetThumbnailImage Problem?

    Actually, I just figured out a kludgy workaround .....

    Use the Image.Save function to save the loaded jpg image to a temporary
    filename, then use LoadFromFile to "reload" that temporary file which won't
    be saved with a thumbnail image and then pass that image variable into the
    GetThumbnailImage function which will cause the full size image to be
    utilized for generating the thumbnail.

    Pretty Kludgy, but this seems to work ....


    "Comcast" <junkmail-sf@comcast.net> wrote in message
    news:DlydnezazLIWE4iiU-KYvA@comcast.com...
    > I understand that one of the limitations of the Image.GetThumbnailImage()
    > function is that it's not really good for creating "large" thumbnails
    > because if it exists in the image file, the function will take the
    embedded
    > thumbnail and actually blow it up to the requested height/width.
    >
    > Does anyone know if Microsoft will be fixing this "feature" or whether
    > there's a work around to force the function to use the full image to
    scale?
    >
    > Thanks in advance for any comments.
    >
    >

    Comcast 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