2

我正在尝试将两个PostScript文件合并为一个,ghost4j 0.5.0如下所示:

final PSDocument[] psDocuments = new PSDocument[2];
psDocuments[0] = new PSDocument();
psDocuments[0].load("1.ps");
psDocuments[1] = new PSDocument();
psDocuments[1].load("2.ps");
psDocuments[0].append(psDocuments[1]);
psDocuments[0].write("3.ps");

在这个简化的过程中,我收到了上面“附加”行的以下异常消息:

org.ghost4j.document.DocumentException: java.lang.ClassCastException:   
org.apache.xmlgraphics.ps.dsc.events.UnparsedDSCComment cannot be cast to 
org.apache.xmlgraphics.ps.dsc.events.DSCCommentPage

到目前为止,我还没有找出这里的问题 - 也许是 PostScript 文件中的某种问题?

因此,我们将不胜感激。

编辑:

我用 ghostScript 命令行工具进行了测试:

gswin32.exe -dQUIET -dBATCH -dNOPAUSE -sDEVICE=pswrite -sOutputFile="test.ps" --filename "1.ps" "2.ps"

这会产生一个文档,其中 1.ps 和 2.ps 合并到一个(!)页面(即覆盖)。删除 --filename 后,生成的文档将是预期的具有两页的 PostScript。

4

2 回答 2

1

我认为文档或 XMLGraphics 库中有问题,因为它似乎无法解析其中的一部分。

在这里,您可以在 ghost4j 中看到我认为它失败的代码(链接):

    DSCParser parser = new DSCParser(bais);
    Object tP = parser.nextDSCComment(DSCConstants.PAGES);
    while (tP instanceof DSCAtend)
        tP = parser.nextDSCComment(DSCConstants.PAGES);
    DSCCommentPages pages = (DSCCommentPages) tP;

在这里你可以看到为什么 XMLGraphics 可能是 esponsable (链接):

private DSCComment parseDSCComment(String name, String value) {
    DSCComment parsed = DSCCommentFactory.createDSCCommentFor(name);
    if (parsed != null) {
        try {
            parsed.parseValue(value);
            return parsed;
        } catch (Exception e) {
            //ignore and fall back to unparsed DSC comment
        }
    }
    UnparsedDSCComment unparsed = new UnparsedDSCComment(name);
    unparsed.parseValue(value);
    return unparsed;
}

似乎parsed.parseValue(value)抛出了一个异常,它被隐藏在了catch,它返回了一个未解析的版本,ghost4j 没想到。

于 2013-11-22T12:45:45.907 回答
1

发生异常的原因是 2 个文档之一不遵循 Adob​​e 文档结构约定 (DSC),如果您想使用该Document append方法,这是强制性的。

改为使用SafeAppenderModifier。这里有一个示例:http ://www.ghost4j.org/highlevelapisamples.html (将 PDF 文档附加到 PostScript 文档)

于 2013-12-30T20:49:55.570 回答