我正在尝试使用以下代码编写一种加密现有pdf并将加密的pdf写入内存流的方法:
public byte[] ProtectPdfStreamWithPassword(
string filePath,
string password)
{
using (var outStream = new MemoryStream())
{
using (var reader = new PdfReader(filePath))
{
using (var stamper = new PdfStamper(reader, outStream))
{
var passwordBytes =
Encoding.ASCII.GetBytes(password);
stamper.SetEncryption(
passwordBytes,
passwordBytes,
PdfWriter.AllowPrinting,
PdfWriter.ENCRYPTION_AES_256);
return outStream.ToArray();
}
}
}
}
我遵循我在网上其他地方使用过的相同模式,但是我遇到了一个问题,即写入的MemoryStream只有15个字节写入它,当传递给PdfReader的文件大约有8Kb时。我在使用FileStreams时没有遇到过这个问题,但如果可能的话,我更喜欢在这里使用MemoryStreams。任何帮助将不胜感激。
答案 0 :(得分:2)
好的,我的问题是使用块从PdfStamper中返回MemoryStream字节。必须有一个隐含的Flush正在发生,因为我过早地返回了字节。我将我的代码重构为以下代码:
public byte[] ProtectPdfStreamWithPassword(
string filePath,
string password)
{
using (var outStream = new MemoryStream())
{
using (var reader = new PdfReader(filePath))
{
using (var stamper = new PdfStamper(reader, outStream))
{
var passwordBytes =
Encoding.ASCII.GetBytes(password);
stamper.SetEncryption(
passwordBytes,
passwordBytes,
PdfWriter.AllowPrinting,
PdfWriter.ENCRYPTION_AES_256);
}
}
return outStream.ToArray();
}
}