.net 缩略图功能!!

.net缩略图功能!!谁有源程序,发到我的邮箱里!969994343@qq.com功能要求:点击按钮--》上传一张图片----》输入所要生成的图片的大小---》点击生成-... .net 缩略图功能!!
谁有源程序,发到我的邮箱里!969994343@qq.com
功能要求:点击按钮 --》 上传一张图片 ----》 输入所要生成的图片的大小 ---》点击生成 --》 保存本地

我也很急着用,做出来的高手们 多多加分!! 谢谢大家了!
展开
 我来答
709066816
2010-12-12 · 超过20用户采纳过TA的回答
知道答主
回答量:43
采纳率:100%
帮助的人:43.6万
展开全部
根据你的需求我给你写了个这样的页面
页面代码:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<div>

选择图片:<br />
<asp:FileUpload ID="fuImg" runat="server" Width="190px" />
<br />
宽:<asp:TextBox ID="txtWidth" runat="server"></asp:TextBox>
px<br />
高:<asp:TextBox ID="txtHeight" runat="server"></asp:TextBox>
px<br />
<asp:Button ID="btnSave" runat="server" Text="生成缩略图并保存"
onclick="btnSave_Click" />
</div>
</form>
</body>
</html>
代码:
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Drawing;

namespace Test
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}

protected void btnSave_Click(object sender, EventArgs e)
{
HttpPostedFile myFile = fuImg.PostedFile;
int nFileLen = myFile.ContentLength;
byte[] myData = new Byte[nFileLen];
int width = int.Parse(txtWidth.Text);//缩略图的宽度
int height = int.Parse(txtHeight.Text);//缩略图的高度
string name = "save";
myFile.InputStream.Read(myData, 0, nFileLen);

string sFilename = System.IO.Path.GetFileName(myFile.FileName);

System.IO.FileStream newFile
= new System.IO.FileStream(Server.MapPath(name+"_temp.jpg"),
System.IO.FileMode.Create);
newFile.Write(myData, 0, myData.Length);
newFile.Close();

System.Drawing.Image.GetThumbnailImageAbort myCallBack =
new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback);
Bitmap myBitmap;
try
{
myBitmap = new Bitmap(Server.MapPath(name+ "_temp.jpg"));
System.Drawing.Image myThumbnail
= myBitmap.GetThumbnailImage(width,
height, myCallBack, IntPtr.Zero);
myThumbnail.Save(Server.MapPath(name + ".jpg"));

// Displaying success information

// Destroy objects
myThumbnail.Dispose();
myBitmap.Dispose();
System.IO.File.Delete(Server.MapPath(name + "_temp.jpg"));//删除原图
}
catch (ArgumentException errArgument)
{
// The file wasn't a valid jpg file
//lblImgCue.Text = "The file wasn't a valid jpg file.";
}
Response.ContentType = "application/x-msdownload";
string filename = "attachment; filename=img.jpg";
Response.AddHeader("Content-Disposition", filename);
string filepath = "save.jpg";
Response.TransmitFile(filepath);
}
public bool ThumbnailCallback()
{
return false;
}
}
}
Storm代理
2023-07-25 广告
StormProxies是一家提供动态代理服务器服务的企业,旨在帮助用户更好地管理网络访问和安全。以下是一些关于StormProxies的IP动态代理服务的特点:1. 高匿名性:StormProxies的动态代理服务器具有高匿名性,可以有效... 点击进入详情页
本回答由Storm代理提供
郊巧0Q
2010-12-05 · TA获得超过833个赞
知道小有建树答主
回答量:1358
采纳率:0%
帮助的人:555万
展开全部
表达式:<span class=\"s_pic\">(?<url>[^<]*)</span>
MatchCollection resultsImg = regexImg.Matches(html)
foreach (Match matI in resultsImg)
{
url地址 = matI.Groups["url"].Value;
}

正确的话就给分吧。
另外我估计你的new Regex("<span class=\"s_pic\">(.*?)+</sapn>",后面的</span>你错写成</sapn>了,所以才无法匹配。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
dupingyeee
2010-12-04
知道答主
回答量:3
采纳率:0%
帮助的人:0
展开全部
程序已发送,请查收
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式