How would ya\'ll recommend that I convert a FlowDocument to PDF to be attached to an EMail?
The FlowDocument is dynamic, not static.
I would prefer to be able to
Disclaimer: I am writer of XamlToPDF Library, however it is free for any type of use.
http://xamltopdf.codeplex.com/
Its very easy to create PDF, it supports Tables and images as well.
I managed to get this working with the PDFCreator printer driver. You need to install the driver for this to work, so it may not be an ideal solution for some people. There is a COM interface available. The code more or less looks something like this:
PDFCreator.clsPDFCreator _PDFCreator;
PDFCreator.clsPDFCreatorError pErr;
if (_PDFCreator.cStart(parameters, false))
{
_PDFCreator.cClearCache();
_PDFCreator.set_cOption("UseAutosave", 1);
_PDFCreator.cPrinterStop = false;
}
_PDFCreator.set_cOption("AutosaveFilename", file);
_PDFCreator.set_cOption("AutosaveDirectory", folder);
PrintDialog printDialog = new PrintDialog();
printDialog.PrintDocument(((IDocumentPaginatorSource)flowDoc).DocumentPaginator, "Report");
You have two options that I know of.
The first is to use a proprietary library called NiPDF, alternatively you can use Word Interop.
You can find further info here
Another option to look at is FlowDocumentConverter. This is available in a NuGet package, but per documentation does have a 10 page limitation.
I am assuming you want this to occur programmatically rather than as a manual process.
Method 1: Install a PDF driver such as Amyuni or PrimoPDF. Print your FlowDocument with the desired PrintTicket / page size, to the print driver. The PDF you get from it should be a fairly good conversion. Some of these drivers (such as Amyuni) have SDKs that you can control this process programmatically.
Method 2: Print to XPS programmatically using an XPS driver without a Save As dialog; there's a sample for this in the Windows DDK you can build yourself fairly easily. Then use an XPS to PDF converter such as NiXPS or the Adobe SDK (so expensive I won't post a link) or GhostXPS to convert the XPS directly to PDF.
Method 3: Convert the flow document directly into XPS using methods like This one and then use an XPS to PDF converter such as the ones mentioned above.
Disclaimer: I don't work for any of these companies or their competitors. I've used the Adobe SDK, the Amyuni printer, and various XPS tricks with fairly good success. No method will convert with 100% accuracy.
You might want to consider the product called "Report Writer for .NET" by Seberix (http://www.siberix.com/). Its API is similar to the code behind in FlowDocument which I think is you want want when you said "dynamic, not static". (But I'm sure there are differences as well. Devils are in the details).
Once a Siberix.Report.Report object has been created,
Siberix.Report.Report report = CreateMyPdfReport(); //You write this
Stream stream = new MemoryStream();
report.Publish(stream, Siberix.Report.FileFormat.PDF);
byte[] bytes = stream.ToArray();
Now bytes can be saved to a database table or whatever.