はじめに:
この記事では、Web ページを ASP.NET から画像に変換する必要性について説明します。外部に依存しない 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 内で Web ページを JPG 画像に変換する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。