首页 > 编程 > .NET > 正文

ASP.NET创建动态缩略图的方法

2024-07-10 13:29:09
字体:
来源:转载
供稿:网友

这篇文章主要介绍了ASP.NET创建动态缩略图的方法,实例分析了asp.net动态操作图片的相关技巧,需要的朋友可以参考下

本文实例讲述了ASP.NET创建动态缩略图的方法。分享给大家供大家参考。具体分析如下:

提示:

1. 导入 System.IO

2. 创建 类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

具体代码如下:

 

 
  1. Function CreateJPEGThumbnail(ByVal inSourceFile As String, ByVal inDestinationFile As String, ByVal ThumbWidth As Integer, ByVal ThumbHeight As Integer) As Boolean 
  2. Dim imageFile As System.Drawing.Image 
  3. Dim outputFstream As New FileStream(inSourceFile, FileMode.Open, FileAccess.Read)  
  4. 'Exposes a System.IO.Stream around a file, supporting both synchronous and asynchronous read and write operations. 
  5. Dim ImageAbortCallBack As System.Drawing.Image.GetThumbnailImageAbort  
  6. 'This method returns true if it decides that the System.Drawing.Image.GetThumbnailImage method should prematurely stop execution; otherwise, it returns false
  7. imageFile = System.Drawing.Image.FromStream(outputFstream) 
  8. ImageAbortCallBack = New System.Drawing.Image.GetThumbnailImageAbort(AddressOf ImageAbortDummyCallback) 
  9. imageFile = imageFile.GetThumbnailImage(ThumbWidth, ThumbHeight, ImageAbortCallBack, IntPtr.Zero)  
  10. 'IntPtr = A platform-specific type that is used to represent a pointer or a handle. 
  11. imageFile.Save(inDestinationFile, System.Drawing.Imaging.ImageFormat.Jpeg) 
  12. outputFstream.Close() 
  13. outputFstream = Nothing 
  14. imageFile = Nothing 
  15. End Function 

希望本文所述对大家的asp.net程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表