Ghostscript 导出 PNG 但裁掉了一半的横向页面

Ghostscript exports PNG but cuts half of the landscape page

我正在尝试使用 Ghostscript 将 pdf 转换为图片。我有一个横向 A3 PDF,但无论我做什么,我只得到每一页的左半部分。我尝试添加 -dPDFFitPage-dFIXEDMEDIA 和其他参数,但它似乎没有改变任何东西..

我的代码没有额外的自定义开关 (C#):

var r=new GhotsScriptRasterizer();
r.open(pdfPath);
var pdf2png=r.GetPage(300,300,1);
pdf2png.Save(savePath);

我正在使用 Ghostscript 8.64 32 位。

感谢您的评论。这真的是版本 - GS 9.26 32Bit 对我有用。谢谢!