You can add attachments to a PDF document from a file using the PdfDocumentCreateAttachmentFromFile methods or from a stream using the PdfDocumentCreateAttachmentFromStream methods. The attachments can be represented in PDF pages by an icon or they can be created without an icon.
In this demo you can learn how to attach external files and streams to a PDF document. When you create the attachment you can also give a page and a location in page where to create a link to the attachment marked with an icon.
The demo also creates a link to an external file from disk. The file path is relative to the PDF document location. When the link is clicked the file will be opened in an external viewer.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Hosting;
using HiQPdf;
namespace HiQPdf_Demo.Controllers
{
public class AttachmentsAndFileLinksController : Controller
{
IHostingEnvironment m_hostingEnvironment;
public AttachmentsAndFileLinksController(IHostingEnvironment hostingEnvironment)
{
m_hostingEnvironment = hostingEnvironment;
}
// GET: AttachmentsAndFileLinks
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult CreatePdf(IFormCollection collection)
{
// create a PDF document
PdfDocument document = new PdfDocument();
// set a demo serial number
document.SerialNumber = "YCgJMTAE-BiwJAhIB-EhlWTlBA-UEBRQFBA-U1FOUVJO-WVlZWQ==";
// display the attachments when the document is opened
document.Viewer.PageMode = PdfPageMode.Attachments;
// create a page in document
PdfPage page1 = document.AddPage();
// create the true type fonts that can be used in document
System.Drawing.Font sysFont = new System.Drawing.Font("Times New Roman", 10, System.Drawing.GraphicsUnit.Point);
PdfFont pdfFont = document.CreateFont(sysFont);
PdfFont pdfFontEmbed = document.CreateFont(sysFont, true);
// create a reference Graphics used for measuring
System.Drawing.Bitmap refBmp = new System.Drawing.Bitmap(1, 1);
System.Drawing.Graphics refGraphics = System.Drawing.Graphics.FromImage(refBmp);
refGraphics.PageUnit = System.Drawing.GraphicsUnit.Point;
// create an attachment with icon from file
string filePath1 = m_hostingEnvironment.ContentRootPath + @"\wwwroot" + @"\DemoFiles\Attach\TextAttach1.txt";
PdfAttachment pdfAttachment1 = document.CreateAttachmentFromFile(page1, new System.Drawing.RectangleF(10, 30, 10, 20),
PdfAttachIconType.PushPin, filePath1);
pdfAttachment1.Description = "Attachment with icon from a file";
// write a description at the right of the icon
PdfText pdfAttachment1Descr = new PdfText(40, 35, pdfAttachment1.Description, pdfFontEmbed);
page1.Layout(pdfAttachment1Descr);
// create an attachment with icon from a stream
// The stream must remain opened until the document is saved
System.IO.FileStream fileStream2 = new System.IO.FileStream(filePath1, System.IO.FileMode.Open, System.IO.FileAccess.Read);
PdfAttachment pdfAttachment2 = document.CreateAttachmentFromStream(page1, new System.Drawing.RectangleF(10, 60, 10, 20),
PdfAttachIconType.Paperclip, fileStream2, "AttachFromStream_WithIcon.txt");
pdfAttachment2.Description = "Attachment with icon from a stream";
// write a description at the right of the icon
PdfText pdfAttachment2Descr = new PdfText(40, 65, pdfAttachment2.Description, pdfFontEmbed);
page1.Layout(pdfAttachment2Descr);
// create an attachment without icon in PDF from a file
string filePath2 = m_hostingEnvironment.ContentRootPath + @"\wwwroot" + @"\DemoFiles\Attach\TextAttach2.txt";
document.CreateAttachmentFromFile(filePath2);
// create an attachment without icon in PDF from a stream
// The stream must remain opened until the document is saved
System.IO.FileStream fileStream1 = new System.IO.FileStream(filePath2, System.IO.FileMode.Open, System.IO.FileAccess.Read);
document.CreateAttachmentFromStream(fileStream1, "AttachFromStream_NoIcon.txt");
// dispose the graphics used for measuring
refGraphics.Dispose();
refBmp.Dispose();
try
{
// write the PDF document to a memory buffer
byte[] pdfBuffer = document.WriteToMemory();
FileResult fileResult = new FileContentResult(pdfBuffer, "application/pdf");
fileResult.FileDownloadName = "PdfAttachments.pdf";
return fileResult;
}
finally
{
document.Close();
fileStream1.Close();
}
}
}
}