簡體   English   中英

如何在ASP.NET中檢索網站的快照?

[英]How do you retrieve a snapshot of a website in ASP.NET?

誰能告訴我如何通過ASP.NET應用程序檢索網站的圖像或縮略圖? 我已經在Alexa等一些網站上看到了此功能。

嘗試SnapCasa的免費和易於使用的服務。 像這樣形成圖像標簽:

<img src="http://SnapCasa.com/Get.aspx?code=[code]&size=[size]&url=[url]" />

需要注冊,但每月免費需要500,000個請求。 [code]是他們在注冊后提供的api密鑰。 [size]是可用的三種尺寸之一。 [url]是您要顯示縮略圖的網站的網站地址。

如果要使用代碼中的圖像,請使用以下兩種幫助方法:

static public byte[] GetBytesFromUrl(string url)
{
    byte[] b;
    HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(url);
    WebResponse myResp = myReq.GetResponse();

    Stream stream = myResp.GetResponseStream();
    //int i;
    using (BinaryReader br = new BinaryReader(stream))
    {
        //i = (int)(stream.Length);
        b = br.ReadBytes(500000);
        br.Close();
    }
    myResp.Close();
    return b;
}

static public void WriteBytesToFile(string fileName, byte[] content)
{
    FileStream fs = new FileStream(fileName, FileMode.Create);
    BinaryWriter w = new BinaryWriter(fs);
    try
    {
        w.Write(content);
    }
    finally
    {
        fs.Close();
        w.Close();
    }
}

然后,在您的代碼中,只需使用:

//get byte array for image
var imageBytes = GetBytesFromUrl("http://SnapCasa.com/Get.aspx?code=[code]&size=[size]&url=[url]");
//save file to disk
WriteBytesToFile("c:\someImageFile.jpg", imageBytes);

應該可以使用網絡瀏覽器對象並將視口保存到重新設置為縮略圖的位圖中。

我尚未測試此代碼,但嘗試在替換縮略圖參數后對其進行調整。

using (WebBrowser wb = new WebBrowser()) {
    wb.ScrollBarsEnabled = false;
    wb.AllowNavigation = true;
    wb.ScriptErrorsSuppressed = true;
    wb.ClientSize = new Size(thumbInfo_viewportWidth, thumbInfo_viewportHeight);

    if ((thumbInfo_Uri != null)) {
        wb.Navigate(thumbInfo_Uri.AbsoluteUri);
    } else {
        wb.Navigate("about:blank");
        HtmlDocument doc = wb.Document.OpenNew(true);
        doc.Write(thumbInfo_HTML);
        wb.Refresh(WebBrowserRefreshOption.Completely);
    }

    // create an image of the client area of the webbrowser control, than 
    // scale it down to the dimensions specified.
    if ((wb.Document != null && wb.Document.Body != null)) {
        Rectangle rec = default(Rectangle);
        rec.Size = wb.ClientSize;
        using (Bitmap fullSizeBitmap = new Bitmap(thumbInfo_viewportWidth, thumbInfo_viewportHeight)) {
            wb.DrawToBitmap(fullSizeBitmap, wb.Bounds);
            using (Bitmap scaledBitmap = new Bitmap(thumbInfo_width, thumbInfo_height)) {
                using (Graphics gr = Graphics.FromImage(scaledBitmap)) {
                    gr.SmoothingMode = Drawing2D.SmoothingMode.HighQuality;
                    gr.CompositingQuality = Drawing2D.CompositingQuality.HighQuality;
                    gr.InterpolationMode = Drawing2D.InterpolationMode.High;
                    Rectangle rect = new Rectangle(0, 0, thumbInfo_width, thumbInfo_height);
                    gr.DrawImage(fullSizeBitmap, rect, 0, 0, rec.Size.Width, rec.Size.Height, GraphicsUnit.Pixel);

                    scaledBitmap.Save(thumbInfo_physicalPath);
                }
            }
        }
    }
}

需要注意的一件事是這是一個昂貴的過程。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM