C#使用wkhtmltopdf将网页存为pdf或图片

首先下载安装

官网下载地址:https://wkhtmltopdf.org/downloads.html

安装好了之后,可以打开cmd黑框进行操作

(1)cd 到你安装文件夹里面

(2)然后使用exe命令

wkhtmltopdf https://www.baidu.com C:/temp/32.pdf
wkhtmltoimage https://www.baidu.com C:\temp\3.png
 
 
 
wkhtmltoimage http://www.winwin7.com/soft/12808.html C:\temp\249.png
wkhtmltoimage --quality 60 http://www.winwin7.com/soft/12808.html C:\temp\49.png

这样就能在某个文件夹里面生成你想要的网站图片或者pdf , 好方便。

下面做一个C#的控制台程序:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
 
namespace HtmlToPDF
{
    class Program
    {
        static void Main(string[] args)
        {
            System.Diagnostics.Process p = new System.Diagnostics.Process();
            p.StartInfo.FileName = "cmd.exe";
            p.StartInfo.UseShellExecute = false;    //是否使用操作系统shell启动
            p.StartInfo.RedirectStandardInput = true;//接受来自调用程序的输入信息
            p.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息
            p.StartInfo.RedirectStandardError = true;//重定向标准错误输出
            p.StartInfo.CreateNoWindow = true;//不显示程序窗口
            p.Start();//启动程序
 
            //向cmd窗口发送输入信息
            string str = "cd C:\\Program Files\\wkhtmltopdf\\bin";
            p.StandardInput.WriteLine(str);
 

            string str2 = string.Format("wkhtmltopdf https://www.baidu.com C:/temp/{0}.pdf", Guid.NewGuid().ToString());
            p.StandardInput.WriteLine(str2);

string str2_1 = string.Format("wkhtmltopdf.exe  --minimum-font-size 20 https://www.baidu.com C:/temp/{0}.pdf", Guid.NewGuid().ToString()); p.StandardInput.WriteLine(str2_1);

string str3 = string.Format("wkhtmltoimage https://www.baidu.com C:/temp/{0}.png", Guid.NewGuid().ToString()); p.StandardInput.WriteLine(str3 + "&exit"); p.StandardInput.AutoFlush = true; //向标准输入写入要执行的命令。这里使用&是批处理命令的符号,表示前面一个命令不管是否执行成功都执行后面(exit)命令,如果不执行exit命令,后面调用ReadToEnd()方法会假死 //同类的符号还有&&和||前者表示必须前一个命令执行成功才会执行后面的命令,后者表示必须前一个命令执行失败才会执行后面的命令 //获取cmd窗口的输出信息 string output = p.StandardOutput.ReadToEnd(); p.WaitForExit();//等待程序执行完退出进程 p.Close(); Console.WriteLine(output); } } }

 

上面的代码其实就是用C#调用cmd命令行。

如果你不想看到黑色框闪现,可以把在visual studio的里面 , 鼠标右键   项目-->属性-->输出类型

改为windows 应用程序 (不要原本的控制台)

参考自1:https://blog.csdn.net/MFCdestoryer/article/details/123556104

参考自2:https://blog.csdn.net/churujianghu/article/details/75076255

posted @ 2022-06-24 10:18  点滴一言  阅读(595)  评论(0)    收藏  举报