是否可以使用 GhostscriptProcessor 返回 byte[]?例如:
public static byte[] ConvertToPDFA(byte[] pdfData)
{
GhostscriptProcessor gsproc = new GhostscriptProcessor(Properties.Resources.gsdll32);
//return byte[] from the created PDF/A
StartProcessing 方法是一个 void 方法,但是有没有其他方法可以从 PDF 文件创建 PDF/A 并从其内容中返回一个 byte[]?