2

适用于 OS X 的最新版本 ABBYY FineReader 现在支持 AppleScript。我尝试编写一个简单的脚本,对给定的 pdf 文档进行 OCR 并将其保存为 pdf 文档以使其可搜索。不幸的是,我是 AppleScript 的初学者,无法让它工作。我找不到用于编写 ABBYY FineReader 脚本的更多文档或示例。

我设法打开了 FineReader 的字典,它有这个功能:

export to pdf v : Converts the current document to a PDF file. If FineReader is running in a Sandbox, the file will be saved to a temporary directory.
export to pdf file : NO_DESCRIPTION
    [ocr languages enum language list type] : List of recognition languages that includes     language identifiers and full language names.
    [saving type save settings enum] : Specifies file creation settings for saving results.
    [export mode pdf layout] : Specifies export mode.
    [keep page numbers headers and footers boolean] : Keeps headers, footers and page numbers.
    [page size page size enum] : Specifies paper size.
    [keep pictures boolean] : Keeps pictures in recognized document.
    [image quality image quality enum] : Specifies quality of pictures in output file.
    [keep text and background colors boolean] : Keeps background and character colors.
    [use mrc boolean] : Compresses the output file significantly while retaining high quality of text and images.
    [make pdfa boolean] : Creates a searchable PDF document that is well suited for archiving.
    [create outline boolean] : Creates a table of contents in a PDF file based on headings.
    [enable pdf tagging boolean] : Enables PDF tags.
    [embed fonts boolean] : Embeds fonts from the document in the e-book.
    → file :

我试过这个脚本:

tell application "FineReader OCR Pro"
    export to pdf "<path to pdf>"
end tell

但是,我得到输出“缺失值”。怎么了?

4

1 回答 1

1

看起来您可能需要提供将 pdf 保存到的路径。

尝试这个:

tell application "FineReader OCR Pro"
    export to pdf ((path to desktop) as string) & "test-export.pdf"
end tell

应该将文件保存到您的桌面

于 2015-01-12T22:27:34.913 回答