I am using Core Text, in particular CTFramesetter, to create a nice text layout on a PDF. It all works fine, but on the first call I get the following error message on the console:
<Error>: unsupported 'Zapf' version 00020000.
No errors on subsequent call.
The error occurs when the attributed string includes a newline (\n), but not when it doesn't.
Code that reproduces the issue is below. I've placed this is a fresh xcode project, just adding the Core Text framework to get it to compile, so I'm fairly confident the issue lies here.
Does anyone know what the error means and how to avoid it?
As noted, the PDF this produces is just fine. Although the code below does nothing fancy, in my app, I make use of centring, indenting, variable line spacing etc. So working around the issue with, say, drawInRect:withFont isn't really an option. (But if I do use drawInRect:withFont: in this context, definitely no error.)
- (void) reproduceTheError;
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString* filename = [[paths objectAtIndex:0] stringByAppendingPathComponent: @"testPFF.PDF"];
CGRect paperRect = CGRectMake(0.0, 0.0, 595.44, 841.68);
UIGraphicsBeginPDFContextToFile(filename, paperRect, nil);
UIGraphicsBeginPDFPage();
// gives a '<Error>: unsupported 'Zapf' version 00020000.' on first call (but not later calls)
// if the \n is removed from the string, no error
NSMutableAttributedString* string = [[NSMutableAttributedString alloc] initWithString: @"Hello World. ‘Smart quotes’ \nWhat's up?"];
[string autorelease];
CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef) string);
CGContextRef currentContext = UIGraphicsGetCurrentContext();
CGContextSaveGState (currentContext);
CGContextSetTextMatrix(currentContext, CGAffineTransformIdentity);
CGMutablePathRef framePath = CGPathCreateMutable();
CGPathAddRect(framePath, NULL, CGRectInset(paperRect, 100.0, 100.0));
CTFrameRef frameRef = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), framePath, NULL);
CGPathRelease(framePath);
// Core Text draws from the bottom-left corner up, so flip
// the current transform prior to drawing.
CGContextTranslateCTM(currentContext, 0, paperRect.size.height);
CGContextScaleCTM(currentContext, 1.0, -1.0);
// Draw the frame.
CTFrameDraw(frameRef, currentContext);
CFRelease(frameRef);
CFRelease(framesetter);
CGContextRestoreGState (currentContext);
UIGraphicsEndPDFContext();
}