Questions tagged [foxit]

Foxit is a software company specializing in PDF tools, such as its Foxit Reader and Foxit PDF editor.

68 questions
12
votes
2 answers

Itext embed font in a PDF

I have a pdf that has been created using the Foxit form designer. On my design system, I have the barcode font installed. The barcode font is used in one of the AcroFields. It appears that foxit does not embed the font in the document. I also…
Milhous
  • 14,003
  • 16
  • 60
  • 80
4
votes
3 answers

PDF Display Errors with wkhtmltopdf / tables / acrobat-reader

I generated a PDF file using wkhtmltopdf from a html page. The html page uses tables which have 1 pixel borders. If I open the PDF with Acrobat or Foxit they randomly miss to draw vertical borders, but they appear if I zoom in. So I guess it's some…
duedl0r
  • 8,785
  • 3
  • 27
  • 44
4
votes
4 answers

Python 3 - Data mining from PDF

I'm working on a project that requires obtaining data from some PDF documents. Currently I'm using Foxit toolkit (calling it from the script) to convert the document to txt and then I iterate through it. I'm pretty happy with it, but 100$ it's just…
EndermanAPM
  • 277
  • 2
  • 21
3
votes
3 answers

PDF shows signature in Foxit Reader but not Adobe Reader

Why does this PDF show a signature in Foxit Reader but not Adobe Reader? Here is the code from the Syncfusion PDF library used to generate it (see also documentation about signing an existing document): var signature = new…
Scotty H
  • 5,646
  • 3
  • 27
  • 78
3
votes
2 answers

PDF document generated using itext# opens in Foxit but not Acrobat

My application is generating PDF documents using itext#. The files open fine and display correctly in Foxit Reader but in Adobe Acrobat it errors with: There was an error processing page. There was a problem reading this document (109). Why will…
John Mills
  • 9,390
  • 11
  • 69
  • 113
2
votes
1 answer

VB.Net Printing a PDF using FoxIt Reader or Adobe Reader

I am having an issue with both Adobe Reader and FoxIt Reader when trying to print a PDF document. Both issues are different but a solution to either one will allow me to fix my issue. The issue I am having with Adobe Reader when trying to print…
Rambomst
  • 632
  • 2
  • 10
  • 27
2
votes
1 answer

Embedding Foxit PDF Reader into a webpage

I need to embed Foxit Reader (PDF reading software) into a web page. Does anybody know the correct classid and parameters to use in the following code:
Charlie
  • 2,108
  • 2
  • 22
  • 33
2
votes
0 answers

MinimumOSVersion in bundle FoxitRDK.framework is invalid

We have Foxit in our iOS app, how to treat this, and get app to App Store? ERROR ITMS-90362: "Invalid Info.plist value. The value for the key 'MinimumOSVersion' in bundle PFB.app/Frameworks/FoxitRDK.framework is invalid. The minimum value is…
János
  • 27,206
  • 24
  • 130
  • 270
2
votes
1 answer

Linking from HTML code to specific bookmark/page in PDF using FOXIT (or other)

I'm trying to link from an HTML page to a PDF file. I'd like to add links to specific pages, using urls such as http://www.mydomain.com/some-pdf-file.pdf#nameddest=somebookmark or http://www.mydomain.com/some-pdf-file.pdf#page=7 This works fine in…
amitlicht
  • 2,658
  • 4
  • 20
  • 25
2
votes
1 answer

The name is too long ArgumentException

When using iTextSharp.text.pdf.PdfStamper.AcroFields.SetField I get an ArgumentException on pdf form fields that appear after a certain point in the document. It says: The name …
sfax
  • 51
  • 3
1
vote
2 answers

Why do my PDF fields stay blank in Adobe Reader if I do not flatten the PDF document?

I use iTextSharp to populate fields in a PDF. I would like the PDF to stay editable when the user opens it (i.e. so I can't flatten the PDF). The problem is that when I stamp the PDF and view the values in Adobe Reader the fields remain blank. If I…
willem
  • 22,847
  • 19
  • 68
  • 110
1
vote
0 answers

Proper Importation of Foxit's WebPDF Engine Into React App

Does anyone know of a streamlined way, or perhaps a hacky way, of integrating Foxit's WebPDF library into a React project with minimal setup? The library can be found here: https://github.com/foxitsoftware/WebPDF.js/ The app I am working with was…
1
vote
0 answers

Highlighting the text content in PDF with foxit pdf library

Trying to highlight a specific text in PDF content with foxit library. I couldn't a find particular method/name in foxit webpdf.mini library file. Am trying to integrate foxit sdk in my own web application to render a pdf content and there is one…
srivat1
  • 101
  • 2
  • 10
1
vote
1 answer

Javascript in PDF double values

I have the following code that is supposed to do a sum in a pdf. var sum = 0.0; var f1 = this.getField("price"); var temp = parseFloat(f1.value); sum = temp; var total = this.getField("total"); if(sum > 0) { total.value = sum; } else { …
Milhous
  • 14,003
  • 16
  • 60
  • 80
1
vote
1 answer

sum field values based on condition in another field in javascript

I am attempting to sum a number of field values but only if a condition associated with those filed values is met. For example: I have a form with several number value fields. Each of those number fields is accompanied by a choice in status. I…
1
2 3 4 5