The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
77 views

Fit Polygons Together

How to eliminate the boundary between triangles? I'm implementing export-to-pdf in my triangle drawing app. The image above shows what the pdf output looks like. There are white boundaries ...
0
votes
1answer
124 views

How can i draw NSView correctly to PDF context?

I've got NSView and to this NSViewI added some subviews which are subclass of NSView (named: Square). Squares are 50x50 on different positions. I want to render this NSViews with background color Red ...
0
votes
1answer
123 views

How to draw PDF Context in Cocoa

I'm trying to save PDF file with NSView objects. Here is implementation of Square class (subclass of NSView). @implementation Square - (id)initWithColor:(NSColor *)aColor; { if (self = [super init]) ...
0
votes
0answers
76 views

Quality of PDF while zooming using UIPinchGesture

I was trying to handle zoom in and zoom out functionality using UIPinchgesture. Everything was working fine, but while zooming, the quality of pdf text varies considerably. I have tried several ways ...
0
votes
2answers
229 views

OS X / iOS: How do I create a PDF that can't get printed?

I want to create a PDF document, that can't get printed. I am using the Quartz framework for that. This is what I do (shorted): PDFDocument *pdfDocument = ... NSMutableDictionary *options = ...
0
votes
0answers
47 views

Speeding up PDF creation process for printing

I am making a PDF to be passed on for printing from a UITableView (having a large content size generally fitting in 4 A4 sized pages). For this I go recursively in on-screen rendered views and put ...
0
votes
0answers
116 views

CoreGraphics: How to find out if a PDF file has entries in its catalog?

I'm trying to find out if a PDF has links/target/outline entries. I use code like this (Monotouch, but should be similar in ObjC): public bool HasOutlineEntries() { CGPDFDictionary oCatalogDic = ...
0
votes
1answer
148 views

EDIT CGPDFObject of the pdf

i try long time to parse a pdf file with quartz cgpdf api, but my question is true that CGPDF API can't edit the object saved in the pdf? it mean the api used just only for reading file?
0
votes
1answer
172 views

open pdf in to another pdfviewer application from my application

I have one pdf in my application and I want to open that pdf but not in my applicaton. When ever i'll click or open that pdf it will ask me to open that pdf in another application of pdf viewer ...
0
votes
1answer
216 views

Drawing a layer shadow to a PDF context

I have a bunch of UIViews to which I add shadows via their layers, in their drawRect method: self.layer.shadowPath = path; self.layer.shadowColor = [[UIColor blackColor] CGColor]; ...
2
votes
3answers
460 views

Exception releasing context after CGContextDrawPDFPage only for some pages

I've inherited some iOS code which opens a source PDF and creates a CGContextRef to which we draw a single page from the source document. The problem is that there are certain pages with one ...
4
votes
2answers
1k views

iOS PDF editing - Combining FastPDFKit / CGPDFContext and libHaru

I'm trying to add PDF Annotations onto an existing PDF file in iOS. I understand that using FASTPDFKit / CGPDFContext, it is possible to READ ( but not EDIT ) almost all the information from an ...
1
vote
0answers
909 views

Printing from an iOS device (AirPrint)

I think I must be coming at this from the wrong angle. This is my first foray into PDF with Quartz. I would like to have the ability to print text that is entered into my app, but I may need to drop ...
1
vote
1answer
1k views

PDF zooming inside UIScrollView

I have a 2835 pixel PDF file inside 2835 pixel UIScrollView. To display the PDF I use CATiledLayer. My problem is when I zoom out the scrollView (at scale below 1) the PDF quality gets very bad. What ...
2
votes
2answers
2k views

iPhone/iPad draw pdf like iBooks?

Does anyone know how to use core graphics to draw a pdf like in iBooks. I can already draw a pdf page using core graphics but was curious how iBooks shows a lower quality view of each page so it loads ...
0
votes
1answer
391 views

Problem with ebook reader application

I am working on a ebook reader application... i can able to work exactly as iBooks application does. I have used : CFURLRef pdfURL = CFBundleCopyResourceURL(CFBundleGetMainBundle(), ...
5
votes
4answers
4k views

PDF files created on iPad don't display correctly on Windows

My iPhone app creates PDF files (in Arial font). The plain iPhone 3.1.x version works great (other than the known issue that PDF files created on the iPhone can't be viewed correctly in Google Docs or ...
0
votes
1answer
973 views

CGPDFContextCreateWithURL not correctly creating context

Using the following code, the ctx is not correctly being created. It remains nil: #import <QuartzCore/QuartzCore.h> @implementation UIView(PDFWritingAdditions) - ...