Questions tagged [pdf-reader]

An application or API that understands and parses PDF syntax allowing the manipulation or inspection of the objects contained in the PDF.

An application or API that understands and parses PDF syntax allowing the manipulation or inspection of the objects contained in the PDF.

If possible, use more specific tags, e.g.:

267 questions
-1
votes
1 answer

How to open any pdf file inside app?

I'm new in android development so I know how to open pdf from assest folder file by using some of the available API . But how can I make for any pdf means like adobe reader.
Rajan Maurya
  • 624
  • 1
  • 12
  • 24
-1
votes
1 answer

Open PDF file from raw folder?

How can i open a PDFs file from raw folder? This code for access PDFs file from SD card.. File file = new File(getFilesDir(), "teen_ebook.pdf"); try { if (file.exists()) { Uri path = Uri.fromFile(file); Intent…
Amit D
  • 11
  • 1
  • 4
-1
votes
1 answer

Reading pdf contents using Python

I am trying to read the below pdf file and I need to save each and every article in seperate file. https://dl.dropboxusercontent.com/u/23092311/sample.pdf A article can be in one or more than one pages. I have used PDFMiner to convert the entire…
user4k
  • 191
  • 1
  • 2
  • 11
-1
votes
1 answer

Java - Read all pdf file in the folder

try { PdfReader reader = new PdfReader(RESULT1); PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(RESULT2)); AcroFields form = stamper.getAcroFields(); String name =…
chinna_82
  • 6,353
  • 17
  • 79
  • 134
-1
votes
1 answer

IText Pdf Reader with Images

I have the pdf which is of 2 column format. I am able to parse it to simple text, but these pdfs also have images in between . As a result my text output gets jumbled up for that specific page of the pdf which have images in between. For example…
prasad r
  • 1
  • 1
-2
votes
1 answer

Read PDF file via VBA Access?

I'm trying for a project to read the content of a pdf file via VBA Access and put it in a variable. Here is my Code: Dim fso As New FileSystemObject Dim tStream As TextStream Dim vLine As String, vKey As String vKey = "stream" Set tStream =…
me ke
  • 1
  • 1
-2
votes
1 answer

get image byte in page

PdfReader with Itext library, so: PdfReader reader = new PdfReader(); reader.getPageContent(4) my page(4) content a image, getPageContent return byte[] this image is empty in result
JBM
  • 1
  • 1
-2
votes
1 answer

Android create own pdf reader

i wrote code witch can to open pdf file in sdcard.but My question is there any possiblities to view Pdf files in own Layout using Xml files not static into Java files this is a my code public class MainActivity extends Activity { @Override public…
-2
votes
3 answers

Open Sourced PDF Reader

I am currently working on a project that requires me to display PDF documents to the user amongst other things. Is there a free and open sourced PDF Reader that I can customize and build my project on top off? A Java code base would be perfect,…
IM42
  • 138
  • 10
-3
votes
2 answers

How to resolve "RSpec::Expectations::ExpectationNotMetError: expected" error?

I am extracting a value from XML and using that value to check if it exists in a PDF file: XML I have is 0163426 LSIH JHTWVZ
S.Bala
  • 21
  • 9
-4
votes
1 answer

File deletion using a thread in C#

My thread cannot delete PDF files. When I debug this solution, the file is deleting. In service mode, it is not deleting. This is my sample code: Thread Worker = new Thread(new ThreadStart(Start)); //Main Function Worker.Start(); public void…
-6
votes
3 answers

Download PDF save and display(render) It in my Application's Activity

I want to download PDF from link when first time user views them if webview. After that want to save them in SdCard and when user request to view, Display stored PDFs in my application's activity. I know about download things but stuck with PDF…
MobileEvangelist
  • 2,583
  • 1
  • 25
  • 36
1 2 3
17
18