iOS 6 アプリで見栄えの良い PDF を生成したいと考えています。
私はもう試した:
- コンテキストで UIView をレンダリングする
- CoreText の使用
- NSString drawInRect の使用
- UILabel drawRect の使用
コード例を次に示します。
-(CGContextRef) createPDFContext:(CGRect)inMediaBox path:(NSString *) path
{
CGContextRef myOutContext = NULL;
NSURL * url;
url = [NSURL fileURLWithPath:path];
if (url != NULL) {
myOutContext = CGPDFContextCreateWithURL ((__bridge CFURLRef) url,
&inMediaBox,
NULL);
}
return myOutContext;
}
-(void)savePdf:(NSString *)outputPath
{
if (!pageViews.count)
return;
UIView * first = [pageViews objectAtIndex:0];
CGContextRef pdfContext = [self createPDFContext:CGRectMake(0, 0, first.frame.size.width, first.frame.size.height) path:outputPath];
for(UIView * v in pageViews)
{
CGContextBeginPage (pdfContext,nil);
CGAffineTransform transform = CGAffineTransformIdentity;
transform = CGAffineTransformMakeTranslation(0, (int)(v.frame.size.height));
transform = CGAffineTransformScale(transform, 1, -1);
CGContextConcatCTM(pdfContext, transform);
CGContextSetFillColorWithColor(pdfContext, [UIColor whiteColor].CGColor);
CGContextFillRect(pdfContext, v.frame);
[v.layer renderInContext:pdfContext];
CGContextEndPage (pdfContext);
}
CGContextRelease (pdfContext);
}
レンダリングされる UIView には、UIImageView + 一連の UILabels (境界線のあるものとないもの) のみが含まれます。
また、stackoverflow で見つかった提案を試しました: UILabel をサブクラス化し、これを実行します:
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx {
BOOL isPDF = !CGRectIsEmpty(UIGraphicsGetPDFContextBounds());
if (!layer.shouldRasterize && isPDF)
[self drawRect:self.bounds]; // draw unrasterized
else
[super drawLayer:layer inContext:ctx];
}
しかし、それも何も変わりませんでした。
私が何をしても、プレビューでPDFを開くと、テキスト部分はブロックとして選択できますが、文字ごとには選択できません.pdfをズームすると、実際にはビットマップ画像であることがわかります。
助言がありますか?