Example #1
0
        public void StartProcessing(GhostscriptDevice device, GhostscriptStdIO stdIO_callback)
        {
            if (device == null)
            {
                throw new ArgumentNullException("device");
            }

            this.StartProcessing(device.GetSwitches(), stdIO_callback);
        }
        public void StartProcessing(GhostscriptDevice device, GhostscriptStdIO stdIO_callback)
        {
            if (device == null)
            {
                throw new ArgumentNullException("device");
            }

            this.StartProcessing(device.GetSwitches(), stdIO_callback);
        }
 public void Process(GhostscriptDevice device, GhostscriptStdIO stdIO_callback)
 {
     this.StartProcessing(device, stdIO_callback);
 }
 public void Process(GhostscriptDevice device)
 {
     this.Process(device, null);
 }
Example #5
0
 public void Process(GhostscriptDevice device, GhostscriptStdIO stdIO_callback)
 {
     this.StartProcessing(device, stdIO_callback);
 }
Example #6
0
 public void Process(GhostscriptDevice device)
 {
     this.Process(device, null);
 }