Using iTextSharp 5.3.4.0, I'm having difficulty working with PdfStamper and MemoryStream.
The MemoryStream is always empty.
PdfReader pdfReader = new PdfReader(Server.MapPath(@"Document.pdf"));
MemoryStream memoryStream = new MemoryStream();
PdfStamper pdfStamper = PdfStamper.CreateSignature(pdfReader, memoryStream, '\0');
//...
pdfStamper.Writer.CloseStream = false;
pdfStamper.Close();
byte[] bt = memoryStream.GetBuffer(); //.ToArray()
pdfReader.Close();
Download Project (full source code)
How can I solve this problem? Thank you!
In Default.aspx.cs you do something relevant you left out in the code block of your question:
Whenever you call
PdfSignatureAppearance.PreClose,
you must also usePdfSignatureAppearance.Close,
notPdfStamper.Close,
cf. the method documentations:The reason is that when you create a
PdfStamper
usingCreateSignature(pdfReader, memoryStream, '\0'),
the stamper itself does not write to the memory stream but instead to an internalByteBuffer
(this is required for the eventual signature creation and integration). No sooner than duringPdfSignatureAppearance.Close
the content of thatByteBuffer
are written to the memory stream.Furthermore I see you using
Please don't! Unless you are sure that you are interpreting the buffer contents correctly (which may contain additional trash data), please use
instead.