Hi,
I'm using PDFClass for convert html to pdf and works great but I've a new challenger, convert RTF files to PDF.
Has DynamicWeb some tool for solve this problem?
the code:
public void CreatePDF(string url)
{
Dynamicweb.PDFClass pdf = new Dynamicweb.PDFClass(url);
pdf.HttpStream("testing.pdf");
pdf.Dispose();
}
public void CreatePDF(byte[] file)
{
Dynamicweb.PDFClass pdf = new Dynamicweb.PDFClass();
pdf.HttpStream(file,"testing.pdf");
pdf.Dispose();
}
Thank you for your support.