我正在使用以下代码绘制PDF:
CGContextRef pdfContext;
CFStringRef path;
CFURLRef url;
CFMutableDictionaryRef myDictionary = NULL;
// Create a CFString from the filename we provide to this method when we call it
path = CFStringCreateWithCString (NULL, filename,
kCFStringEncodingUTF8);
// Create a CFURL using the CFString we just defined
url = CFURLCreateWithFileSystemPath (NULL, path,
kCFURLPOSIXPathStyle, 0);
CFRelease (path);
// This dictionary contains extra options mostly for 'signing' the PDF
myDictionary = CFDictionaryCreateMutable(NULL, 0,
&kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks);
CFDictionarySetValue(myDictionary, kCGPDFContextTitle, CFSTR("My PDF File"));
CFDictionarySetValue(myDictionary, kCGPDFContextCreator, CFSTR("My Name"));
// Create our PDF Context with the CFURL, the CGRect we provide, and the above defined dictionary
pdfContext = CGPDFContextCreateWithURL (url, &pageRect, myDictionary);
// Cleanup our mess
CFRelease(myDictionary);
CFRelease(url);
//CGContextSetLineCap(pdfContext, kCGLineCapButt);
// Done creating our PDF Context, now it's time to draw to it
CGContextBeginPage (pdfContext, &pageRect);
但是当调用转到开始页面方法时,它只绘制一个页面。如何声明可以绘制多个页面的正确上下文?
这是我到目前为止所拥有的:
-(void)createPDFFileWithRect: (CGRect) pageRect andFileName:(const char*)filename
{
// This code block sets up our PDF Context so that we can draw to it
CGPDFContextCreateWithURL(url,
((0, 0), (1000, 1000)), nil);
CGContextRef pdfContext;
CFStringRef path;
CFURLRef url;
CFMutableDictionaryRef myDictionary = NULL;
// Create a CFString from the filename we provide to this method when we call it
path = CFStringCreateWithCString (NULL, filename,
kCFStringEncodingUTF8);
// Create a CFURL using the CFString we just defined
url = CFURLCreateWithFileSystemPath (NULL, path,
kCFURLPOSIXPathStyle, 0);
CFRelease (path);
// This dictionary contains extra options mostly for 'signing' the PDF
myDictionary = CFDictionaryCreateMutable(NULL, 0,
&kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks);
CFDictionarySetValue(myDictionary, kCGPDFContextTitle, CFSTR("My PDF File"));
CFDictionarySetValue(myDictionary, kCGPDFContextCreator, CFSTR("My Name"));
// Create our PDF Context with the CFURL, the CGRect we provide, and the above defined dictionary
pdfContext = CGPDFContextCreateWithURL (url, &pageRect, myDictionary);
// Cleanup our mess
CFRelease(myDictionary);
CFRelease(url);
//CGContextSetLineCap(pdfContext, kCGLineCapButt);
// Done creating our PDF Context, now it's time to draw to it
// Starts our first page
//for(int i =0;i<2;i++)
//{
CGContextBeginPage (pdfContext, &pageRect);
//CGContextRef pdfContext1;
//CGContextBeginPage (pdfContext, &pageRect);
//}
// Draws a black rectangle around the page inset by 50 on all sides
CGContextStrokeRect(pdfContext, CGRectMake(50, 50, 500,700));
CGContextShowTextAtPoint (pdfContext, 60, 699, text, strlen(text));
// End text
// We are done drawing to this page, let's end it
// We could add as many pages as we wanted using CGContextBeginPage/CGContextEndPage
CGContextEndPage (pdfContext);
// cpde to draw a new page
// CGContextBeginPage (pdfContext, &pageRect);
// We are done with our context now, so we release it
CGContextRelease (pdfContext);
}
答案 0 :(得分:1)
对不起,我对PDF的内容不是很熟悉,所以这可能不是很有帮助。
我有一个小的,尚未发布的粗糙的PDF应用程序,我用这个绘图(简化了一点):
CGPDFPageRef page = CGPDFDocumentGetPage(pdf, currentPage);
CGContextSaveGState(context);
CGAffineTransform pdfTransform = CGPDFPageGetDrawingTransform(page, kCGPDFCropBox, bounds, 0, true);
CGContextConcatCTM(context, pdfTransform);
CGContextDrawPDFPage(context, page);
CGContextRestoreGState(context);
我在代码中的任何地方都没有看到CGContextDrawPDFPage。我们是否使用了两种不同的技术,您是否忘记包含部分代码或其他内容?