Hi Alejandro,
Try with this:
Cheers,
Josip
Try with this:
private List<string> GetArgs()
{
List<string> args = new List<string>();
args.Add("-empty"); // this one will not be used but it must be here
args.Add("-sDEVICE=pnggray");
args.Add(@"-oE:\gss_test\test.png");
args.Add("-f");
args.Add(@"E:\gss_test\test.pdf");
return args;
}
Make sure the full path is specified for both input and output file and the first switch is a dummy switch.Cheers,
Josip