Click here to Skip to main content
15,889,834 members
Articles / Web Development / ASP.NET

Rotativa, How to Print PDF in ASP.NET MVC

Rate me:
Please Sign up or sign in to vote.
4.98/5 (32 votes)
9 Feb 2017CPOL3 min read 192.1K   32   37
Print PDF in ASP.NET MVC

Creating PDF docs in ASP.NET MVC is a fairly common functionality requested by LOB applications. Usually either for reporting or, more often, for having printable friendly documents (invoices, receipts, etc.).

I used to design a Crystal Report document and then evaluate it and convert it to PDF in the web application. The design part was OK but what really bothered me were the problems that often came up with deploying it. Version mismatches could really turn it into a nightmare.

Lately, I came up using the excellent wkhtmltopdf tool to convert HTML content to PDF. It uses the WebKit engine (used by Chrome and Safari) to render HTML. The nice thing about it is that I can leverage my knowledge of HTML and CSS to obtain a good looking PDF and also it's quite fast.

It's an EXE file not a DLL library (a DLL actually exists but it's not managed code and it has some problems related to usage in a multi-threaded app). It has to be executed from the ASP.NET app spawning a process, so it requires some unusual coding from a web development perspective. Another downside is that it requires some work to set it up: copying EXE and DLL files in the web app solution, make sure they get copied over when building and publishing and some config stuff needed to make it access authenticated actions.

It seemed to me a perfect candidate to become a Nuget package. It was fairly easy to build it, except some quirks when trying to modify package properties.

I've named it Rotativa /rota'tiva/, which is Italian for rotary printing press. With Rotativa, all it takes to print a PDF is:

Install-Package Rotativa
C#
public ActionResult Invoice(int invoiceId)
{
    var invoiceViewModel;
    // code to retrieve data from a database
    return View(invoiceViewModel);
}

Nothing special here, just an action. Perhaps the view used will have a different master page (or layout page) than the other views of the web app (or you’ll define a separate CSS for the print media, see http://www.w3.org/TR/CSS2/media.html). You can test and “preview” the results just using the browser, since we are working with a regular action, returning a HTML result.

C#
public ActionResult PrintInvoice(int invoiceId)
{
  return new ActionAsPdf(
                 "Invoice", 
                 new { invoiceId= invoiceId }) 
                 { FileName = "Invoice.pdf" };
}
  1. Install using the Nuget package manager (search for Rotativa) or, more conveniently, with the package manager console, typing:
  2. Writing a controller action to return a view representing the desired PDF output. This means just coding as usual to serve the data as regular MVC action. Such as:
  3. When the HTML is OK, you can just setup a special action returning a custom ActionResult: ActionAsPdf. The code will look like this:

ActionAsPdf requires a string parameter with the name of the action to be converted to PDF. It can accept a parameter with other route data, in this case we are defining the invoiceId parameter. You can specify the name of the file being returned using the FIleName property.

To link to the PDF file in other views, you just have to insert a regular link to the PrintInvoice action. Something like:

C#
@Html.ActionLink("PrintInvoice")

if you’re working with razor views.

And voila, that’s all and it just works, even if the printed action is protected with forms authentication.

Source code is on GitHub at https://github.com/webgio/Rotativa.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Italy Italy
Software architect. At present working on C# development, with mainly Asp.net Ajax and MVC user inteface. Particularly interested in OOP, test driven, agile development.

Comments and Discussions

 
QuestionReturn PDF only? Pin
CodedogBilly11-Apr-13 12:25
CodedogBilly11-Apr-13 12:25 
AnswerRe: Return PDF only? Pin
Giorgio Bozio11-Apr-13 23:11
Giorgio Bozio11-Apr-13 23:11 
GeneralRe: Return PDF only? Pin
CodedogBilly12-Apr-13 5:45
CodedogBilly12-Apr-13 5:45 
GeneralRe: Return PDF only? Pin
CodedogBilly12-Apr-13 6:12
CodedogBilly12-Apr-13 6:12 
Questiongr8 solution to something i think the framework should have Pin
Usha Pini3-Apr-13 0:56
Usha Pini3-Apr-13 0:56 
AnswerRe: gr8 solution to something i think the framework should have Pin
Giorgio Bozio11-Apr-13 23:08
Giorgio Bozio11-Apr-13 23:08 
GeneralMy vote of 5 Pin
Ankhara9-Jan-13 10:33
Ankhara9-Jan-13 10:33 
QuestionGreat Work! Pin
zyck24-Feb-12 15:51
zyck24-Feb-12 15:51 
5up!
GeneralMy vote of 5 Pin
William John Adam Trindade24-Feb-12 7:21
William John Adam Trindade24-Feb-12 7:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.