これは、PDF文書の文字データを、テキスト・ファイルとして出力する、簡単なツールです。

ページ範囲 の欄で、テキスト抽出するページを指定します。すべてから抽出する場合は、この欄は空白でかまいません。
改ページ文字 は、出力テキストファイルの改ページのしるしに使われる文字列です。
ページ番号を表示したい場合には、コントロール文字 [p] を入れてください。PDF の総ページ数を挿入したい場合には、コントロール文字 [P] を使います。
出力フォルダ の枠で、作成されたテキスト・ファイルを出力するフォルダーを指定します。
エンコード・オプションは、テキスト・ファイルをコード化するために使う「文字コード」を指定します。ANSI、UTF8、UNICODE から選択してください。
| Function name: | TextExtract |
| Options: | [] means optional parameter |
| [PagesRange=] | - Define the document pages range from where to extract text. If not specified, extract from all pages. Se above image for rules. |
| [PageBreak=] | - Define the string used to signal page breaks. Insert [p] to write page number and [P] to write the total number of pages. |
| [Encoding=] | - Text output encoding. 0 - ANSI 1 - UTF8 2 - Unicode |
| [OutputPath=] | - Full path where to create the text files. If not specified, the file source path is used instead. If this parameter includes also a file name, this will be the file name given to the text file (only useful for single file operations). Because of this, when passing only the output directory, it should end with a backslash character, e.g. OutputPath=C:\Temp\ |
| [-s] | - Silent mode. Run without showing the interface (only available for licensed users) |
| FilesList | - List of files to extract text from; Separate files using the semicolon";" char. Must be the last parameter |
| Example: "c:\Program Files\PDF-ShellTools\PDFShellTools.exe" TextExtract "pagesrange=1,3-5" encoding=0 "pagebreak=-- [p]/[P]--" "OutputPath=C:\My Text Files\\" "c:\somefolder\file1.pdf;c:\somefolder\file2.pdf" |
|