asp 批量上传图片 并显示缩略图

类似这种的,也可以是其它方式,只能功能差不多就可以!!   上传好的图片能及时显示缩略图,并且可以删除,左右移动可以不要! &nb... 类似这种的,也可以是其它方式,只能功能差不多就可以!!    上传好的图片能及时显示缩略图,并且可以删除,左右移动可以不要!   展开
 我来答
图材图色tusea
2011-08-22 · 用心创作内容,感谢您的关注
图材图色tusea
采纳数:318 获赞数:1880

向TA提问 私信TA
展开全部

建议使用 swfupload组件

官方演示地址:http://demo.swfupload.org/v220/applicationdemo/index.php

匿名用户
2011-08-22
展开全部
去找“ASP缩略图”,通常用图片组件做
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友b18975e
2011-08-22 · 超过18用户采纳过TA的回答
知道答主
回答量:140
采纳率:0%
帮助的人:63.7万
展开全部
/// <summary>
/// 为图片生成缩略图
/// </summary>
/// <param name="phyPath">原图片的路径</param>
/// <param name="width">缩略图宽</param>
/// <param name="height">缩略图高</param>
/// <returns></returns>
public static string GetThumbnail(string phyPath, int width, int height)
{
System.Drawing.Image image = System.Drawing.Image.FromFile(phyPath);
int orignWidth = image.Width; //原图尺寸
int orignHeight = image.Height;
float toWidth = (float)width; //缩略图目标尺寸
float toHeight = (float)height;
float radio = (float)orignWidth / (float)orignHeight; //宽高比例
if (orignWidth >= orignHeight)
{ //宽度不变
toHeight = toWidth / radio;
}
else
{ //高度不变
toWidth = toHeight * radio;
}

System.Drawing.Image thumbImage = image.GetThumbnailImage(Convert.ToInt32(toWidth), Convert.ToInt32(toHeight), null, IntPtr.Zero);
string folder = Path.GetDirectoryName(phyPath);
string fileName = "\\s_" + Path.GetFileName(phyPath);
string savePath = folder + fileName;
try
{
thumbImage.Save(savePath, System.Drawing.Imaging.ImageFormat.Jpeg);
}
finally
{
image.Dispose();
thumbImage.Dispose();
}

return savePath;
}
试试这个 这个是生成缩略图的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
往运零7134
2011-08-23 · TA获得超过453个赞
知道小有建树答主
回答量:676
采纳率:0%
帮助的人:412万
展开全部
去找“ASP缩略图”,通常用图片组件做
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jxfnx257ipu
2011-08-23 · TA获得超过210个赞
知道小有建树答主
回答量:873
采纳率:0%
帮助的人:513万
展开全部
去找“ASP缩略图”,通常用图片组件做
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式