美文网首页iOS开发者进阶
iOS 17.0 YYText UIGraphicsBeginI

iOS 17.0 YYText UIGraphicsBeginI

作者: __Mr_Xie__ | 来源:发表于2024-02-24 17:43 被阅读0次

YYTextAsyncLayer崩溃问题修复

//        UIGraphicsBeginImageContextWithOptions(self.bounds.size, self.opaque, self.contentsScale);
//        CGContextRef context = UIGraphicsGetCurrentContext();
//        if (self.opaque) {
//            CGSize size = self.bounds.size;
//            size.width *= self.contentsScale;
//            size.height *= self.contentsScale;
//            CGContextSaveGState(context); {
//                if (!self.backgroundColor || CGColorGetAlpha(self.backgroundColor) < 1) {
//                    CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);
//                    CGContextAddRect(context, CGRectMake(0, 0, size.width, size.height));
//                    CGContextFillPath(context);
//                }
//                if (self.backgroundColor) {
//                    CGContextSetFillColorWithColor(context, self.backgroundColor);
//                    CGContextAddRect(context, CGRectMake(0, 0, size.width, size.height));
//                    CGContextFillPath(context);
//                }
//            } CGContextRestoreGState(context);
//        }
//        task.display(context, self.bounds.size, ^{return NO;});
//        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
//        UIGraphicsEndImageContext();
//        self.contents = (__bridge id)(image.CGImage);
        UIGraphicsImageRendererFormat *format = [[UIGraphicsImageRendererFormat alloc] init];
              format.opaque = self.opaque;
              format.scale = self.contentsScale;

              UIGraphicsImageRenderer *renderer = [[UIGraphicsImageRenderer alloc] initWithSize:self.bounds.size format:format];
              UIImage *image = [renderer imageWithActions:^(UIGraphicsImageRendererContext * _Nonnull rendererContext) {
                  CGContextRef context = rendererContext.CGContext;
                  if (self.opaque) {
                      CGSize size = self.bounds.size;
                      size.width *= self.contentsScale;
                      size.height *= self.contentsScale;
                      CGContextSaveGState(context); {
                          if (!self.backgroundColor || CGColorGetAlpha(self.backgroundColor) < 1) {
                              CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);
                              CGContextAddRect(context, CGRectMake(0, 0, size.width, size.height));
                              CGContextFillPath(context);
                          }
                          if (self.backgroundColor) {
                              CGContextSetFillColorWithColor(context, self.backgroundColor);
                              CGContextAddRect(context, CGRectMake(0, 0, size.width, size.height));
                              CGContextFillPath(context);
                          }
                      } CGContextRestoreGState(context);
                  }
                  task.display(context, self.bounds.size, ^{return NO;});
              }];

              self.contents = (__bridge id)(image.CGImage);

YBImageBrowser崩溃问题修复

UIImage *YBIBSnapshotView(UIView *view) {
//    UIGraphicsBeginImageContextWithOptions(view.bounds.size, YES, [UIScreen mainScreen].scale);
//    [view drawViewHierarchyInRect:view.bounds afterScreenUpdates:NO];
//    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
//    UIGraphicsEndImageContext();
    
    CGSize size = view.bounds.size;
    UIGraphicsImageRendererFormat *format = [[UIGraphicsImageRendererFormat alloc] init];
    format.scale = [UIScreen mainScreen].scale;
    UIGraphicsImageRenderer *renderer = [[UIGraphicsImageRenderer alloc] initWithSize:size format:format];
    UIImage *image = [renderer imageWithActions:^(UIGraphicsImageRendererContext * _Nonnull rendererContext) {
    }];
    return image;
}

相关文章

  • YYText源码阅读(一):YYLabel

    YYText介绍 YYText 功能强大的 iOS 富文本编辑与显示框架,是 YYKit 的组件之一。在此感谢作者...

  • Carthage 操作步骤

    用Carthage 下载YYText 出现以下问题 carthage update --platform iOS ...

  • ios 截屏模糊问题

    ios 截屏的时候出现图片模糊情况 那么首先去搜索下 在你的代码里面有没有遇到用 UIGraphicsBeginI...

  • YYText的探索学习

    整理YYText不错文章 慢慢学习 使用篇 快速掌握YYTextYYText 库学习总结 iOS tableVie...

  • iOS 图片

    iOS 处理图片的一些小 Tip 移动端图片格式调研 YYText富文本显示 iOS 保持界面流畅的技巧

  • YYText源码分析

    YYText 简单介绍 YYText 是YYKit中的一个富文本显示,编辑组件,拥有YYLabel,YYText...

  • iOS - YYKit 之 YYText

    本文只是让自己加深下理解,方便以后查看,原作者看到有不合适的地方,或者大神们看到有不对的地方希望指正 ~ 原文地址...

  • iOS YYText展开文字

  • iOS YYText 使用详解

    简介 YYText 是一个强大的富文本库.在iOS开发中经常会用到富文本。 下面我们来看看各个功能的实现:先创建一...

  • YYKit之YYText、YYLabel使用总结(更新)

    1.索引 YYText YYLabel 更新 YYText IQKeyboardManager支持 布局问题 如果...

网友评论

    本文标题:iOS 17.0 YYText UIGraphicsBeginI

    本文链接:https://www.haomeiwen.com/subject/dudoadtx.html