This article is reprinted from the WeChat public account "Milo who loves to write bugs", the author is Milo. To reprint this article, please contact the WeChat public account of Milo who loves to write bugs. Hi, everyone. I am Milo. Recently, I encountered a problem in my project where I need to export HTML pages to PDF files. Now I share the relevant content and hope to help partners in need. Demand scenarioIn the bidding software, after each bidding section is completed, a bid evaluation report will be generated. The bid evaluation report mainly includes project information, bid section information, bidder information, bidder quotation, bid evaluation expert scoring, etc. Relatively speaking, the amount of information is relatively large. What should we do if we want to export the bid evaluation report?
Comparing the two methods, it is obvious that the first method is superior. It is easy to implement and avoids the embarrassment of changing the export function code due to page changes. Solution ResearchAfter consulting some information, the popular solutions on the market are mainly the following
The first two are backend implementations, and the third is a pure frontend implementation; First let's take a look at wkhtmltopdf From github, we can see that wkhtmltopdf has 11.1K stars, which shows how popular it is. After testing, I found that it has the best effect. However, since our project uses vue, it seems that it does not support vue syntax. So I had to settle for the second best and use other technologies to achieve it. Next, let's take a look at the html2canvas+jsPDF method This method is implemented by using the above two open source projects. It is called a roundabout way to save the country on the Internet. First, we use html2canvas to save the HTML webpage as a canvas image, and then we use jsPDF to generate a PDF file from the canvas image. So the PDF file we finally get is not a real PDF file, but a picture. This also makes it impossible for us to edit the PDF file. And the quality is also average. Finally, let's take a look at iText itext7 seems to be the latest version. This method is suitable for maintaining PDF templates and then dynamically adding content. Friends in need can learn about it. Since our project front-end uses Vue, after testing, I found that wkhtmltopdf does not seem to support Vue syntax. It may also be that I use it improperly. Welcome to correct me. Moreover, itext7 is more used in scenarios where PDF templates need to be maintained, which is not suitable for my needs this time. So I finally use html2canvas+jsPDF to achieve it. Real-life exampleshtml2canvas+jsPDF Now, let's take a look at the implementation of html2canvas+jsPDF First, you need to import the dependency files of html2canvas and jsPDF. You can download them from the official website. I will also put a copy in the resource package at the end of the article for your convenience.
Since this method is purely front-end implementation, if we want to save a copy of the PDF to the server, we need to manually upload the file to the server. wkhtmltopdf Next, let's take a look at how wkhtmltopdf is implemented. If we want to use wkhtmltopdf, we need to install the official software, which you can download from its official website. https://wkhtmltopdf.org/downloads.html After the installation is complete, we need to configure the installation path in our tool class.
Let's take a look at how to use it. We need to concatenate the paths of the pages we exported and pass them in as parameters.
I put the tool classes WKHtmlToPdfUtil and FileUtils in the resource package. You can download them by yourself. There are too many of them, so I won’t paste them one by one. Next, let's take a look at the effect of exporting my CSDN homepage, which is still great. summaryThis article mainly introduces how to export HTML pages to PDF files. I hope to give some ideas to friends who encounter similar needs. If you haven’t encountered it, you can also collect it. It may be useful in the future. Since there are a lot of codes designed in this article, I will package and upload them to csdn, and you can download them by yourself |
<<: Microsoft: Open RAN is crucial to network cloudification and the two will eventually merge
>>: Node.js knowledge - How to set cookie information in HTTP request and response
Recently, a piece of news about the slowdown of d...
background It's the 11.11 promotion day again...
[51CTO.com original article] On the second day of...
Yunbase is a Chinese hosting company. The domain ...
At the end of October, the three major operators ...
As technology continues to evolve, SD-WAN (wide-a...
Hello everyone, I am Bernie, an IT pre-sales engi...
IoT wireless connectivity networks are booming to...
Enterprises looking to launch and expand IoT appl...
GreenCloudVPS recently launched its 9th anniversa...
The government envisions making India a $5 trilli...
Recently, the three major operators completed the...
Wi-Fi 6 has made significant progress compared to...
The story of how home networks are as slow as a s...
The Year of the Rooster has arrived! Good luck to...