简介:
本文解决了将网页转换为图像的需要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 类并调用Generate()方法:
WebsiteToImage websiteToImage = new WebsiteToImage("http://www.cnn.com", @"C:\Some Folder\Test.jpg"); websiteToImage.Generate();
优点和注意事项:
以上是如何在 ASP.NET 中将网页转换为 JPG 图像而无需外部服务?的详细内容。更多信息请关注PHP中文网其他相关文章!