使用iOS 9及更高版本中提供的标准API,如何在绘制文本时实现扭曲效果(如下图所示)?

我怎么想象这可能是有用的,通过指定基本上四个“路径段”,可以是Bézier曲线或直线段(通常可以在CGPath或UIBezierPath中创建的任何单个“元素”)定义四个边缘的形状文本的边界框.

此文本不需要是可选择的.它也可能是一个图像,但我希望找到一种在代码中绘制它的方法,因此我们不必为每个本地化都有单独的图像.我喜欢使用CoreGraphics,Nsstring / NSAttributedString绘图添加,UIKit / TextKit甚至CoreText的答案.我只是决定在使用OpenGL或Metal之前使用图像,但这并不意味着我不会接受一个好的OpenGL或Metal答案,如果它实际上是唯一的方法.

解决方法

只使用CoreText和CoreGraphics即可实现此效果.

我能够使用许多近似技术来实现它.我使用近似(通过CGPathCreatecopyByDashingPath)做的大部分工作,理论上可以用更聪明的数学代替.这可以提高性能并使得结果路径更平滑.

基本上,您可以参数化顶线和基线路径(或接近参数化,就像我所做的那样). (您可以定义一个函数,该函数沿路径获取给定百分比的点.)

CoreText可以将每个字形转换为CGPath.使用一个函数在每个字形路径上运行CGPathApply,该函数将沿路径的每个点映射到沿文本行的匹配百分比.将点映射到水平百分比后,您可以沿着顶线和基线沿该百分比的2个点定义的线进行缩放.根据线的长度与字形的高度来缩放沿该线的点,并创建新的点.将每个缩放点保存到新的CGPath.填写那条路.

我已经在每个字形上使用了CGPathCreatecopyByDashingPath来创建足够的点,我不需要处理数学来曲线化一个长的Lineto元素(例如).这使得数学更简单,但可以使路径看起来有点锯齿状.要解决此问题,您可以将生成的图像传递到平滑过滤器(例如CoreImage),或将路径传递给可以平滑和简化路径的库.

(我原本只是尝试使用CoreImage失真滤镜来解决整个问题,但效果从未产生过正确的效果.)

这是结果(注意使用近似的略微锯齿状边缘):

这里是两行中每一个百分比之间绘制的线条:

这是我如何工作(180行,滚动):

static CGPoint pointAtPercent(CGFloat percent,NSArray<NSValue *> *pointArray) {
    percent = MAX(percent,0.f);
    percent = MIN(percent,1.f);

    int floorIndex = floor(([pointArray count] - 1) * percent);
    int ceilIndex = ceil(([pointArray count] - 1) * percent);

    CGPoint floorPoint = [pointArray[floorIndex] CGPointValue];
    CGPoint ceilPoint = [pointArray[ceilIndex] CGPointValue];

    CGPoint midpoint = CGPointMake((floorPoint.x + ceilPoint.x) / 2.f,(floorPoint.y + ceilPoint.y) / 2.f);

    return midpoint;
}

static void applierSavePoints(void* info,const CGpathelement* element) {
    NSMutableArray *pointArray = (__bridge NSMutableArray*)info;
    // Possible to get higher resolution out of this with more point types,// or by using math to walk the path instead of just saving a bunch of points.
    if (element->type == kCGpathelementMovetoPoint) {
        [pointArray addobject:[NSValue valueWithCGPoint:element->points[0]]];
    }
}

static CGPoint warpPoint(CGPoint origPoint,CGRect pathBounds,CGFloat minPercent,CGFloat maxPercent,NSArray<NSValue*> *baselinePointArray,NSArray<NSValue*> *toplinePointArray) {

    CGFloat mappedPercentWidth = (((origPoint.x - pathBounds.origin.x)/pathBounds.size.width) * (maxPercent-minPercent)) + minPercent;
    CGPoint baselinePoint = pointAtPercent(mappedPercentWidth,baselinePointArray);
    CGPoint toplinePoint = pointAtPercent(mappedPercentWidth,toplinePointArray);

    CGFloat mappedPercentHeight = -origPoint.y/(pathBounds.size.height);

    CGFloat newX = baselinePoint.x + (mappedPercentHeight * (toplinePoint.x - baselinePoint.x));
    CGFloat newY = baselinePoint.y + (mappedPercentHeight * (toplinePoint.y - baselinePoint.y));

    return CGPointMake(newX,newY);
}

static void applierWarpPoints(void* info,const CGpathelement* element) {
    WPWarpInfo *warpInfo = (__bridge WPWarpInfo*) info;

    CGMutablePathRef warpedpath = warpInfo.warpedpath;
    CGRect pathBounds = warpInfo.pathBounds;
    CGFloat minPercent = warpInfo.minPercent;
    CGFloat maxPercent = warpInfo.maxPercent;
    NSArray<NSValue*> *baselinePointArray = warpInfo.baselinePointArray;
    NSArray<NSValue*> *toplinePointArray = warpInfo.toplinePointArray;

    if (element->type == kCGpathelementCloseSubpath) {
        CGPathCloseSubpath(warpedpath);
    }
    // Only allow Moveto at the beginning. Keep everything else connected to remove the dashing.
    else if (element->type == kCGpathelementMovetoPoint && CGPathIsEmpty(warpedpath)) {
        CGPoint origPoint = element->points[0];
        CGPoint warpedPoint = warpPoint(origPoint,pathBounds,minPercent,maxPercent,baselinePointArray,toplinePointArray);
        CGPathMovetoPoint(warpedpath,NULL,warpedPoint.x,warpedPoint.y);
    }
    else if (element->type == kCGpathelementAddLinetoPoint || element->type == kCGpathelementMovetoPoint) {
        CGPoint origPoint = element->points[0];
        CGPoint warpedPoint = warpPoint(origPoint,toplinePointArray);
        CGPathAddLinetoPoint(warpedpath,warpedPoint.y);
    }
    else if (element->type == kCGpathelementAddQuadCurvetoPoint) {
        CGPoint origCtrlPoint = element->points[0];
        CGPoint warpedCtrlPoint = warpPoint(origCtrlPoint,toplinePointArray);
        CGPoint origPoint = element->points[1];
        CGPoint warpedPoint = warpPoint(origPoint,toplinePointArray);
        CGPathAddQuadCurvetoPoint(warpedpath,warpedCtrlPoint.x,warpedCtrlPoint.y,warpedPoint.y);
    }
    else if (element->type == kCGpathelementAddCurvetoPoint) {
        CGPoint origCtrlPoint1 = element->points[0];
        CGPoint warpedCtrlPoint1 = warpPoint(origCtrlPoint1,toplinePointArray);
        CGPoint origCtrlPoint2 = element->points[1];
        CGPoint warpedCtrlPoint2 = warpPoint(origCtrlPoint2,toplinePointArray);
        CGPoint origPoint = element->points[2];
        CGPoint warpedPoint = warpPoint(origPoint,toplinePointArray);
        CGPathAddCurvetoPoint(warpedpath,warpedCtrlPoint1.x,warpedCtrlPoint1.y,warpedCtrlPoint2.x,warpedCtrlPoint2.y,warpedPoint.y);
    }
    else {
        NSLog(@"Error: UnkNown Point Type");
    }
}

- (NSArray<NSValue *> *)pointArrayFromPath:(CGPathRef)path {
    NSMutableArray<NSValue*> *pointArray = [[NSMutableArray alloc] init];
    CGFloat lengths[2] = { 1,0 };
    CGPathRef dashedpath = CGPathCreatecopyByDashingPath(path,0.f,lengths,2);
    CGPathApply(dashedpath,(__bridge void * _Nullable)(pointArray),applierSavePoints);
    CGPathRelease(dashedpath);
    return pointArray;
}

- (CGPathRef)createWarpedpathFromPath:(CGPathRef)origPath withBaseline:(NSArray<NSValue *> *)baseline topLine:(NSArray<NSValue *> *)topLine fromPercent:(CGFloat)startPercent toPercent:(CGFloat)endPercent {
    CGFloat lengths[2] = { 1,0 };
    CGPathRef dashedpath = CGPathCreatecopyByDashingPath(origPath,2);

    // WPWarpInfo is just a class I made to hold some stuff.
    // I needed it to hold some NSArrays,so a struct wouldn't work.
    WPWarpInfo *warpInfo = [[WPWarpInfo alloc] initWithOrigPath:origPath minPercent:startPercent maxPercent:endPercent baselinePointArray:baseline toplinePointArray:topLine];

    CGPathApply(dashedpath,(__bridge void * _Nullable)(warpInfo),applierWarpPoints);
    CGPathRelease(dashedpath);

    return warpInfo.warpedpath;
}

- (void)drawRect:(CGRect)rect {
    CGContextRef ctx = UIGraphicsGetCurrentContext();

    CGMutablePathRef toplinePath = CGPathCreateMutable();
    CGPathAddArc(toplinePath,187.5,210.f,M_PI,2 * M_PI,NO);
    NSArray<NSValue *> * toplinePoints = [self pointArrayFromPath:toplinePath];
    CGContextAddpath(ctx,toplinePath);
    CGContextSetstrokeColorWithColor(ctx,[UIColor redColor].CGColor);
    CGContextstrokePath(ctx);
    CGPathRelease(toplinePath);

    CGMutablePathRef baselinePath = CGPathCreateMutable();
    CGPathAddArc(baselinePath,170.f,250.f,50.f,NO);
    CGPathAddArc(baselinePath,270.f,YES);
    NSArray<NSValue *> * baselinePoints = [self pointArrayFromPath:baselinePath];
    CGContextAddpath(ctx,baselinePath);
    CGContextSetstrokeColorWithColor(ctx,[UIColor redColor].CGColor);
    CGContextstrokePath(ctx);
    CGPathRelease(baselinePath);


    // Draw 100 of the connecting lines between the strokes.
    /*for (int i = 0; i < 100; i++) {
        CGPoint point1 = pointAtPercent(i * 0.01,toplinePoints);
        CGPoint point2 = pointAtPercent(i * 0.01,baselinePoints);

        CGContextMovetoPoint(ctx,point1.x,point1.y);
        CGContextAddLinetoPoint(ctx,point2.x,point2.y);

        CGContextSetstrokeColorWithColor(ctx,[UIColor blackColor].CGColor);
        CGContextstrokePath(ctx);
    }*/


    NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWithString:@"WARP"];
    UIFont *font = [UIFont fontWithName:@"Helvetica" size:144];
    [attrString addAttribute:NSFontAttributeName value:font range:NSMakeRange(0,[attrString length])];

    CTLineRef line = CTLineCreateWithAttributedString((__bridge CFAttributedStringRef)attrString);
    CFArrayRef runArray = CTLineGetGlyphRuns(line);
    // Just get the first run for this.
    CTRunRef run = (CTRunRef)CFArrayGetValueAtIndex(runArray,0);
    CTFontRef runFont = CFDictionaryGetValue(CTRunGetAttributes(run),kCTFontAttributeName);
    CGFloat fullWidth = (CGFloat)CTRunGetTypographicBounds(run,CFRangeMake(0,CTRunGetGlyphCount(run)),NULL);
    CGFloat currentOffset = 0.f;

    for (int curGlyph = 0; curGlyph < CTRunGetGlyphCount(run); curGlyph++) {
        CFRange glyphRange = CFRangeMake(curGlyph,1);
        CGFloat currentGlyphWidth = (CGFloat)CTRunGetTypographicBounds(run,glyphRange,NULL);

        CGFloat currentGlyphOffsetPercent = currentOffset/fullWidth;
        CGFloat currentGlyPHPercentWidth = currentGlyphWidth/fullWidth;
        currentOffset += currentGlyphWidth;

        CGGlyph glyph;
        CGPoint position;
        CTRunGetGlyphs(run,&glyph);
        CTRunGetPositions(run,&position);

        CGAffineTransform flipTransform = CGAffineTransformMakeScale(1,-1);

        CGPathRef glyPHPath = CTFontCreatePathForGlyph(runFont,glyph,&flipTransform);
        CGPathRef warpedGylPHPath = [self createWarpedpathFromPath:glyPHPath withBaseline:baselinePoints topLine:toplinePoints fromPercent:currentGlyphOffsetPercent toPercent:currentGlyphOffsetPercent+currentGlyPHPercentWidth];
        CGPathRelease(glyPHPath);

        CGContextAddpath(ctx,warpedGylPHPath);
        CGContextSetFillColorWithColor(ctx,[UIColor blackColor].CGColor);
        CGContextFillPath(ctx);

        CGPathRelease(warpedGylPHPath);
    }

    CFRelease(line);
}

包含的代码也远非“完整”.例如,CoreText的许多部分都是我浏览过的.带有下行器的雕文确实有效,但效果不佳.有些人认为必须考虑如何处理这些问题.另外,我的字母间距很粗糙.

显然,这是一个非常重要的问题.我确信有更好的方法可以使用能够有效扭曲Bezier路径的第三方库.但是,出于智力运动的目的,看看是否可以在没有第三方库的情况下完成,我认为这表明它可以.

资料来源:https://developer.apple.com/library/mac/samplecode/CoreTextArcCocoa/Introduction/Intro.html

资料来源:http://www.planetclegg.com/projects/WarpingTextToSplines.html

来源(使数学更聪明):Get position of path at time

在iOS上绘制扭曲的文本的更多相关文章

  1. 使用layui实现左侧菜单栏及动态操作tab项的方法

    这篇文章主要介绍了使用layui实现左侧菜单栏及动态操作tab项的方法,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

  2. 在iOS上绘制扭曲的文本

    使用iOS9及更高版本中提供的标准API,如何在绘制文本时实现扭曲效果?

  3. ios – 如果Element符合给定的协议,则扩展阵列以符合协议

    如果是这样,语法是什么?解决方法Swift4.2在Swift4.2中,我能够使用符合这样的协议的元素扩展数组:

  4. ios – 如何在swift中获取2数组的常见元素列表

    (双关语)编辑:,你可以这样做这个实现是丑陋的.

  5. Swift 函数Count,Filter,Map,Reduce

    Count-统计数量文档示例Filter-条件过滤文档示例-过滤长度大于4的字符串也可以简化Map-映射集合类型,返回数组文档示例同样可以简化Reduce-把数组结合到一起文档示例可以简化进一步简化

  6. Swift语法——Swift Sequences 探究

    今天看到Array的API中有这么一个声明的函数:函数名为extend,所需参数是S类型的newElements,而S首先要实现SequenceType协议。看看APTGeneratorType必须要实现一个函数next(),它的作用就是返回一个Element,注释里说的很清楚:它的作用就是一直返回元素,直到最后。1)Swift调用generate()来生成了一个Generator,这个对象是一个私有的变量即__g;2)__g调用了next()函数,返回了一个optional类型对象element?。这个

  7. Swift 中数组和链表的性能

    尽管如此,我觉得链表的例子非常有意思,而且值得实现和把玩,它有可能会提升数组reduce方法的性能。同时我认为Swift的一些额外特性很有趣:比如它的枚举可以灵活的在对象和具体方法中自由选择,以及“默认安全”。这本书未来的版本可能就会用Swift作为实现语言。拷贝数组消耗的时间是线性的。使用链表还有其他的代价——统计链表节点的个数所需要的时间是统计数组元素个数时间的两倍,因为遍历链表时的间接寻址方式是需要消耗时间的。

  8. Swift中集合类型indexOf(Element)提示错误的解决办法

    简单的竟然出错了!其实看一下错误描述,大概就可以猜到Swift此时不知道你自定义类是如何比较的,如果是Swift内置的各种struct和class就不存在这个问题,比如:解决很简单,添加一个==方法即可:最后补充一下,早期版本的Swift还有一个find函数可以完成类似的功能,但是新版本已经没有该函数了,So你懂的…

  9. swift map reduce 获取下标(index)的方法

    原文:http://stackoverflow.com/questions/28012205/map-or-reduce-with-index-in-swiftYoucanuseenumeratetoconvertasequence(Array,String,etc.)toasequenceoftupleswithanintegercounterandandelementpairedtogethe

  10. Swift中的map 和 flatMap 原理及用法

    map和flatMap是Swift中两个常用的函数,它们体现了Swift中很多的特性。对于简单的使用来说,它们的接口并不复杂,但它们内部的机制还是非常值得研究的,能够帮助我们够好的理解Swift语言。map简介首先,咱们说说map函数如何使用。letnumbers=[1,2,3,4]letresult=numbers.map{$0+2}print//[3,4,5,6]map方法接受一个闭包作为参数,然后它会遍历整个numbers数组,并对数组中每一个元素执行闭包中定义的操作。比如咱们这个例子里面的闭包是讲

随机推荐

  1. iOS实现拖拽View跟随手指浮动效果

    这篇文章主要为大家详细介绍了iOS实现拖拽View跟随手指浮动,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

  2. iOS – genstrings:无法连接到输出目录en.lproj

    使用我桌面上的项目文件夹,我启动终端输入:cd然后将我的项目文件夹拖到终端,它给了我路径.然后我将这行代码粘贴到终端中找.-name*.m|xargsgenstrings-oen.lproj我在终端中收到此错误消息:genstrings:无法连接到输出目录en.lproj它多次打印这行,然后说我的项目是一个目录的路径?没有.strings文件.对我做错了什么的想法?

  3. iOS 7 UIButtonBarItem图像没有色调

    如何确保按钮图标采用全局色调?解决方法只是想将其转换为根注释,以便为“回答”复选标记提供更好的上下文,并提供更好的格式.我能想出这个!

  4. ios – 在自定义相机层的AVFoundation中自动对焦和自动曝光

    为AVFoundation定制图层相机创建精确的自动对焦和曝光的最佳方法是什么?

  5. ios – Xcode找不到Alamofire,错误:没有这样的模块’Alamofire’

    我正在尝试按照github(https://github.com/Alamofire/Alamofire#cocoapods)指令将Alamofire包含在我的Swift项目中.我创建了一个新项目,导航到项目目录并运行此命令sudogeminstallcocoapods.然后我面临以下错误:搜索后我设法通过运行此命令安装cocoapodssudogeminstall-n/usr/local/bin

  6. ios – 在没有iPhone6s或更新的情况下测试ARKit

    我在决定下载Xcode9之前.我想玩新的框架–ARKit.我知道要用ARKit运行app我需要一个带有A9芯片或更新版本的设备.不幸的是我有一个较旧的.我的问题是已经下载了新Xcode的人.在我的情况下有可能运行ARKit应用程序吗?那个或其他任何模拟器?任何想法或我将不得不购买新设备?解决方法任何iOS11设备都可以使用ARKit,但是具有高质量AR体验的全球跟踪功能需要使用A9或更高版本处理器的设备.使用iOS11测试版更新您的设备是必要的.

  7. 将iOS应用移植到Android

    我们制作了一个具有2000个目标c类的退出大型iOS应用程序.我想知道有一个最佳实践指南将其移植到Android?此外,由于我们的应用程序大量使用UINavigation和UIView控制器,我想知道在Android上有类似的模型和实现.谢谢到目前为止,guenter解决方法老实说,我认为你正在计划的只是制作难以维护的糟糕代码.我意识到这听起来像很多工作,但从长远来看它会更容易,我只是将应用程序的概念“移植”到android并从头开始编写.

  8. ios – 在Swift中覆盖Objective C类方法

    我是Swift的初学者,我正在尝试在Swift项目中使用JSONModel.我想从JSONModel覆盖方法keyMapper,但我没有找到如何覆盖模型类中的Objective-C类方法.该方法的签名是:我怎样才能做到这一点?解决方法您可以像覆盖实例方法一样执行此操作,但使用class关键字除外:

  9. ios – 在WKWebView中获取链接URL

    我想在WKWebView中获取tapped链接的url.链接采用自定义格式,可触发应用中的某些操作.例如HTTP://我的网站/帮助#深层链接对讲.我这样使用KVO:这在第一次点击链接时效果很好.但是,如果我连续两次点击相同的链接,它将不报告链接点击.是否有解决方法来解决这个问题,以便我可以检测每个点击并获取链接?任何关于这个的指针都会很棒!解决方法像这样更改addobserver在observeValue函数中,您可以获得两个值

  10. ios – 在Swift的UIView中找到UILabel

    我正在尝试在我的UIViewControllers的超级视图中找到我的UILabels.这是我的代码:这是在Objective-C中推荐的方式,但是在Swift中我只得到UIViews和CALayer.我肯定在提供给这个方法的视图中有UILabel.我错过了什么?我的UIViewController中的调用:解决方法使用函数式编程概念可以更轻松地实现这一目标.

返回
顶部