i'm writing an application in objective-c (using cocoa). i have a PDF template, i need to substitute actual values into placeholders in PDF and then save the result into new PDF.
how can i do it? which library should i use?
|
i'm writing an application in objective-c (using cocoa). i have a PDF template, i need to substitute actual values into placeholders in PDF and then save the result into new PDF. how can i do it? which library should i use? |
|||
|
|
|
I've found the solution! It connects the power of quartz2d and simplicity of UIGraphics.
|
||||
|
|
|
Probably PDFKit. For some tasks, the high level PDFKit API cannot do what you want, and you might be forced to use the low level CG PDF parsing libraries. They're quite low level, though. They mean really understanding the PDF file format. |
|||
|
|