GhostScript路径输出/输入错误

时间:2016-02-15 12:44:21

标签: c# pdf ghostscript ghostscript.net ghostscriptsharp

我使用GS 32位和C#的包装器。

此行有效:

Regex.Replace(input string, @"(([^\s]+)\s+)", "$2");

但这条线不起作用

GhostscriptSharp.GhostscriptWrapper.GeneratePageThumb("a.pdf" , "a.jpg", 1, 100, 100, 50, 50);

GS如何处理输入/输出路径?

1 个答案:

答案 0 :(得分:0)

绝对路径有点问题。我通过使用相对路径解决了我的问题。

GhostscriptSharp.GhostscriptWrapper.GeneratePageThumb("a.pdf" , "thumbs/a.jpg", 1, 100, 100, 50, 50);