C#3.0使用MemoryStream将itextsharp pdf保存到数据库

时间:2009-09-03 15:34:09

标签: c# pdf itextsharp memorystream

我正在尝试将数据保存到数据集中,这是由itextsharp生成的pdf文件。但是,到目前为止我还没有成功。

我正在使用Linq来实现sql。

以下是代码:

            MemoryStream ms = new MemoryStream();
            Document d = new Document(PageSize.A4, 60, 60, 40, 40);
            PdfWriter w = PdfWriter.GetInstance(d, ms);
            w.CloseStream = false;

            string txtTemplate = "";
            Encoding en = Encoding.GetEncoding("iso-8859-1");
            StreamReader sr = new StreamReader(HttpContext.Current.Server.MapPath("~/Content/templates/CessaoDireitosDica.txt"), en);
            txtTemplate  = sr.ReadToEnd();
            sr.Close();
            string conselhos = "";

            Font font = new Font(Font.HELVETICA, 11, Font.NORMAL);
            font.SetColor(0xC6, 0xC6, 0xC6);

            Paragraph txtBody = new Paragraph(txtTemplate, font);

            txtBody .SetAlignment(ElementTags.ALIGN_JUSTIFIED);

            d.Open();
            d.Add(txtBody);
            d.Close();

            byte[] pdfDone = ms.ToArray();
            w.Flush();
            ms.Flush();
            ms.Close();

            return pdfDone;

它不会抛出任何错误,但它不会在DB中保存任何内容。 DB字段是“图像”字段类型。 我也使用这段代码动态渲染pdf(我切断了byte [] pdfDone ...并返回MemoryStream)。

我不知道会出现什么问题......在调试时,我还可以看到byte [] pdfDone有一个值(类似于3487),但没有任何内容保存到DB。

提前致谢!

1 个答案:

答案 0 :(得分:5)

function byte[] CreatePdf(){
            byte[] result;
            using (MemoryStream ms = new MemoryStream())
            {
                Document pDoc = new Document(PageSize.A4, 0, 0, 0, 0);
                PdfWriter writer = PdfWriter.GetInstance(pDoc, ms);
                pDoc.Open();

                //here you can create your own pdf.

                pDoc.Close();
                result = ms.GetBuffer();
            }

            return result;
}