找回密码
 注册
搜索
查看: 5632|回复: 0

[收藏]asp.net生成缩略图

[复制链接]
发表于 2005-5-28 23:12:25 | 显示全部楼层 |阅读模式
  http://dev.21tx.com 2004年04月20日  

  当我们要上传图片的时候,往往需要生成缩略图,以往我们要使用第三方控件才能完成。在asp.net中用下面方法轻松搞定
<script language="VB" runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
  Dim image,aNewImage As System.Drawing.Image
  dim width,height,newwidth,newheight as integer
  Dim callb As System.Drawing.Image.GetThumbnailImageAbort
  ''生成缩略图
  image=System.Drawing.Image.FromFile(Server.MapPath("classpic/"+"rs1.jpg"))
  width=image.Width
  height=image.height
  if width>height then
   newwidth=110
   newheight=image.height/image.Width*newwidth
  else
   newheight=110
   newwidth=image.Width/image.height*newheight
  end if
  aNewImage=image.GetThumbnailImage(newwidth,newheight,callb,new System.IntPtr())
  aNewImage.Save(Server.MapPath("smallpic/"+"rs1.gif"))
  image.Dispose()
End Sub
</script>
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|宁德市腾云网络科技有限公司 ( 闽ICP备2022007940号-5|闽公网安备 35092202000206号 )

GMT+8, 2025-5-5 03:36 , Processed in 0.014189 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表