2

通过渲染从 UIView 生成 PDF 质量下降 iOS

我有一个名为TTT_WantsToBeRazorSharpView. 这个视图什么都不做,但是用

NSString*txtPleaseHelp = NSLocalizedString(@"Hello, am I blurry again?",@"");
CGContextShowTextAtPoint(ctx, 10, 50, [txtPleaseHelp cStringUsingEncoding:NSMacOSRomanStringEncoding], [txtPleaseHelp length]);

现在视图被绘制了三次UIViewController(一次在 中IB)和两次在代码中使用这些行(比较下图):

 TTT_WantsToBeRazorSharpView *customViewSharp = [[TTT_WantsToBeRazorSharpView alloc] initWithFrame:CGRectMake(10,250, 300, 80)];
 [self.view addSubview:customViewSharp];

 TTT_WantsToBeRazorSharpView *customViewBlurryButIKnowWhy = [[TTT_WantsToBeRazorSharpView alloc] initWithFrame:CGRectMake(361.5, 251.5, 301.5, 80.5)];
 [self.view addSubview:customViewBlurryButIKnowWhy];

第一个代码绘制视图是锐利的,而第二个不是,但没关系,因为 rect 的逗号值(361.5、251.5、301.5、80.5)。

看这张图片: 看这张照片

但我现在的问题是,如果我将视图渲染成 pdf 文档,它就会变得模糊!不知道为什么,请看这里: 模糊的pdf

和 PDF 文件本身 Test.pdf https://raw.github.com/florianbachmann/GeneratePDFfromUIViewButDontWantToLooseQuality/master/Test.pdf

以及将视图呈现为 pdf 的行:

//this is blurry, but why? it can't be the comma coordinates
CGRect customFrame1 = CGRectMake(10,50, 300, 80);
TTT_WantsToBeRazorSharpView *customViewSharp = [[TTT_WantsToBeRazorSharpView alloc] initWithFrame:customFrame1];
CGContextSaveGState(context);
CGContextSetTextMatrix(context, CGAffineTransformIdentity);
CGContextTranslateCTM(context, (int)customFrame1.origin.x, (int)customFrame1.origin.y);
[customViewSharp.layer renderInContext:context];
CGContextRestoreGState(context);

那么为什么renderInContext:context文字模糊呢?

感谢您的所有提示和帮助,我什至为您的勇敢做了一个 GitHub 项目(附来源):https ://github.com/florianbachmann/GeneratePDFfromUIViewButDontWantToLooseQuality

4

3 回答 3

1

尝试这个:

- (void)initValues {
    UIColor *gray = [UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.3f];
    CALayer *l = [self layer];
    l.masksToBounds = YES;
    l.cornerRadius = 10.0f;
    l.borderWidth = 3.0f;
    self.backgroundColor = gray;
    l.backgroundColor = gray.CGColor;
    l.borderColor = gray.CGColor;
}

- (void)drawRect:(CGRect)rect {
    NSLog(@"TTT_WantsToBeRazorSharpView drawRect[%3.2f,%3.2f][%3.2f,%3.2f]",rect.origin.x,rect.origin.y,rect.size.width,rect.size.height);

    // get the graphic context
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextSetShouldSmoothFonts(ctx,YES);

    CGColorRef colorWhite = CGColorRetain([UIColor redColor].CGColor);

    CGContextSetFillColorWithColor(ctx, colorWhite);

    CGContextSelectFont(ctx, "Helvetica-Bold", 24, kCGEncodingMacRoman);
    CGAffineTransform tranformer = CGAffineTransformMakeScale(1.0, -1.0);
    CGContextSetTextMatrix(ctx, tranformer);

    //why is this sucker blurry?
    NSString*txtPleaseHelp = NSLocalizedString(@"Hello, am I blurry again?",@"");
    CGContextShowTextAtPoint(ctx, 10, 50, [txtPleaseHelp cStringUsingEncoding:NSMacOSRomanStringEncoding], [txtPleaseHelp length]);
    CGColorRelease(colorWhite);
}

- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx {

    if (!layer.shouldRasterize && !CGRectIsEmpty(UIGraphicsGetPDFContextBounds())) {
        [self drawRect:self.bounds];
    }
    else {
        [super drawLayer:layer inContext:ctx];
    }
}

我不得不将文本颜色更改为红色以使其可见。因为先写了文字,然后在上面放了一个透明的灰色按钮,它会使白色的文字消失。添加drawLayer方法时,不需要光栅化的所有内容都作为矢量写入pdf,使文本也可选择。

于 2012-09-24T13:55:27.797 回答
0

视图中的文本在 PDF 中呈现为位图而不是矢量图形,这会导致外观模糊。我的猜测是 iOS 渲染引擎在中间位图上绘制文本(我认为是出于颜色合成的目的),然后在目标上下文中渲染该位图。

于 2012-09-24T13:05:47.240 回答
0

我使用以下命令修复模糊文本:

    self.frame = CGRectIntegral(self.frame);

文本模糊的原因是对齐不理想,即点坐标中的分数值,因此文本由于过度抗锯齿而显得模糊。

于 2012-09-24T13:45:45.610 回答