The Aloaha PDF Suite PDF2TXT Engine is being used in various functions like:

The new release of the Aloaha PDF Suite now includes a new optimized PDF2TXT Engine with a higher object detection rate and improved performance.

Daily builds can be downloaded from: https://dl.dropbox.com/u/20338532/beta/aloaha_pdf.zip

The official release download link is: http://www.aloaha.com/download/aloaha_pdf.zip

Please contact info@aloaha.com to obtain an evaluation key!

The usage of our PDF2TXT API is pretty easy. Just try the following sample:

 

Dim pdf 
Dim pdffile 
Dim pageno 

Set pdf = CreateObject(“aloahapdf.edit”) 

pdffile=”c:\test.pdf” 
pageno=1 

If pdf.load_pdf_to_mem(CStr(pdffile)) = true Then 
          MsgBox pdf.get_page_text(CLng(pageno),0) 
End If 

Set pdf = nothing