Questions tagged [snowtide]
2 questions
1
vote
1 answer
Java - Error while using PDFTextStream
I have a PDF file and want to extract text from it. I am using PDFTextStream. I got this code from its documentation, but it gives error.
import com.snowtide.PDF;
import com.snowtide.pdf.Document;
import com.snowtide.pdf.OutputTarget;
public class…

Dax Amin
- 497
- 2
- 5
- 13
0
votes
1 answer
How to extract text from PDF using PDFExtStream using Java
Text is not extracted from Sample.pdf file by using pdftextstream-2.6.3.jar
String filePath = "D:\\inbox\\temp\\Sample.pdf";
File document = new File(filePath);
StringBuffer pdfText = new StringBuffer(1024);
com.snowtide.pdf.OutputTarget tgt = new…

UdayKiran Pulipati
- 6,579
- 7
- 67
- 92