91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#將HTML轉換為圖片或PDF的方法

發布時間:2020-09-22 14:25:22 來源:億速云 閱讀:366 作者:小新 欄目:編程語言

小編給大家分享一下C#將HTML轉換為圖片或PDF的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

首先是把 HTML 轉換為圖片。


public partial class Form1 : Form
    {public Form1()
        {
            InitializeComponent();
        }

        WebBrowser webBrowser = null;public void ConvertToImg()
        {
            webBrowser = new WebBrowser();//是否顯式滾動條webBrowser.ScrollBarsEnabled = false;//加載HTML頁面的地址webBrowser.Navigate("");            //頁面加載完成執行事件webBrowser.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(webBrowser_DocumentCompleted);
        }private void webBrowser_DocumentCompleted(object sender, EventArgs e)//這個就是當網頁載入完畢后要進行的操作        {//獲取解析后HTML的大小System.Drawing.Rectangle rectangle = webBrowser.Document.Body.ScrollRectangle;int width = rectangle.Width;int height = rectangle.Height;//設置解析后HTML的可視區域webBrowser.Width = width;
            webBrowser.Height = height;

            Bitmap bitmap = new System.Drawing.Bitmap(width, height);
            webBrowser.DrawToBitmap(bitmap, new System.Drawing.Rectangle(0, 0, width, height));//設置圖片文件保存路徑和圖片格式,格式可以自定義string filePath = AppDomain.CurrentDomain.BaseDirectory + "../../SaveFIle/" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".png";
            bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
        }private void button1_Click(object sender, EventArgs e)
        {
            ConvertToImg();
        }
    }
View Code

上面這種方法是解析指定URL地址的HTML,然后轉換為圖片。當然,也可以直接寫一些HTML標簽。如下:


public partial class Form1 : Form
    {public Form1()
        {
            InitializeComponent();
        }

        WebBrowser webBrowser = null;public void ConvertToImg()
        {string html = "<div><table border = \"1\" cellspacing = \"0\" cellpadding = \"3\" style = \"text-align:center;\"><tr><th style = \"width:60px;\">字段1</th><th style = \"width:60px;\">字段2</th><th style = \"width:60px;\">字段3</th></tr><tr style = \"color:green;\"><td>小明</td><td>22</td><td>185</td></tr><tr style = \"color:red;\"><td>小青</td><td>21</td><td>170</td></tr></table></div>";

            webBrowser = new WebBrowser();//是否顯式滾動條webBrowser.ScrollBarsEnabled = false;//加載 htmlwebBrowser.DocumentText = html;            //頁面加載完成執行事件webBrowser.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(webBrowser_DocumentCompleted);
        }private void webBrowser_DocumentCompleted(object sender, EventArgs e)//這個就是當網頁載入完畢后要進行的操作        {//獲取解析后HTML的大小System.Drawing.Rectangle rectangle = webBrowser.Document.Body.ScrollRectangle;int width = rectangle.Width;int height = rectangle.Height;//設置解析后HTML的可視區域webBrowser.Width = width;
            webBrowser.Height = height;

            Bitmap bitmap = new System.Drawing.Bitmap(width, height);
            webBrowser.DrawToBitmap(bitmap, new System.Drawing.Rectangle(0, 0, width, height));//設置圖片文件保存路徑和圖片格式,格式可以自定義string filePath = AppDomain.CurrentDomain.BaseDirectory + "../../SaveFIle/" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".png";
            bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);
        }private void button1_Click(object sender, EventArgs e)
        {
            ConvertToImg();
        }
    }
View Code

然后把圖片轉換為PDF,這里需要用到 iTextSharp.dll 這個組件。


public partial class Form1 : Form
    {public Form1()
        {
            InitializeComponent();
        }

        WebBrowser webBrowser = null;public void ConvertToImg()
        {string html = "<div><table border = \"1\" cellspacing = \"0\" cellpadding = \"3\" style = \"text-align:center;\"><tr><th style = \"width:60px;\">字段1</th><th style = \"width:60px;\">字段2</th><th style = \"width:60px;\">字段3</th></tr><tr style = \"color:green;\"><td>小明</td><td>22</td><td>185</td></tr><tr style = \"color:red;\"><td>小青</td><td>21</td><td>170</td></tr></table></div>";

            webBrowser = new WebBrowser();//是否顯式滾動條webBrowser.ScrollBarsEnabled = false;//加載 htmlwebBrowser.DocumentText = html;            //頁面加載完成執行事件webBrowser.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(webBrowser_DocumentCompleted);
        }private void webBrowser_DocumentCompleted(object sender, EventArgs e)//這個就是當網頁載入完畢后要進行的操作        {//獲取解析后HTML的大小System.Drawing.Rectangle rectangle = webBrowser.Document.Body.ScrollRectangle;int width = rectangle.Width;int height = rectangle.Height;//設置解析后HTML的可視區域webBrowser.Width = width;
            webBrowser.Height = height;

            Bitmap bitmap = new System.Drawing.Bitmap(width, height);
            webBrowser.DrawToBitmap(bitmap, new System.Drawing.Rectangle(0, 0, width, height));//設置圖片文件保存路徑和圖片格式,格式可以自定義string filePath = AppDomain.CurrentDomain.BaseDirectory + "../../SaveFIle/" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".png";
            bitmap.Save(filePath, System.Drawing.Imaging.ImageFormat.Png);//創建PDFFileStream fileStream = new FileStream(AppDomain.CurrentDomain.BaseDirectory + "../../SaveFIle/" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".pdf", FileMode.Create);byte[] result = CreatePDF(bitmap, width, height);

            fileStream.Write(result, 0, result.Length);

            fileStream.Close();
            fileStream.Dispose();
        }private void button1_Click(object sender, EventArgs e)
        {
            ConvertToImg();
        }public byte[] CreatePDF(Bitmap bitmap, int width, int height)
        {using (MemoryStream ms = new MemoryStream())
            {
                Document doc = new Document(new iTextSharp.text.Rectangle(0, 0, width, height), 3, 3, 3, 3);    // 左右上下PdfWriter writer = PdfWriter.GetInstance(doc, ms);

                writer.CloseStream = false;

                doc.Open();

                iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance(bitmap, System.Drawing.Imaging.ImageFormat.Png);

                img.ScalePercent(100);      // 放縮比例doc.Add(img);       // 添加圖片對像                doc.Close();return ms.ToArray();
            }
        }
    }
View Code

不過這種生成圖片之后再轉成PDF,會造成像素的丟失,所以看起來要比圖片模糊一點。

還有一種辦法就是直接生成PDF,這里需要安裝 ABCpdf。不過,這個是收費的。。。


public partial class Form1 : Form
    {public Form1()
        {
            InitializeComponent();
        }public void ConvertToPDF()
        {string html = "<div><table border = \"1\" cellspacing = \"0\" cellpadding = \"3\" style = \"text-align:center;\"><tr><th style = \"width:60px;\">字段1</th><th style = \"width:60px;\">字段2</th><th style = \"width:60px;\">字段3</th></tr><tr style = \"color:green;\"><td>小明</td><td>22</td><td>185</td></tr><tr style = \"color:red;\"><td>小青</td><td>21</td><td>170</td></tr></table></div>";//創建一個Doc對象Doc doc = new Doc();//Rect默認是文檔整個頁面大小,這里的Inset表示將Rect左右留出15的空白,上下留出20的空白doc.Rect.Inset(15, 20);//直接設置htmlint docID = doc.AddHtml(html);//設置URL//int docID = doc.AddImageUrl("");//設置字體doc.AddFont("Arial");while (true)
            {//判斷是否還有內容if (!doc.Chainable(docID))
                {break;
                }//如果還有內容就添加一頁doc.Page = doc.AddPage();//根據ID添加內容并返回頁面上該內容對應的新IDdocID = doc.AddImageToChain(docID);
            }string filePath = AppDomain.CurrentDomain.BaseDirectory + "../../SaveFIle/" + DateTime.Now.ToString("yyyyMMddHHmmssfff") + ".pdf";

            doc.Save(filePath);

            doc.Clear();
            doc.Dispose();
        }private void button1_Click(object sender, EventArgs e)
        {
            ConvertToPDF();
        }
        
    }
View Code

看完了這篇文章,相信你對C#將HTML轉換為圖片或PDF的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

%d
AI

靖远县| 手游| 锦屏县| 富源县| 南郑县| 牟定县| 淳化县| 周口市| 景德镇市| 蒙城县| 白河县| 鄄城县| 曲阳县| 南江县| 乌拉特中旗| 沾益县| 孙吴县| 海晏县| 鄱阳县| 灵台县| 新沂市| 毕节市| 视频| 盐山县| 石泉县| 南华县| 杨浦区| 乌拉特前旗| 桐柏县| 甘南县| 阿巴嘎旗| 天台县| 大冶市| 雷州市| 永福县| 临清市| 长治市| 恭城| 涟源市| 卢龙县| 将乐县|