iOS 绘图学习笔记 - (2)图像中的几何问题

Points vs Pixels

iOS中Points表示屏幕或者绘画中的逻辑点, 我们在绘画以及设置控件坐标等等操作,都是使用的Point作为单位的. Pixel是一个物理像素, 是颜色和亮度的最小的承载单位.

Scale

iOS中为了标明 Point 和pixel的换算关系, 在UIScreen中有一个scale属性来标注.

View 坐标系

iOS中View的坐标系是top-left的坐标系.

Frames 和 bounds

Views 有两个重要的坐标系,frame 表示view在父view的坐标, bounds表示view在自己的坐标系中的位置(改变bounds可以用来展示view自己的某一块区域, scrollView).

不同坐标系之间的转换

iOS的UIView提供了不同View之间坐标系的转换方法:

CGPoint convertedPoint = [outerView convertPoint:samplePoint fromView:grayView];

其中,这里转换的过程是从 fromView的坐标系 -> toView的坐标系

重要的数据结构

最重要的是Transform -> 用来表示从一个坐标系到另外一个坐标系的映射关系.

将这些变量转化成Objects

strings

CGPoint - NSStringfromCGPoint() - CGPointFromString
CGSize - NSStringFromCGSize() - CGSizeFromString
CGRect - NSStringFromCGRect() - CGRectFromtString
CGAffineTransfrom - NSStringFromAffineTransform() - CGAffineTransformString()

Dictionary

通常CGPoint, CGSize, CGRect,CGAffineTransform都是用CFDictionaryRef来bridge数据.

Type - Convert to Dict - Convert from Dict
CGPoint - CGPointCreateDictionaryRepresentation - CGPointMakeWithDictionaryRepresentation
CGSize - CGSizeCreateDictionaryRepresentation - CGSizeMakeWithDictionaryRepresentation
CGRect - CGRectCreateDictionaryRepresentation - CGRectMakeWithDictionaryRepresentation

// Convert CGRect to NSDictionary representation
CGRect testRect = CGRectMake(1, 2, 3, 4);
NSDictionary *dict = (__bridge_transfer NSDictionary *)CGRectCreateDictionaryRepresentation(testRect);
NSLog(@"Dictionary: %@", dict);

// Convert NSDictionary representation to CGRect
CGRect outputRect;
BOOL success = CGRectMakeWithDictionaryRepresentation((__bridge CFDictionaryRef)dict, &outputRect);
if (success) {
    NSLog(@"Rect: %@", NSStringFromCGRect(outputRect));
}
Values

iOS中使用NSValue可以提供一个C data的包装类(所有的c的数据条目都可以用它进行包装).

Values are most useful for adding structures to arrays and dictionaries for in-app algorithms.

CGPoint - +valueWithCGPoint: - CGPointValue
CGSize - +valueWithCGSize: - CGSizeValue
CGRect - +valueWithCGRect: - CGRectValue
CGAffineTransform - +valueWithCGAffineTransform - CGAffineTransfromValue

Rectangle便利方法

CGRect RectMakeRect(CGPoint origin, CGSize size) {
    return (CGRect){.origin = origin, .size = size};
}

CGPoint RectGetCenter(CGRect rect) {
    return CGPointMake(CGRectGetMidX(rect), CGRectGetMidY(rect));
}

Fitting 和 Filling

当我们适配一个图片到另外一个或大或小的空间时候, 我们需要resize这个绘图, 因为我们需要计算一个targetSize去拉伸或缩放. 有四种常见的resize方法: centering, fitting, filling, and squeezing.

这四种方式和View的contentMode息息相关

Centering

这里使用的原始图片使用原始scale, 但是直接在目的地的center中心展示. 因此如果原图过大, 会被crop, 如果太小, 周边会留白.

Fitting

Fitting 原始图片到目的target, 因此需要修改scale (aspect ratio不变), 这个scale值由以下方法确定: 水平 或者 垂直贴合.

// Multiply the size components by the factor
CGSize SizeScaleByFactor(CGSize aSize, CGFloat factor) {
    return CGSizeMake(aSize.width * factor, aSize.height * factor);
}

// Calculate scale for fitting a size to a destination CGFloat AspectScaleFit(CGSize sourceSize, CGRect destRect) {
    CGSize destSize = destRect.size;
    CGFloat scaleW = destSize.width / sourceSize.width; 
    CGFloat scaleH = destSize.height / sourceSize.height;
    return MIN(scaleW, scaleH);
}

// Return a rect fitting a source to a destination CGRect RectByFittingInRect(CGRect sourceRect, CGRect destinationRect) {
    CGFloat aspect = AspectScaleFit(sourceRect.size, destinationRect);
    CGSize targetSize = SizeScaleByFactor(sourceRect.size, aspect);
    return RectAroundCenter( RectGetCenter(destinationRect), targetSize);
}
Filling

Filling 同Fitting也是要求至少有一边贴合, 但是另一个需求是完全覆盖.ensures that every pixel of the destination space corresponds to the drawing area within the source image.

// Calculate scale for filling a destination
CGFloat AspectScaleFill(CGSize sourceSize, CGRect destRect) {
    CGSize destSize = destRect.size;
    CGFloat scaleW = destSize.width / sourceSize.width; 
    CGFloat scaleH = destSize.height / sourceSize.height;
    return MAX(scaleW, scaleH);
}

// Return a rect that fills the destination
CGRect RectByFillingRect(CGRect sourceRect, CGRect destinationRect){
    CGFloat aspect = AspectScaleFill(sourceRect.size, destinationRect);
    CGSize targetSize = SizeScaleByFactor(sourceRect.size, aspect);
    return RectAroundCenter(RectGetCenter(destinationRect), targetSize);
}
squeezing

不常用.不能 aspect ratio.

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容