最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

ASP.NET實現根據URL生成網頁縮略圖的方法

 更新時間:2015年11月18日 10:18:05   作者:mile  
這篇文章主要介紹了ASP.NET實現根據URL生成網頁縮略圖的方法,結合實例較為詳細的分析了asp.net生成網頁縮略圖的詳細實現技巧與相關注意事項,需要的朋友可以參考下

本文實例講述了ASP.NET實現根據URL生成網頁縮略圖的方法。分享給大家供大家參考,具體如下:

工作中需要用到根據URL生成網頁縮略圖功能,提前做好準備。

在網上找了份源碼,但是有錯誤:當前線程不在單線程單元中,因此無法實例化 ActiveX 控件“8856f961-340a-11d0-a9”,解決后運行良好,記錄在此備用!

起始頁:Default.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="CaptureToImage._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
 <title>Snap</title>
</head>
<body>
 <form id="form1" runat="server">
 <div>
 <input type="button" onclick="window.open('Snap.aspx?url=www.njude.com.cn')" value="生成網頁縮略圖"/>
 </div>
 </form>
</body>
</html>

調用頁:Snap.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Snap.aspx.cs" Inherits="CaptureToImage.Snap" AspCompat="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
 <title>無標題頁</title>
</head>
<body>
 <form id="form1" runat="server">
 <div>
 </div>
 </form>
</body>
</html>

PS:紅色字體部分是為解決錯誤增加的代碼,強制程序在單線程環(huán)境下運行!

調用頁:Snap.aspx.cs

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 System.Drawing.Imaging;
namespace CaptureToImage
{
 public partial class Snap : System.Web.UI.Page
 {
  protected void Page_Load(object sender, EventArgs e)
  {
   string url = string.Empty;
   url = Request.QueryString[0];
   try
   {
    GetImage thumb = new GetImage(url, 1024, 768, 800, 600);
    System.Drawing.Bitmap x = thumb.GetBitmap();
    x.Save(Response.OutputStream, ImageFormat.Jpeg);
    Response.ContentType = "image/jpeg";
   }
   catch (Exception ex)
   {
    Response.Write(ex.Message);
   }
  }
 }
}

類文件:GetImage.cs

using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Windows.Forms;
using System.Web.UI;
namespace CaptureToImage
{
 public class GetImage
 {
  int S_Height;
  int S_Width;
  int F_Height;
  int F_Width;
  string MyURL;
  public int ScreenHeight
  {
   get
   {
    return S_Height;
   }
   set
   {
    S_Height = value;
   }
  }
  public int ScreenWidth
  {
   get
   {
    return S_Width;
   }
   set
   {
    S_Width = value;
   }
  }
  public int ImageHeight
  {
   get
   {
    return F_Height;
   }
   set
   {
    F_Height = value;
   }
  }
  public int ImageWidth
  {
   get
   {
    return F_Width;
   }
   set
   {
    F_Width = value;
   }
  }
  public string WebSite
  {
   get
   {
    return MyURL;
   }
   set
   {
    MyURL = value;
   }
  }
  public GetImage(string WebSite, int ScreenWidth, int ScreenHeight, int ImageWidth, int ImageHeight)
  {
   this.WebSite = WebSite;
   this.ScreenHeight = ScreenHeight;
   this.ScreenWidth = ScreenWidth;
   this.ImageHeight = ImageHeight;
   this.ImageWidth = ImageWidth;
  }
  [STAThread]
  public Bitmap GetBitmap()
  {
   WebPageBitmap Shot = new WebPageBitmap(this.WebSite, this.ScreenWidth, this.ScreenHeight);
   Shot.GetIt();
   Bitmap Pic = Shot.DrawBitmap(this.ImageHeight, this.ImageWidth);
   return Pic;
  }
 }
 public class WebPageBitmap
 {
  WebBrowser MyBrowser;
  string URL;
  int Height;
  int Width;
  public WebPageBitmap(string url, int width, int height)
  {
   this.URL = url;
   this.Width = width;
   this.Height = height;
   MyBrowser = new WebBrowser();
   MyBrowser.ScrollBarsEnabled = false;
   MyBrowser.Size = new Size(this.Width, this.Height);
  }
  public void GetIt()
  {
   NavigateUrl(this.URL);
   while (MyBrowser.ReadyState != WebBrowserReadyState.Complete)
   {
    Application.DoEvents();
   }
  }
  public delegate void DelUserHandler(string url);
  public void NavigateUrl(string url)
  {
   try
   {
    if (this.MyBrowser.InvokeRequired)
    {
     DelUserHandler handler = new DelUserHandler(NavigateUrl);
     MyBrowser.Invoke(handler, url);
    }
    else
    {
     this.MyBrowser.Navigate(url);
    }
   }
   catch (Exception ex)
   {
    throw new Exception("NavigateUrl()" + ex.Message);
   }
  }
  public Bitmap DrawBitmap(int theight, int twidth)
  {
   Bitmap myBitmap = new Bitmap(this.Width, this.Height);
   Rectangle DrawRect = new Rectangle(0, 0, this.Width, this.Height);
   MyBrowser.DrawToBitmap(myBitmap, DrawRect);
   System.Drawing.Image imgOutput = myBitmap;
   System.Drawing.Bitmap oThumbNail = new Bitmap(twidth, theight, imgOutput.PixelFormat);
   Graphics g = Graphics.FromImage(oThumbNail);
   g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighSpeed;
   g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighSpeed;
   g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBilinear;
   Rectangle oRectangle = new Rectangle(0, 0, twidth, theight);
   g.DrawImage(imgOutput, oRectangle);
   try
   {
    return oThumbNail;
   }
   catch
   {
    return null;
   }
   finally
   {
    imgOutput.Dispose();
    imgOutput = null;
    MyBrowser.Dispose();
    MyBrowser = null;
   }
  }
 }
}

PS:項目中需要添加引用System.Windows.Forms

希望本文所述對大家asp.net程序設計有所幫助。

相關文章

  • .NET?6開發(fā)TodoList應用實現系列背景

    .NET?6開發(fā)TodoList應用實現系列背景

    這篇文章主要介紹了.NET?6開發(fā)TodoList應用實現系列背景,NET?6是一個很優(yōu)秀的框架,這一點自從我最開始接觸.NET?Core?2起一年一年進化到現在,就深切地感受到,那好東西就拿出來和大家分享一下,下面來看一下文章的學習介紹吧
    2021-12-12
  • ASP.NET?Core使用EF創(chuàng)建關系模型

    ASP.NET?Core使用EF創(chuàng)建關系模型

    這篇文章介紹了ASP.NET?Core使用EF創(chuàng)建關系模型的方法,文中通過示例代碼介紹的非常詳細。對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-04-04
  • 手把手帶你定制.NET?6.0的Middleware中間件

    手把手帶你定制.NET?6.0的Middleware中間件

    .NET?6?發(fā)布后,我們現有的應用會逐步升級到這個版本,下面這篇文章主要給大家介紹了關于定制.NET?6.0的Middleware中間件的相關資料,文中通過示例代碼介紹的非常詳細,需要的朋友可以參考下
    2022-12-12
  • asp.net session的使用與過期實例代碼

    asp.net session的使用與過期實例代碼

    本文章來簡單的介紹asp.net中session常見兩種用法,一種是session使用如何創(chuàng)建,另一種是告訴你如何判斷session過期了,有需要了解的朋友可以參考一下
    2013-08-08
  • WPF實現雷達掃描圖的繪制詳解

    WPF實現雷達掃描圖的繪制詳解

    這篇文章主要介紹了如何利用WPF實現雷達掃描圖的繪制,文中的示例代碼講解詳細,對我們學習或工作有一定幫助,需要的可以參考一下
    2022-05-05
  • .net中string類型可以作為lock的鎖對象嗎

    .net中string類型可以作為lock的鎖對象嗎

    lock 關鍵字是用于在多線程編程中實現同步和互斥訪問的關鍵字,它的作用是確保共享資源在任意時刻只能被一個線程訪問,從而避免出現競態(tài)條件(race condition)和數據不一致的問題,這篇文章主要介紹了string類型可以作為lock的鎖對象嗎,需要的朋友可以參考下
    2023-06-06
  • 樹莓派ASP.NET環(huán)境配置過程詳解

    樹莓派ASP.NET環(huán)境配置過程詳解

    這篇文章主要介紹了樹莓派ASP.NET環(huán)境配置,本篇文章內容是根據mono官網上查閱的配置教程所寫,需要的朋友可以參考下
    2022-04-04
  • asp.net全局變量的實例方法

    asp.net全局變量的實例方法

    在本篇文章里小編給大家整理的是關于asp.net全局變量的實例方法和實例,需要的朋友們可以學習下。
    2020-02-02
  • 使用Seq搭建免費的日志服務的方法

    使用Seq搭建免費的日志服務的方法

    這篇文章主要介紹了使用Seq搭建免費的日志服務的方法,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-08-08
  • Asp.net 2.0 無刷新圖片上傳 顯示縮略圖 具體實現

    Asp.net 2.0 無刷新圖片上傳 顯示縮略圖 具體實現

    簡單三步實現圖片無刷新上傳:注意是上傳,至于上傳時的驗證,比如圖片的尺寸,大小,格式。自行解決。如果我搞定了,也會貼上來的。
    2013-06-06

最新評論

新竹市| 洛阳市| 海安县| 社旗县| 尚志市| 乐清市| 寻甸| 阜城县| 车险| 仁化县| 称多县| 汶川县| 城固县| 民乐县| 贵定县| 德昌县| 金乡县| 阜南县| 广平县| 北宁市| 玉树县| 新田县| 江达县| 二连浩特市| 营口市| 天祝| 滨海县| 泰安市| 岫岩| 共和县| 青神县| 蓝山县| 徐水县| 彭山县| 东兰县| 海林市| 汪清县| 垫江县| 克什克腾旗| 卢湾区| 齐河县|