我使用GS 32位和C#的包装器。
此行有效:
Regex.Replace(input string, @"(([^\s]+)\s+)", "$2");
但这条线不起作用
GhostscriptSharp.GhostscriptWrapper.GeneratePageThumb("a.pdf" , "a.jpg", 1, 100, 100, 50, 50);
GS如何处理输入/输出路径?
答案 0 :(得分:0)
绝对路径有点问题。我通过使用相对路径解决了我的问题。
GhostscriptSharp.GhostscriptWrapper.GeneratePageThumb("a.pdf" , "thumbs/a.jpg", 1, 100, 100, 50, 50);