|
DocWire DocToText - Powered by Silvercoders 5.0.5
A multifaceted, data extraction software development toolkit that converts all sorts of files to plain text and html. Written in C++, this data extraction tool has a parser able to convert PST & OST files along with a brand new API for better file processing. To enhance its utility, DocToText, as a data extraction tool, can be integrated with other data mining and data analytics applications. It comes equipped with a high grade, scriptable and trainable OCR that has LSTM neural networks based character recognition. This document parser is able to extract metadata along with annotations and supports a list of formats that include: DOC, XLS, XLSB, PPT, RTF, ODF (ODT, ODS, ODP), OOXML (DOCX, XLSX, PPTX), iWork (PAGES, NUMBERS, KEYNOTE), ODFXML (FODP, FODS, FODT), PDF, EML, HTML, Outlook (PST, OST), Image (JPG, JPEG, JFIF, BMP, PNM, PNG, TIFF, WEBP) and DICOM (DCM)
|
Wraps single function (doctotext::NewNodeCallback) into Transformer object. More...
#include <transformer.h>


Public Member Functions | |
| TransformerFunc (doctotext::NewNodeCallback transformer_function) | |
| TransformerFunc (const TransformerFunc &other) | |
| void | transform (doctotext::Info &info) const override |
| Executes transform operation for given node data. More... | |
| TransformerFunc * | clone () const override |
| Creates clone of the transformer. More... | |
| virtual Transformer * | clone () const =0 |
| Creates clone of the transformer. More... | |
| virtual void | transform (doctotext::Info &info) const =0 |
| Transforms document from importer. More... | |
Wraps single function (doctotext::NewNodeCallback) into Transformer object.
Definition at line 86 of file transformer.h.
| doctotext::TransformerFunc::TransformerFunc | ( | doctotext::NewNodeCallback | transformer_function | ) |
| transformer_function | callback function, which will be called in transform(). It should modify info structure. |
|
overridevirtual |
|
overridevirtual |
Executes transform operation for given node data.
| info |
Implements doctotext::Transformer.