ToB企服应用市场:ToB评测及商务社交产业平台

标题: iOS 17.0 YYText UIGraphicsBeginImageContextWithOptions 瓦解处理 [打印本页]

作者: 宝塔山    时间: 2024-6-21 13:11
标题: iOS 17.0 YYText UIGraphicsBeginImageContextWithOptions 瓦解处理
在iOS17上,YYText会报以下错误:
   UIGraphicsBeginImageContext() failed to allocate CGBitampContext: size={0, 0}, scale=3.000000, bitmapInfo=0x2002. Use UIGraphicsImageRenderer to avoid this assert.
  办理方法如下:
在YYTextAsyncLayer.m文件中,_displayAsyncBOOL)async 方法中。
原代码:
  1.         UIGraphicsBeginImageContextWithOptions(self.bounds.size, self.opaque, self.contentsScale);
  2.         CGContextRef context = UIGraphicsGetCurrentContext();
  3.         if (self.opaque) {
  4.                 CGSize size = self.bounds.size;
  5.                 size.width *= self.contentsScale;
  6.                 size.height *= self.contentsScale;
  7.                 CGContextSaveGState(context); {
  8.                         if (!self.backgroundColor || CGColorGetAlpha(self.backgroundColor) < 1) {
  9.                                 CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);
  10.                                 CGContextAddRect(context, CGRectMake(0, 0, size.width, size.height));
  11.                                 CGContextFillPath(context);
  12.                         }
  13.                         if (self.backgroundColor) {
  14.                                 CGContextSetFillColorWithColor(context, self.backgroundColor);
  15.                                 CGContextAddRect(context, CGRectMake(0, 0, size.width, size.height));
  16.                                 CGContextFillPath(context);
  17.                         }
  18.                 } CGContextRestoreGState(context);
  19.         }
  20.         task.display(context, self.bounds.size, ^{return NO;});
  21.         UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
  22.         UIGraphicsEndImageContext();
  23.         self.contents = (__bridge id)(image.CGImage);
复制代码
修复后的代码:
  1. UIGraphicsImageRendererFormat *format = [[UIGraphicsImageRendererFormat alloc] init];
  2.         format.opaque = self.opaque;
  3.         format.scale = self.contentsScale;
  4.         UIGraphicsImageRenderer *renderer = [[UIGraphicsImageRenderer alloc] initWithSize:self.bounds.size format:format];
  5.         UIImage *image = [renderer imageWithActions:^(UIGraphicsImageRendererContext * _Nonnull rendererContext) {
  6.             CGContextRef context = rendererContext.CGContext;
  7.             if (self.opaque) {
  8.                 CGSize size = self.bounds.size;
  9.                 size.width *= self.contentsScale;
  10.                 size.height *= self.contentsScale;
  11.                 CGContextSaveGState(context); {
  12.                     if (!self.backgroundColor || CGColorGetAlpha(self.backgroundColor) < 1) {
  13.                         CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);
  14.                         CGContextAddRect(context, CGRectMake(0, 0, size.width, size.height));
  15.                         CGContextFillPath(context);
  16.                     }
  17.                     if (self.backgroundColor) {
  18.                         CGContextSetFillColorWithColor(context, self.backgroundColor);
  19.                         CGContextAddRect(context, CGRectMake(0, 0, size.width, size.height));
  20.                         CGContextFillPath(context);
  21.                     }
  22.                 } CGContextRestoreGState(context);
  23.             }
  24.             task.display(context, self.bounds.size, ^{return NO;});
  25.         }];
  26.         self.contents = (__bridge id)(image.CGImage);
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/) Powered by Discuz! X3.4