Questions tagged [pspdfkit]

PSPDFKit supports fast PDF viewing, annotating and signing of documents.PSPDFKit supports basic PDF password encryption (40‑bit RC4 or 128‑bit RC4 or AES). Additionally, PSPDFKit Annotate supports an additional layer of security with a military-grade AES256 encryption.

110 questions
0
votes
0 answers

PSPDFKit iOS 8 PSPDFGlobalLock documentProviderForDocument:page:

I've a magazine app that downloads PDF in /Library/Caches/... It works pretty well with iOS 7, but from iOS 8 ( that changes file system directories ) I can't open downloaded PDF! from PSPDFKit log error I see: File downloaded…
0
votes
1 answer

How to show annotation toolbar in PSPDFKIT on viewcontroller launch using Xamarin iOS

I am using PSPDFKit and Xamarin iOS. I would like to have the annotation toolbar automatically show when the ViewController that subclasses PSPDFViewController is shown. Currently I have: public override void ViewDidLoad () { …
egfconnor
  • 2,637
  • 1
  • 26
  • 44
0
votes
1 answer

PSPDFKit and UIWebView doesn't work together

I use PSPDFKit into a static framework linked to a main project which uses another static framework with a UIWebView. After the loading of the main project, when I launch the UIWebView and call the request, I have this error: void…
Liberitus
  • 115
  • 1
  • 7
0
votes
1 answer

PSPDFKit add network image into scrollview like pdf page

I'm using PSPDFKit in my app. I want to load remote images async with the framework, cause there are both images and normal files in my app. I have tried convert imageData into PDFDataProvider, which cannot be Asynchronous. Does anyone have ideas?
lxzhh
  • 416
  • 1
  • 3
  • 12
0
votes
1 answer

How can I get the highlighted text from PSPDFKit?

I am using PSPDFKit to let users highlight text in a document. Is there anyway to get the actual text that was highlighted? So in the following example, I would like to get the text "the good and bad" when the user highlights it. Looking at the…
d512
  • 32,267
  • 28
  • 81
  • 107
0
votes
1 answer

Automatic detection of images from PDF

I use PSPDFKit for iOS. In a PSPDFViewController witch conforms PSPDFViewControllerDelegate I overwrite -(BOOL)pdfViewController didTapOnPageView: atPoint:(CGPoint)viewPoint, and I need to check if any image [pageView.textParser.images] from that…
0
votes
2 answers

PSPDFKit taking long time to give error `documentRef is nil , cannot get pageRef`

I have used this code : NSURL *documentURL= [NSURL fileURLWithPath:aStrPrintPdfPath isDirectory:NO]; PSPDFDocument *document = [PSPDFDocument documentWithURL:documentURL]; PSPDFViewController *pdfController = [[PSPDFViewController alloc]…
Paresh Navadiya
  • 38,095
  • 11
  • 81
  • 132
0
votes
1 answer

PSPDFKit Linker error when creating a category

I am working on a project with the PSPDFKit demo version. Everything was good until i tried to create a category of PSPDFDocument. Since, i have the following linker error : ld: section __objc_const (address=0x00F5A7B0, size=4651223840) would …
Yaman
  • 3,949
  • 4
  • 38
  • 60
0
votes
1 answer

PSPDFKit UIImage from page (for saving)

After I have loaded a PDF and drawn a few things, how do I get the resulting UIImage so that I can save it to the file system?
Paul Knopf
  • 9,568
  • 23
  • 77
  • 142
0
votes
1 answer

Annotations grouping using PSPDFKit

I started the work using PSPDFKit. I'm trying to do something ... not sure if its doable or supported. I'm trying to group a punch of annotations as one, like create a circle, square and a line, and group them together so I can move them together,…
Bill
  • 3
  • 2
0
votes
1 answer

how to open powerpoint by pspdfkit?

NSURL *documentURL = [[[NSBundle mainBundle] resourceURL] URLByAppendingPathComponent:@"item_70_1_3.ppt"]; PSPDFDocument *document = [PSPDFDocument documentWithURL:documentURL]; NSURL *tempURL =…
0
votes
1 answer

How to Handle URL Link Tap Events using PSPDFKit for Titanium

I am using the PSPDFKit Module (v2.8) for Titanium Mobile (3.0.2GA) to both display cloud based and local PDF files within my App. The module works a treat (great job by the developer), however I've run into a problem. Some of the PDF files have…
dSquared
  • 9,725
  • 5
  • 38
  • 54
0
votes
1 answer

PSPDFKit- Table of contents, bug?

I'm thinking of buying PSPDFkit for my company, I think is just perfect for what we need here, I'm not an expert developer but i was trying different things these days to see how it works, everything great and it does even more than i need, but…
0
votes
1 answer

how to add button action in PSPDFKit

I am using PSPDFKit and wondering how to add button programmatically on same pages (say page 21 of pdf) and when I click that button, I should go to some another view controller where I will have data according to the page number. e.g. I have…
Fahim Parkar
  • 30,974
  • 45
  • 160
  • 276
0
votes
1 answer

cocoa-touch PSPDFKIT How can I get value from PDF files?

Just a quick questions is How can I get delegate, results or call back from buttons, check boxes, text fields... that are located on the PDF file. To be clearer, I'm working on a project that are PDF test forms with a bundle of multi-chooses…
gunhi
  • 5
  • 2