Hi,
We are currentlly using the word docs as templates and over the runtime we are getting the memory streams using the aspose.words and creating the combined pdf.
Sample code is :
private MemoryStream ConcatenateDocs(MemoryStream inDocMS, Document inDoc, string sender)
{
//Response.Write("In Concat Docs: " + DateTime.Now.ToString() + "\n ");
MemoryStream inDocMS1 = new MemoryStream();
inDoc.Save(inDocMS1, SaveFormat.AsposePdf);
Pdf inPdf = new Pdf();
inPdf.BindXML(inDocMS1, null);
inPdf.IsImagesInXmlDeleteNeeded = true;
inPdf.IsTruetypeFontMapCached = true;
inPdf.TruetypeFontMapPath = System.IO.Path.GetTempPath();
MemoryStream inDocMS2 = new MemoryStream();
inPdf.Save(inDocMS2);
if (sender == "visit" || sender == "list")
{
inDocMS2 = RemoveFirstPage(inDocMS2);
}
PdfFileEditor inEditor = new PdfFileEditor();
inEditor.Concatenate(inDocMS, inDocMS2, inDocMS);
inDocMS1.Close();
inDocMS2.Close();
//Response.Write("Out Concat Docs: " + DateTime.Now.ToString() + "\n ");
return inDocMS;
}
Now we are evaluating the latest version of aspose and planing to get rid of word docs as templates and planing to have the pdf as templates.
We want to use 4 or 5 pdf templates and runtime we want to combine them and want to save it as a single pdf file.
Over the runtime we need the following:
1. replace formfieds
2. import data from datatable.
3. include some static data (exists in a pdf templates)
Can you please help me in this so that we can plan to purchase the latest version of aspose also suggest us do we need to purchase the whole suite or indivisuals.
Thanks,
Sheshi
Email:SSheri@carescout.com