它不是非常困难的,但有一些步骤来确立一切。 从根本上说,你需要创建人民抵抗力量的图表背景,然后用标准绘图指令加以利用。 简单地将UIImage带入人民抵抗力量,你可以做如下事情:
// assume this exists and is in some writable place, like Documents
NSString* pdfFilename = /* some pathname */
// Create the PDF context
UIGraphicsBeginPDFContextToFile(pdfFilename, CGRectZero, nil); // default page size
UIGraphicsBeginPDFPageWithInfo(CGRectZero, nil);
// Draw the UIImage -- I think PDF contexts are flipped, so you may have to
// set a transform -- see the documentation link below if your image draws
// upside down
[theImage drawAtPoint:CGPointZero];
// Ending the context will automatically save the PDF file to the filename
UIGraphicsEndPDFContext();
详情见。 为提取和印刷指南。