Questions tagged [pdfviewer]

An application that allows users to view PDF files.

83 questions
0
votes
3 answers

How to stream a generated PDF file to a reader inside a DIV and not the browser?

I have the following code that after a PDF is generated submitting a query to SQL will display in browser. But I am looking is to display the file in a PDF viewer in the page and not using the browser reader. The viewer is inside a DIV. You can see…
Mr. Munoz
  • 69
  • 1
  • 3
  • 13
0
votes
0 answers

Android render pdf to bitmap with itext library

I am trying to convert a pdf stored in my assets folder into bitmap using PdfViewer.jar. This is my code: public static Bitmap renderToBitmap(InputStream inStream) { Bitmap bitmap = null; try { byte[] bArray =…
Shadiya
  • 1
  • 1
0
votes
1 answer

c# - How to create an image from a pdf rectangle

is there a way to create an image based from pdf using rectangle? im using syncfusion pdfviewer(using the Unlimited Flat-Fee License). and this is how i create an image from pdf using c# private void ScreenCapture(string fileName, int x, int y, int…
pdf asker
  • 59
  • 2
  • 11
0
votes
1 answer

Open PDF file in my android application without using any browser or third party application

I have already searched a lot on this topic but I could not able to find the proper answer. I kindly request to not mark it with duplication without answer. I have two activities in my android application. 1]. List of PDF files available on server…
jil123
  • 99
  • 1
  • 12
0
votes
0 answers

render pdf in div container or dynamic tab using pdf.js viewer.html

I'm using PDF.js to view pdf's. I'm able to open pdf in new browser window. But now I want to open pdf inside div container/tag which will be created on the fly. Sample code below: var newTabContent = '
0
votes
0 answers

Locating File in WPF project resource

I have a folder in my WPF project containing pdf files as shown below. How do I access the files? I have tried this: fileList.Add(new FileList() { FileName = "AngularJS Example", FilePath =…
codegrid
  • 977
  • 2
  • 13
  • 33
0
votes
1 answer

How to display PDF files in Cordova application for Android?

I am developing an Android application using Cordova where I am required to display a PDF file in application. I have tried using pdf.js from Mozilla and it worked only on browser and not in application. Same was the case with . I am…
Shardul Sane
  • 11
  • 1
  • 2
0
votes
1 answer

Heap memory is not releasing down after calling "com.qoppa.notes.QPDFNotesView : releaseDocument()", using third party library "Qoppa"

Opening Pdf using Qoppa library, specifically while debugging I can monitor heap memory usage becomes very high at below line executed.. com.qoppa.notes.QPDFNotesView viewer = new QPDFNotesView(this); Before going out my Activity, i am…
karthik
  • 139
  • 10
0
votes
0 answers

Facny box print callbacks

I am working with fancybox2 and I need to add some custom functions before pdf goes to print queue means I need fancybox print callbacks(like before print,after print), Can anyone please help me ? I tried window.print() callbacks but those are not…
ratnakar
  • 352
  • 1
  • 11
0
votes
1 answer

How to read pdf which is in document directory in iPhone using swift

As I am new to swift and iOS, I am working on a app where I need to read the content of the PDF and populate on the viewcontroller(textlabel), please let me know how to do it using swift Thanks in advance
uday kaja
  • 1
  • 1
0
votes
1 answer

PDF printing labels on Zebra printer using Google Chrome

I created an application in ASPX.NET to issue tags for the Zebra TPL-2844 printer, the application usually works in Internet Explorer and Firefox, however for some problem in Google Chrome the label image is interpreted wrong by the Chrome…
0
votes
1 answer

PDF Viewer in HTML5 Canvas

Presently in our web-application we used Java Applet as a PDF viewer, which also: blocks the user from saving the PDF document prints the PDF content to a physical printer (not to a soft printer i.e., save). I recently heard that Google will end…
Balaji
  • 275
  • 1
  • 4
  • 13
0
votes
1 answer

Is there any way to display pdf files in browser such that the viewer can only read the file and can't save/download/print the file in any form

I have to integrate pdf files in my PHP web application such that the viewer of the file can not save/download/print the pdf file. I am finding a way of doing this in any way like using javascript, jquery or straight in PHP or any other way if any.
0
votes
1 answer

How to over come this pdfviewer "No module named viewer" error in wxpython?

I am trying to create an application that has a feature of displaying pdf files and decided to use wxpython to do this due to the pdfviewer class. I made sure that I have pyPDF2 and pyPdf. (can use either but installed both to see if that was the…
Rowan Knight
  • 451
  • 3
  • 14
0
votes
2 answers

Android: Navigation drawer and ListActivity

Hi I want to introduce a navigation drawer in my Android app. In my activity I load pdf file in a list, this is my code: public class MainActivity extends ListActivity { final StringBuffer sb = new StringBuffer(); private ListView…