資源簡介
(親測正確版)ASP.NET-c#-捕捉網頁快照-網站截圖-網站縮略圖
★★★★★★★★★★★★★★★★★★★★★★★★★★★
建立網站縮略圖源碼
網頁快照ASP.NET網站截圖
網頁快照ASP.NET c# 輸入網址獲取網站圖片
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
網上流傳了很多網站縮略圖的asp.net,但是都無法使用,本人親測,該代碼進行優化,速度快,效率高,占內存非常少。

代碼片段和文件信息
using?System;
using?System.Data;
using?System.Configuration;
using?System.Collections;
using?System.Web;
using?System.Web.Security;
using?System.Web.UI;
using?System.Web.UI.WebControls;
using?System.Web.UI.WebControls.WebParts;
using?System.Web.UI.HtmlControls;
using?okpower.Utility;
using?System.Drawing;
using?System.Drawing.Imaging;
public?partial?class?_Default?:?System.Web.UI.Page
{
????protected?void?Page_Load(object?sender?EventArgs?e)
????{
????}
????public?string?WebPreview(string?url)
????{
????????if?(string.IsNullOrEmpty(url))?return?string.Empty;
????????string?fold?=?“_images/“;//圖片存放目錄
????????string?physicsFold?=?Server.MapPath(fold);
????????string?name?=?url;
????????name?=?name.Replace(‘/‘?‘-‘);
????????name?=?name.Replace(‘:‘?‘_‘);
????????name?=?name.Replace(‘&‘?‘_‘);
????????name?=?name.Replace(‘‘?‘_‘);
????????name?=?name.Replace(‘\‘‘?‘_‘);
????????name?=?name.Replace(‘“‘?‘_‘);
????????string?fileName?=?name?+?“.jpg“;
????????if?(!System.IO.File.Exists(physicsFold?+?fileName))
????????{
????????????try
????????????{
????????????????Bitmap?image?=?okpower.Utility.WebPreview.GetWebPreview(new?Uri(url));
????????????????//保存圖片數據
????????????????image.Save(physicsFold?+?fileName?ImageFormat.Jpeg);
????????????}
????????????catch?(Exception?ex)
????????????{
????????????????throw;
????????????}
????????}
????????return?fold?+?fileName;
????}
????protected?void?bt_Click(object?sender?EventArgs?e)
????{
????????this.Preview.InnerHtml?=?“
“;
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????24576??2006-12-26?00:07??網頁快照ASP.NET網站截圖\Bin\okpower.Utility.dll
?????文件??????28160??2006-12-26?00:07??網頁快照ASP.NET網站截圖\Bin\okpower.Utility.pdb
?????文件????????711??2006-12-26?00:04??網頁快照ASP.NET網站截圖\Default.aspx
?????文件???????1628??2006-12-26?00:08??網頁快照ASP.NET網站截圖\Default.aspx.cs
?????文件???????6921??2006-12-25?18:33??網頁快照ASP.NET網站截圖\ImageLibrary.cs
?????文件???????1700??2006-12-26?00:03??網頁快照ASP.NET網站截圖\Web.Config
?????文件??????12905??2006-12-25?22:53??網頁快照ASP.NET網站截圖\WebPreview.cs
?????目錄??????????0??2006-12-26?00:01??網頁快照ASP.NET網站截圖\Bin
?????目錄??????????0??2011-11-17?16:57??網頁快照ASP.NET網站截圖\_images
?????目錄??????????0??2011-11-17?16:57??網頁快照ASP.NET網站截圖
-----------?---------??----------?-----??----
????????????????76601????????????????????10
- 上一篇:powll優化設計鮑威爾法
- 下一篇:C#p2p源碼聊天程序百分百可用的源碼
評論
共有 條評論