首页
文章
文库
登录
|
注册
最新
推荐
热门
主题
关注
收藏
反馈
关注公众号
作最清晰缩略图的完整类
来源
本站原创
佚名
以下是代码片段:
Public
Class
ClassUpPic
Private
vPicFile As System.Web.UI.HtmlControls.HtmlInputFile
Private
vSmallPicSize, vUpFileSize As Integer
Private
vUpPicPath, vNewPicName, vTmpPicName As
String
Private
PicMin, PicMax, vPicMax As System.Drawing.Image
Private
PicFormat As System.Drawing.Imaging.ImageFormat
Private
MinHeight, MinWidth As Decimal
Private
Myfile As IO.File
Public
Sub
New(
ByVal
PicFile As System.Web.UI.HtmlControls.HtmlInputFile,
ByVal
UpPicType As PicType)
vPicFile = PicFile
vUpFileSize = HttpContext.Current.Application("UpFileSize")
Select
Case
UpPicType
Case
PicType.Face
vUpPicPath = "upload/images/Face"
vSmallPicSize = 150
vNewPicName = HttpContext.Current.Session("MemberID") & "." & GetRightByChar(vPicFile.PostedFile.FileName, ".")
Case
PicType.Photo
vUpPicPath = "upload/images/Photo"
vSmallPicSize = 150
vNewPicName = System.Guid.NewGuid.ToString() & "." & GetRightByChar(vPicFile.PostedFile.FileName, ".")
Case
PicType.Pic
vUpPicPath = "upload/images/Pic"
vSmallPicSize = 550
vNewPicName = System.Guid.NewGuid.ToString() & "." & GetRightByChar(vPicFile.PostedFile.FileName, ".")
End
Select
End
Sub
Public
Function
GetSavedFileName() As
String
’检验图片类型=================================================================
If
vPicFile.PostedFile.FileName = ""
Then
Throw New NotSupportedException("文件为空,请您选择上传的图片文件!")
End
If
If
Left
(vPicFile.PostedFile.ContentType, 5) <> "image"
Then
Throw New NotSupportedException("文件格式不合法,请选取有效的图片文件!" & vPicFile.PostedFile.ContentType)
End
If
If
vPicFile.PostedFile.ContentLength > vUpFileSize
Then
Dim
MaxNumber As Decimal = vUpFileSize / 1024 / 1024
Throw New NotSupportedException("上传的图片文件太大,最大支持" & Format(MaxNumber, "##,##0") & "M!")
End
If
’检验数量限制=================================================================
’保存大文件=================================================================
vPicFile.PostedFile.SaveAs(HttpContext.Current.Server.MapPath(vUpPicPath & "/max/") & vNewPicName)
vPicFile.Dispose()
’缩略图片文件=================================================================
PicMax = System.Drawing.Image.FromFile(HttpContext.Current.Server.MapPath(vUpPicPath & "/max/") & vNewPicName)
If
Not
(PicMax.RawFormat
Is
PicFormat.Gif
Or
PicMax.RawFormat
Is
PicFormat.Png)
Then
If
PicMax.Height > vSmallPicSize
Or
PicMax.Width > vSmallPicSize
Then
vTmpPicName = System.Guid.NewGuid.ToString() & ".png"
vPicMax = PicMax
PicMax.Save(HttpContext.Current.Server.MapPath(vUpPicPath & "/max/") & vTmpPicName, PicFormat.Png)
vPicMax.Dispose()
PicMax = System.Drawing.Image.FromFile(HttpContext.Current.Server.MapPath(vUpPicPath & "/max/") & vTmpPicName)
End
If
End
If
’保存小文件=================================================================
GetMinPic(PicMax).Save(HttpContext.Current.Server.MapPath(vUpPicPath & "/min/") & vNewPicName, PicFormat.Jpeg)
PicMax.Dispose()
’删除临时png文件=================================================================
If
vTmpPicName <> ""
Then
Myfile.Delete(HttpContext.Current.Server.MapPath(vUpPicPath & "/max/") & vTmpPicName)
Return vNewPicName
End
Function
Private
Function
GetMinPic(
ByVal
MaxPic As System.Drawing.Image) As System.Drawing.Image
If
MaxPic.Height > vSmallPicSize
Or
MaxPic.Width > vSmallPicSize
Then
If
MaxPic.Height > MaxPic.Width
Then
MinWidth = MaxPic.Width / (MaxPic.Height / vSmallPicSize)
MinHeight = vSmallPicSize
Else
MinWidth = vSmallPicSize
MinHeight = MaxPic.Height / (MaxPic.Width / vSmallPicSize)
End
If
Return MaxPic.GetThumbnailImage(
CInt
(MinWidth),
CInt
(MinHeight),
Nothing
, New System.IntPtr())
Else
Return MaxPic
End
If
End
Function
Enum PicType
Face = 1
Photo = 2
Pic = 3
End
Enum
Private
Function
GetRightByChar(
ByVal
StrValue As
String
,
ByVal
CharValue As
String
) As
String
Dim
MyStr() As
String
=
Split
(StrValue, CharValue)
Return MyStr(MyStr.Length - 1)
End
Function
End
Class
关联文档
DeepSeek 搞钱指令库
T GDWJ 016 公立医院全面预算管理工作指南
人工智能技术发展与应用实践
DeepSeek行业应用案例集解锁
2025AI大模型产业市场前景及投资研究报告
大家都在看
一文读懂:模型上下文协议(MCP)
AI产品经理如何搭建AI业务架构:从基础到应用的三层架构设计
智能BI平台架构的全景解析与应用场景
大模型是怎么被训练出来的?
渠道分析从入门到精通
全面解读DeepSeek蒸馏技术:模型蒸馏和数据蒸馏
一文分享 ChatBI 实践经验
深度学习五大模型:CNN、Transformer、BERT、RNN、GAN解析
推荐文档
OKR核心原理与实践心得
坐席Copilot懂人所懂想人所想
DCMM数据管理能力成熟度模型解读
解码大型集团企业 研发效能提升策略
降低成本的分析方法
研发效能成本提升的6个关键影响因素和6个关键策略