Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
518 views

What is this error in Apple's “ZoomingPDFViewer” code example from CGContextDrawPDFPage <Error>: KSTFBB+Helvetica: FT_Load_Glyph failed: error 133

I am looking at Apples ZoomingPDFViewer example (source available from link). And when it runs, it gives this error: ZoomingPDFViewer[5751] <Error>: KSTFBB+Helvetica: FT_Load_Glyph failed: ...
3
votes
1answer
153 views

compare two CGPDFDictionary

Is the a way to compare two CGPDFDictionaries? There is a function memcmp, but it doesn't work for me, because dictionaries are in different memory cells.
2
votes
2answers
112 views

Creating PDFs from iOS text fields

I'm working on the requirements & specifications for a new iOS app intended for use by certain professionals working "in the field". All day long for weeks on end, these folks have a sizable ...
2
votes
2answers
124 views

EXC_BAD_ACCESS within call to CGPDFContextClose

My iPad app encounters an EXC_BAD_ACCESS message within the call to CGPDFContextClose in the following method. It happens only for certain pages, and only for one document so far (which happens to be ...
2
votes
1answer
306 views

How to get indirect reference to a page object with CGPDF?

According to Adobe's "Document management - Portable Document Format - Part 1: PDF 1.7" (Pdf32000_2008.pdf), section 12.3.2.1 states: A destination defines a particular view of a document, ...
1
vote
1answer
171 views

Monotouch: Render PDF page preview in separate thread crashes from time to time

I have a UISlider. It is used to navigate quickly through a PDF. Whenever the threshold for the next page is reached, I display a UIView next to the slider's knob that contains a small preview of the ...
1
vote
3answers
326 views

How do I find the size of the margins on a PDF page in Objective-C (CGPDF)

Given a page from a pdf document, I would like to be able to find the margin for the text, using objetive-C. I realise there are already many questions relating to CGPDF..., but I have not been able ...
1
vote
1answer
470 views

How to get PDF Destination with CGPDF

I have a pdf file, I want to render it on ipad. But I don't know how to get a named destination and how to implementation of the GoTo Action on ipad. Names > Dests > Kids > Names > Annots ...
1
vote
0answers
52 views

LZW and CGPDFScanner

Does CGPDFScanner decompress any LZW-compression it encounters? Or am I responsible for this? [I'm assuming it does because I'm picking up plenty of Tj operators etc.]
0
votes
1answer
24 views

How to find the pdf document font using CGPDFScanner in iphone app?

I am getting the "F1.0" in Tf callback method in CGPDFScanner. But I am not getting how I can go ahead with "F1.0" After doing some search I come to know that it is king of font detail. How Can I ...
0
votes
0answers
48 views

Pdf Page content modification using objective-c

I wanted to replace the content of a pdf page. I have done that by the following code, -(void)modifyPdf:(NSString *)pdfPath atPage:(int)_page { NSURL* url = [NSURL fileURLWithPath:pdfPath]; ...
0
votes
1answer
210 views

How to change the background color of CGPDFPageRef, and how to remove the page's shadow

I'm trying to draw content in a UIWebView instead of a UIView, because I like UIWebView's ability to zoom in and out by pinching. Here's my code: // setup environment CGRect outputRect = ...
0
votes
2answers
199 views

Loading PDF in iPad

I am using CGContextDrawPDFPage class to render PDF in my app without any trouble. But, the amount of time taken to load the book is a bit more and the time taken to render the page is proportional ...
0
votes
1answer
130 views

CGPDFScanner and Adobe-Japan1

I'm using CGPDFScanner to extract text from a PDF. At the time my TJ operator callback is called, the current font has CIDSystemInfo->Registry value "Adobe" and CIDSystemInfo->Ordering value ...
0
votes
1answer
77 views

CGPDFArray popped but zero count

I'm running the following: if (CGPDFDictionaryGetObject(dict, "DescendantFonts", &object)) { CGPDFObjectType objectType = CGPDFObjectGetType(object); switch (objectType) { ...
0
votes
1answer
240 views

CGPDFScanner, Identity-H and decompression

My instance of CGPDFScanner is scanning a test pdf file. At a given time, the current font dictionary has Encoding value Identity-H and a FontDescriptor dictionary with key FontFile2. This key ...
0
votes
1answer
351 views

Extracting font data with CGPDFScanner

I'm using CGPDFScannerto scan PDF. When the scanner encounters something like: BT /F13 12 Tf 288 720 Td (ABC) Tj ET I use operator callbacks to extract the Tf, Td and Tj data. How do I extract ...
0
votes
1answer
63 views

Can CGPDFDataFormatJPEG2000 be used for something other than a JPEG2000 image?

Using the Quartz 2D PDF routines, can the CGPDFDataFormat format of a CGPDFStreamRef PDF stream be equal to CGPDFDataFormatJPEG2000 in any case other than for an XObject image with a filter of ...