Click or drag to resize
PdfToTextConverterConvertToText Method (Stream)
Converts a PDF document stream to a string.

Namespace: ExpertPdf
Assembly: pdftotext.net20.x86 (in pdftotext.net20.x86.dll) Version: 4.2
Syntax
public string ConvertToText(
	Stream pdfStream
)

Parameters

pdfStream
Type: System.IOStream
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

Type: String
The text resulted after conversion.
See Also