2

Is it possible to return byte[] using the GhostscriptProcessor? For example:

public static byte[] ConvertToPDFA(byte[] pdfData)
{
  GhostscriptProcessor gsproc = new GhostscriptProcessor(Properties.Resources.gsdll32);

  //return byte[] from the created PDF/A

The method StartProcessing is a void method, but is there any alternative thet can create a PDF/A from a PDF File and return a byte[] from its content?

Roniu
  • 79
  • 10

1 Answers1

3

It's possible:

public class PipedOutputSample
{
    public void Start()
    {
        string inputFile = @"E:\gss_test\test_postscript.ps";

        GhostscriptPipedOutput gsPipedOutput = new GhostscriptPipedOutput();

        // pipe handle format: %handle%hexvalue
        string outputPipeHandle = "%handle%" + int.Parse(gsPipedOutput.ClientHandle).ToString("X2");

        using (GhostscriptProcessor processor = new GhostscriptProcessor())
        {
            List<string> switches = new List<string>();
            switches.Add("-empty");
            switches.Add("-dQUIET");
            switches.Add("-dSAFER");
            switches.Add("-dBATCH");
            switches.Add("-dNOPAUSE");
            switches.Add("-dNOPROMPT");
            switches.Add("-sDEVICE=pdfwrite");
            switches.Add("-o" + outputPipeHandle);
            switches.Add("-q");
            switches.Add("-f");
            switches.Add(inputFile);

            try
            {
                processor.StartProcessing(switches.ToArray(), null);

                byte[] rawDocumentData = gsPipedOutput.Data;

                //if (writeToDatabase)
                //{
                //    Database.ExecSP("add_document", rawDocumentData);
                //}
                //else if (writeToDisk)
                //{
                //    File.WriteAllBytes(@"E:\gss_test\output\test_piped_output.pdf", rawDocumentData);
                //}
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
            finally
            {
                gsPipedOutput.Dispose();
                gsPipedOutput = null;
            }
        }
    }
}
HABJAN
  • 9,212
  • 3
  • 35
  • 59
  • What's the difference between **processor.Process** and **processor.StartProcessing**? I want to verify that the later is asynchronous, which would not work for my particular results. –  Dec 24 '15 at 16:30
  • 1
    StartProcessing runs in a separate thread, you can call StopProcessing at any time. – HABJAN Dec 29 '15 at 09:44