簡介:
本文解決了將網頁轉換為圖像的需要ASP.NET 中的JPG 影像,無需依賴外部
使用ASP.NET 的解決方案:
下面是滿足此要求的C# 函數:
using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Threading; using System.Windows.Forms; public class WebsiteToImage { //... (Full code omitted for brevity) } public static class BitmapExtensions { //... (Full code omitted for brevity) }
用法:
用法:WebsiteToImage websiteToImage = new WebsiteToImage("http://www.cnn.com", @"C:\Some Folder\Test.jpg"); websiteToImage.Generate();
要使用此函數,請實例化WebsiteToImage類別並呼叫Generate()方法:
以上是如何在 ASP.NET 中將網頁轉換為 JPG 影像而無需外部服務?的詳細內容。更多資訊請關注PHP中文網其他相關文章!