谁能告诉我如何使用字节数组创建 PDF 文件?我尝试了这两种方法,但没有运气。
1) System.IO.File.WriteAllBytes(filePath, bytesArray);
2) using (System.IO.Stream stream = new System.IO.FileStream(filePath, System.IO.FileMode.Create))
{
stream.Write(bytesArray, 0, bytesArray.Length);
}
或者我需要使用任何 3rd 方组件来做同样的事情。
任何帮助将不胜感激......提前致谢。