Asp. NET create a dynamic thumbnail method _ Practical Tips

Source: Internet
Author: User
Tags call back

The example in this article describes how asp.net creates dynamic thumbnails. Share to everyone for your reference. The specific analysis is as follows:

Tips:

1. Import System.IO
2. Create Class C Lass "Createthumbnails"
or any class and place following function inside that class

You need one function to response call back to main function

Function Imageabortdummycallback () as Boolean
Return False
End Function

The specific code is as follows:

Function Createjpegthumbnail (ByVal insourcefile As String, ByVal Indestinationfile as String, ByVal Thumbwidth as Integer , ByVal Thumbheight as Integer) as Boolean Dim imagefile As System.Drawing.Image Dim Outputfstream as New FileStream (i  Nsourcefile, FileMode.Open, FileAccess.Read) ' exposes a System.IO.Stream around a file, supporting both synchronous and
  Asynchronous read and write operations. Dim Imageabortcallback as System.Drawing.Image.GetThumbnailImageAbort ' This method returns true if it decides the System.Drawing.Image.GetThumbnailImage method should prematurely stop execution;
  Otherwise, it returns false. ImageFile = System.Drawing.Image.FromStream (outputfstream) Imageabortcallback = New System.Drawing.Image.GetThumbnailImageAbort (AddressOf imageabortdummycallback) ImageFile = Imagefile.getthumbnailimage (Thumbwidth, Thumbheight, Imageabortcallback, IntPtr.Zero) ' IntPtr = A platform-specific ty
  PE is used to represent a pointer or a handle. ImaGefile.save (Indestinationfile, System.Drawing.Imaging.ImageFormat.Jpeg) outputfstream.close () Outputfstream =

 Nothing imagefile = no end Function

I hope this article will help you with your asp.net programming.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.