C# ASP.NET MVC Create PDF from view Rotativa or iT

2019-09-18 09:18发布

I am very unfamiliar with generating PDF from multiple forms. In fact, I've never generated a PDF using any kind of programming language. Now I have been trying 2 different methods for what I want to do. Unfortunately after a few days I still haven't found out how to do this.

I have multiple forms with data pre-filled in those using 3 different lists, now I want to generate a PDF of this form and I have been using Rotativa for this. Unfortunately, once I call the method to generate the PDF, it generates a PDF of the view, but the data is missing. With iTextSharp I could have the data of 1 single list, not all of them, also I dont know if it is possible to save this PDF on the server using iTextSharp.

Q1: What method should I use? What do you suggest? using Rotativa or iTextSharp?

Q2: Is this doable for someone without much experience in programming or should I try to find another way? I

Q3: Am I still missing a way to do this? I would prefer a method without using 3rd party software.

2条回答
▲ chillily
2楼-- · 2019-09-18 09:58

public byte[] GetPDF(string pHTML) { byte[] bPDF = null;

MemoryStream ms = new MemoryStream();
TextReader txtReader = new StringReader(pHTML);

// 1: create object of a itextsharp document class
Document doc = new Document(PageSize.A4, 25, 25, 25, 25);

// 2: we create a itextsharp pdfwriter that listens to the document and directs a XML-stream to a file
PdfWriter oPdfWriter = PdfWriter.GetInstance(doc, ms);

// 3: we create a worker parse the document
HTMLWorker htmlWorker = new HTMLWorker(doc);

// 4: we open document and start the worker on the document
doc.Open();
htmlWorker.StartDocument();

// 5: parse the html into the document
htmlWorker.Parse(txtReader);

// 6: close the document and the worker
htmlWorker.EndDocument();
htmlWorker.Close();
doc.Close();

bPDF = ms.ToArray();

return bPDF;

}

查看更多
啃猪蹄的小仙女
3楼-- · 2019-09-18 10:02

Use ITextSharp its a .NET PDF library which allows you to generate PDF (Portable Document Format).

So first of all need to add reference of iTextSharp in your project.

You can get iTextSharp reference using package manager, you just need to execute following command to download and add reference.

PM> Install-Package iTextSharp

Now you need to create a method which will give you byte array of PDF content, so our code will be

查看更多
登录 后发表回答