Class Conversions
- Namespace
- Textkernel.Tx.Models.API.Parsing
- Assembly
- Textkernel.Tx.SDK.dll
Conversions output by the document converter during a parse transaction
public class Conversions
- Inheritance
-
Conversions
- Inherited Members
Properties
CandidateImage
If a candidate photo was extracted, it will be output here. This is a byte[] as a Base64-encoded string. You can use FromBase64String(string) to turn this back into a byte[]
public string CandidateImage { get; set; }
Property Value
CandidateImageExtension
If a candidate photo was extracted, the appropriate file extension for the photo will be output for this field (e.g. ".png").
public string CandidateImageExtension { get; set; }
Property Value
HTML
If requested by OutputHtml, this is the document converted to HTML.
public string HTML { get; set; }
Property Value
If requested by OutputPdf, this is the document converted to a PDF. This is a byte[] as a Base64-encoded string. You can use FromBase64String(string) to turn this back into a byte[]
public string PDF { get; set; }
Property Value
RTF
If requested by OutputRtf, this is the document converted to RTF.
public string RTF { get; set; }