Truetype fonts in version 8.1 are not getting embedded into the output document. With version 5.0 it worked fine. Below is the code we are using:
///
/// Converts a Word document to PDF.
///
/// The source document to
/// be converted.
/// A stream to which
/// the pdf file will be written.
public override void ToPdf( Stream source, Stream target )
{
var d = new Document( source );
d.Save( target, SaveFormat.Pdf );
}