Post Made Community Wiki by Community
show/hide this revision's text 2

I've used ITextSharp to create PDF's from .net. It is the .net port of the open source IText. It has the capability to create the PDF from scratch. But doing that would require formatting the entire document. Instead I created a PDF Form, then filled in the fields of the form using a small class. The most difficult time I has had was figuring out how to get the the filled in form into the actual memory stream. The work of the class if is in the following function. I can give more details if someone wants them. The sourceforge url is: http://sourceforge.net/projects/itextsharp/

  Public Function GeneratePDF() As IO.MemoryStream  
        Dim pdfTemplate As PdfReader  
        Dim stamper As PdfStamper  
        Dim tempPDF As PdfReader
        Dim doc As Document
        Dim msTemp As MemoryStream
        Dim pCopy As PdfCopy
        Dim msOutput As New MemoryStream

        pdfTemplate = New PdfReader(m_FormName)

        doc = New Document
        pCopy = New PdfCopy(doc, msOutput)
        doc.Open()

        For Each pg As FormPage In FormPages
            msTemp = New IO.MemoryStream
            pdfTemplate = New PdfReader(m_FormName)

            stamper = New PdfStamper(pdfTemplate, msTemp)

            For Each fld As FormField In pg.Fields
                stamper.AcroFields.SetField(fld.fieldName, fld.fieldValue)
            Next
            stamper.FormFlattening = True
            stamper.Close()
            tempPDF = New PdfReader(msTemp.ToArray)
            pCopy.AddPage(pCopy.GetImportedPage(tempPDF, pdfTemplate.NumberOfPages))
            pCopy.FreeReader(tempPDF)
        Next
        doc.Close()
        Return msOutput
    End Function
show/hide this revision's text 1

I've used ITextSharp to create PDF's from .net. It is the .net port of the open source IText. It has the capability to create the PDF from scratch. But doing that would require formatting the entire document. Instead I created a PDF Form, then filled in the fields of the form using a small class. The most difficult time I has was figuring out how to get the the filled in form into the actual memory stream. The work of the class if in the following function. I can give more details if someone wants them. The sourceforge url is: http://sourceforge.net/projects/itextsharp/

  Public Function GeneratePDF() As IO.MemoryStream  
        Dim pdfTemplate As PdfReader  
        Dim stamper As PdfStamper  
        Dim tempPDF As PdfReader
        Dim doc As Document
        Dim msTemp As MemoryStream
        Dim pCopy As PdfCopy
        Dim msOutput As New MemoryStream

        pdfTemplate = New PdfReader(m_FormName)

        doc = New Document
        pCopy = New PdfCopy(doc, msOutput)
        doc.Open()

        For Each pg As FormPage In FormPages
            msTemp = New IO.MemoryStream
            pdfTemplate = New PdfReader(m_FormName)

            stamper = New PdfStamper(pdfTemplate, msTemp)

            For Each fld As FormField In pg.Fields
                stamper.AcroFields.SetField(fld.fieldName, fld.fieldValue)
            Next
            stamper.FormFlattening = True
            stamper.Close()
            tempPDF = New PdfReader(msTemp.ToArray)
            pCopy.AddPage(pCopy.GetImportedPage(tempPDF, pdfTemplate.NumberOfPages))
            pCopy.FreeReader(tempPDF)
        Next
        doc.Close()
        Return msOutput
    End Function