A job that attempts to convert a single PDF file or TIFF image into a text file while adding searchable text for scanned pages.
More...
|
static JobEnvelope | Parse (string description, WorkerProcess.IMessageChannel outputChannel, Action< IEnumerable< JobEnvelopeData >, JobEnvelope > additionalOptionProcessor) |
| Parses a JobEnvelope from the specified job description or throws an exception if it can't be parsed. More...
|
|
static bool | TryParse (string description, WorkerProcess.IMessageChannel outputChannel, Action< IEnumerable< JobEnvelopeData >, JobEnvelope > additionalOptionProcessor, out JobEnvelope jobEnvelope) |
| Creates a JobEnvelope from a job description (created by GetJobDescription). A return value indicates whether the conversion succeeded or failed. More...
|
|
static bool | TryParse (string description, WorkerProcess.IMessageChannel outputChannel, out JobEnvelope jobEnvelope) |
| Creates a JobEnvelope from a job description (created by GetJobDescription). A return value indicates whether the conversion succeeded or failed. More...
|
|
static void | RegisterCustomJobEnvelopeType (Type customJobEnvelopeType) |
| Registers a custom JobEnvelope type As the regular JobHandler won't understand the custom JobEnvelope type you'll also need to create a JobProcessor that uses a custom JobHandler. The JobHandler should be a console application that registers the same custom JobEnvelope types before calling new JobHandler().Run(); More...
|
|
static bool | UnregisterCustomJobEnvelopeType (Type customJobEnvelopeType) |
| Unregisters a custom JobEnvelope type More...
|
|
|
string | OcrLanguage [getset] |
| Gets or sets the text recovery language. The default is null (automatic language detection).
|
|
TextRecovery | OcrMode [getset] |
| Gets or sets the Text Recovery type.
|
|
override string | Name [get] |
| Gets the name for this type of JobEnvelope. More...
|
|
bool | CreateTagged [getset] |
| Gets or sets whether to tag content in the PDF. The default is false .
|
|
string | Password [getset] |
| Gets or sets the password.
|
|
bool | GraphicsAsImages [getset] |
| Gets or sets whether vector images should be converted to bitmap images. The default is false .
|
|
bool | KeepBackgroundColorText [getset] |
| Gets or sets whether to recover text that is invisible because it is exactly the same colour as the background. The default is false . More...
|
|
bool | KeepInvisibleText [getset] |
| Gets or sets whether to recover text that is invisible because it has no stroke or fill. This is typically used in PDFs to provide a searchable layer in scanned pages. The default is false .
|
|
PageRange | PageRange [getset] |
| Gets or sets the page range that should be converted. The default is null (all pages).
|
|
string | ImageWatermarkPath [getset] |
| Gets or sets the path to the watermark image file. The default is null (no watermark).
|
|
object | CustomData [getset] |
| Gets or sets the custom data. The default is null . Note: setting this to a non-string value will prevent duplicate job detection
|
|
string | SourcePath [getset] |
| Gets or sets the path to the source file.
|
|
IList< string > | OutputPaths [get] |
| Gets the list of output paths.
|
|
JobStatus | Status [get] |
| Gets the status of the conversion. This can indicate success, whether there was a problem, etc.
|
|
string | Message [get] |
| Gets the message.
|
|
int | ID [get] |
| Gets the ID.
|
|
bool | DoProgress [getset] |
| Gets or sets whether events should be raised to indicate how far the conversion has progressed. The default is false .
|
|
bool | NoCopies [getset] |
| Gets or sets whether the conversion should be performed on the original source file rather than a temporary copy. The default is false (perform the conversion on a temporary copy). Setting this to true can risk data loss if: More...
|
|
bool | Duplicate [getset] |
| Gets or sets whether the JobEnvelope is a duplicate.
|
|
TimeSpan | ProcessDuration [get] |
| Gets the time it took to process the job.
|
|
A job that attempts to convert a single PDF file or TIFF image into a text file while adding searchable text for scanned pages.