drawpdf関数を使用してiosアプリでpdfを生成しています.nsobjectクラスでdrawtext関数を呼び出しながら、指定したフレームと文字列に従ってテキストを明確に描画します。
私のコードは
+(void)drawText:(NSString*)textToDraw inFrame:(CGRect)frameRect
{
CFStringRef stringRef = (__bridge CFStringRef)textToDraw;
// Prepare the text using a Core Text Framesetter
CFAttributedStringRef currentText = CFAttributedStringCreate(NULL, stringRef, NULL);
CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString(currentText);
CGMutablePathRef framePath = CGPathCreateMutable();
CGPathAddRect(framePath, NULL, frameRect);
// Get the frame that will do the rendering.
CFRange currentRange = CFRangeMake(0, 0);
CTFrameRef frameRef = CTFramesetterCreateFrame(framesetter, currentRange, framePath, NULL);
CGPathRelease(framePath);
// Get the graphics context.
CGContextRef currentContext = UIGraphicsGetCurrentContext();
// Put the text matrix into a known state. This ensures
// that no old scaling factors are left in place.
CGContextSetTextMatrix(currentContext, CGAffineTransformIdentity);
// Core Text draws from the bottom-left corner up, so flip
// the current transform prior to drawing.
CGContextTranslateCTM(currentContext, 0, frameRect.origin.y*2);
CGContextScaleCTM(currentContext, 1.0, -1.0);
// Draw the frame.
CTFrameDraw(frameRef, currentContext);
CGContextScaleCTM(currentContext, 1.0, -1.0);
CGContextTranslateCTM(currentContext, 0, (-1)*frameRect.origin.y*2);
CFRelease(frameRef);
CFRelease(stringRef);
CFRelease(framesetter);
}
しかし、テキストのフォントサイズを大きく太字に設定する必要があります。
使った
CGContextSelectFont(currentContext, "Helvetica", 20, kCGEncodingMacRoman);
と
CGContextSetFontSize ( currentContext, 20);
上記の関数で mr.texian によって提供された回答を参照しますが、変更はありません
生成された pdf を uiwebview で表示しています。
このコードはネットから取得しました。フォント設定のコードをどこで編集すればよいかわかりませんでした。どんな助けでも大歓迎です。