Roniu
Roniu

Reputation: 79

Can I return byte[] with GhostscriptProcessor?

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?

Upvotes: 2

Views: 1569

Answers (1)

HABJAN
HABJAN

Reputation: 9338

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;
            }
        }
    }
}

Upvotes: 4

Related Questions