PHP Classes

Every text have no space

Recommend this page to a friend!

      PHP PDF to Text  >  All threads  >  Every text have no space  >  (Un) Subscribe thread alerts  
Subject:Every text have no space
Summary:no space
Messages:3
Author:Elvin Andrean
Date:2017-01-06 17:53:25
 

  1. Every text have no space   Reply   Report abuse  
Picture of Elvin Andrean Elvin Andrean - 2017-01-06 17:53:25
Sir, i have problem again. The problem is every text is have no space. For example like "thisisexample". How to solve it?

  2. Re: Every text have no space   Reply   Report abuse  
Picture of Christian Vigh 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.

  3. Re: Every text have no space   Reply   Report abuse  
Picture of Elvin Andrean Elvin Andrean - 2017-01-08 13:35:46 - In reply to message 2 from Christian Vigh
well thank you again sir