C#怎么将 HTML转换为图片或 PDF?


当前第2页 返回上一页

然后把图片转换为PDF,这里需要用到 iTextSharp.dll 这个组件。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

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。不过,这个是收费的。。。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

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?的详细内容!

返回前面的内容

相关阅读 >>

c#编写windows服务程序的图文详解

详细介绍.net中的性能改进

c#接口的问题的解决办法详解

c#中foreach实例代码

c#如何生成二维码的示例分享

c#如何计算传入的时间距离今天的时间差的实例分享

c#中foreach与yield的实例详解

.net+easyui系列--搜索框

详细分析.net?core?以及与?.net?framework的关系(图)

.net是干嘛的和java的区别

更多相关阅读请进入《csharp》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...

    正在狠努力加载,请稍候...