PdfToTextConverterConvertToText(Stream) Method |
Converts a PDF document stream to a string.
Namespace: ExpertPdfAssembly: eppdftotext (in eppdftotext.dll) Version: 9.0
Syntaxpublic string ConvertToText(
Stream pdfStream
)
Public Function ConvertToText (
pdfStream As Stream
) As String
Parameters
- pdfStream Stream
- The binary stream providing the PDF document bytes. It can be for example a
FileStream to convert a PDF file to text or a MemoryStream to convert the PDF document
represented as an array of bytes to text.
Return Value
StringThe text resulted after conversion.
See Also