Christian Vigh - 2017-01-06 18:12:37 -
In reply to message 1 from Elvin Andrean
This happens on certain PDF files ; in such cases, you can set the BlockSeparator property to a non-space value ; for example :
$pdf = new PdfToText ( ) ;
$pdf -> BlockSeparator = " " ;
$pdf -> Load ( 'yourfile.pdf' ) ;
(note that in this case, you must explicitly call the Load method to process your file - do not specify any file to the constructor).
Christian.