Sample Code C#
using System; using System.Web.Mvc; using SelectPdf.Samples.Models; namespace SelectPdf.Samples.Controllers { public class PdfCompressionController : Controller { // GET: PdfCompression public ActionResult Index() { return View(); } [HttpPost] public ActionResult SubmitAction(FormCollection collection) { // create a new pdf document PdfDocument doc = new PdfDocument(); doc.Margins = new PdfMargins(20, 20, 20, 20); // set compression level doc.CompressionLevel = (PdfCompressionLevel)Enum.Parse( typeof(PdfCompressionLevel), collection["DdlPdfCompressionLevel"], true); // create a new pdf font PdfFont font = doc.AddFont(PdfStandardFont.Helvetica); font.Size = 16; // add a new page to the document PdfPage page = doc.AddPage(); // create a new text element and add it to the page PdfTextElement text = new PdfTextElement(0, 0, Helper.SomeVeryLongText(), font); page.Add(text); // save pdf document byte[] pdf = doc.Save(); // close pdf document doc.Close(); // return resulted pdf document FileResult fileResult = new FileContentResult(pdf, "application/pdf"); fileResult.FileDownloadName = "Document.pdf"; return fileResult; } } }