CGContextRef

简介: <p style="color:rgb(51,51,51); font-family:Arial; font-size:14px; line-height:26px; margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px"> Graphics Context是图形上下文,可以将其理解为一块画布,我们可

Graphics Context是图形上下文,可以将其理解为一块画布,我们可以在上面进行绘画操作,绘制完成后,将画布放到我们的view中显示即可,view看作是一个画框.

Quartz提供了以下几种类型的Graphics Context:

  • Bitmap Graphics Context
  • PDF Graphics Context
  • Window Graphics Context
  • Layer Context
  • Post Graphics Context

先熟悉下CGContextRef

Functions by Task--按接口功能分

1、Managing Graphics Contexts--管理图形上下文
CGContextFlush       强制所有挂起的绘图操作在一个窗口上下文中立即被渲染到目标设备。
CGContextGetTypeID   返回Quartz图形上下文的类型标识符。
CGContextRelease     图形上下文的引用计数-1。
CGContextRetain      图形上下文的引用计数+1。
CGContextSynchronize 将一个窗口的图像上下文内容更新,即所有的绘图操作都会在下次同步到窗口上

2、Saving and Restoring the Current Graphics State--保存和恢复当前图形状态
CGContextSaveGState 将当前图形状态的副本PUSH到图形状态栈中;
  每个图形上下文维护一个保存图形状态的堆栈。需要注意的是,注意,当前绘图环境的所有方面都是图形状态的元素。比如当前路径的图像状态是不考虑的,所以当调用这
个函数的时候是不保存的。保存的图像状态如下:
  CTM (current transformation matrix)
  clip region
  image interpolation quality
  line width
  line join
  miter limit
  line cap
  line dash
  flatness
  should anti-alias
  rendering intent
  fill color space
  stroke color space
  fill color
  stroke color
  alpha value
  font
  font size
  character spacing
  text drawing mode
  shadow parameters
  the pattern phase
  the font smoothing parameter
  blend mode
CGContextRestoreGState 将当前图形状态设置为最近一次保存的状态,即恢复状态。

3、Getting and Setting Graphics State Parameters--获取和设置图形状态参数
CGContextGetInterpolationQuality  返回当前的图形上下文的插值(插值(Interpolation)是在不天生像素的环境下增长图像像素大小的一种方法,在周围像素色彩
的根蒂根基上用算术公式计算亡失像素的色彩。)质量水平。
CGContextSetFlatness              设置弯曲的路径中的图形上下文的准确性。
CGContextSetInterpolationQuality  设置图形上下文的插值质量水平。
CGContextSetLineCap               图形环境中的画线的端点的样式设置。
CGContextSetLineDash              设置图形上下文中的虚线的模式。
CGContextSetLineJoin              设置图像上下文中的接接线的样式。
CGContextSetLineWidth             设置图像上下文中的线的宽度。
CGContextSetMiterLimit            设置图像上下文中的连接线的斜接限制。
CGContextSetPatternPhase          设置一个上下文的段落模式。
CGContextSetFillPattern           在指定的图形上下文设置的填充图案模式。
CGContextSetRenderingIntent       在当前图形状态设置渲染意向。
CGContextSetShouldAntialias       设置图形上下文的抗锯齿开启或关闭。
CGContextSetStrokePattern         在指定的图形上下文设置描边图案。
CGContextSetBlendMode
CGContextSetAllowsAntialiasing
CGContextSetAllowsFontSmoothing
CGContextSetShouldSmoothFonts
CGContextSetAllowsFontSubpixelPositioning
CGContextSetShouldSubpixelPositionFonts
CGContextSetAllowsFontSubpixelQuantization
CGContextSetShouldSubpixelQuantizeFonts

4、Constructing Paths--构建路径
These functions are used to define the geometry of the current path. For more information on how paths are defined, see CGPath Reference.
这些函数是用来定义路径的几何形状。对于如何定义的路径的更多信息,请参阅CGPath参考。
CGContextAddArc
CGContextAddArcToPoint
CGContextAddCurveToPoint
CGContextAddLines
CGContextAddLineToPoint
CGContextAddPath
CGContextCopyPath
CGContextAddQuadCurveToPoint
CGContextAddRect
CGContextAddRects
CGContextBeginPath
CGContextClosePath
CGContextMoveToPoint
CGContextAddEllipseInRect

5、Painting Paths--绘画路径
These functions are used to stroke along or fill in the current path.
这些功能是用于边缘或填充在当前路径。
CGContextClearRect
CGContextDrawPath
CGContextEOFillPath
CGContextFillPath
CGContextFillRect
CGContextFillRects
CGContextFillEllipseInRect
CGContextStrokePath
CGContextStrokeRect
CGContextStrokeRectWithWidth
CGContextReplacePathWithStrokedPath
CGContextStrokeEllipseInRect
CGContextStrokeLineSegments

6、Getting Information About Paths--获取关于路径的信息
CGContextIsPathEmpty            表示目前的路径是否包含任何的子路径。
CGContextGetPathCurrentPoint    返回一个非空的路径中的当前点。
CGContextGetPathBoundingBox     返回包含当前路径的最小矩形。
CGContextPathContainsPoint      检查当前路径中是否包含指定的点。

7、Modifying Clipping Paths--修改剪贴路径
CGContextClip                 修改当前剪贴路径,使用非零绕数规则。
CGContextEOClip               修改当前剪贴路径,使用奇偶规则。
CGContextClipToRect
CGContextClipToRects
CGContextGetClipBoundingBox
CGContextClipToMask

8、Setting Color, Color Space, and Shadow Values--设置颜色,色彩空间和阴影值
CGContextSetAlpha
CGContextSetCMYKFillColor
CGContextSetFillColor
CGContextSetCMYKStrokeColor
CGContextSetFillColorSpace
CGContextSetFillColorWithColor
CGContextSetGrayFillColor
CGContextSetGrayStrokeColor
CGContextSetRGBFillColor
CGContextSetRGBStrokeColor
CGContextSetShadow
CGContextSetShadowWithColor
CGContextSetStrokeColor
CGContextSetStrokeColorSpace
CGContextSetStrokeColorWithColor

9、Transforming User Space--转换用户空间
These functions allow you to examine and change the current transformation matrix (CTM) in a graphics context.
这些功能允许你检查和更改图形上下文的当前转换矩阵(CTM)。
CGContextConcatCTM
CGContextGetCTM
CGContextRotateCTM
CGContextScaleCTM
CGContextTranslateCTM

10、Using Transparency Layers--使用透明图层
CGContextBeginTransparencyLayer          开始一个透明层。
  直到相应的调用CGContextEndTransparencyLayer,在指定范围内的所有后续绘制操作组合到一个完全透明的背景(它被视为一个单独的目标缓冲区从上下文)。
调用CGContextEndTransparencyLayer,使用全局alpha和阴影的上下文状态合成到上下文中。
CGContextBeginTransparencyLayerWithRect  开始透明度层,它的边界是指定的矩形,其内容是有界的。
CGContextEndTransparencyLayer            结束一个透明层。

11、Drawing an Image to a Graphics Context--绘制图像图形上下文
CGContextDrawTiledImage 重复绘制的图像,扩展到提供的矩形,填补当前剪辑区域。
CGContextDrawImage      绘制图像到图形上下文中。

12、Drawing PDF Content to a Graphics Context--绘制一个图形上下文的PDF内容
CGContextDrawPDFPage    绘制一个PDF页面到当前的用户空间。

13、Drawing With a Gradient--制图渐变
CGContextDrawLinearGradient  绘制一个渐变填充定义的出发点和落脚点沿线变化。
CGContextDrawRadialGradient  绘制一个沿着由所提供的开始和结束的圆限定的区域变化的渐变填充。

14、Drawing With a Shading--制图底纹
CGContextDrawShading  使用指定的阴影的背景,填充剪切路径。

15、Setting Up a Page-Based Graphics Context--建立一个基于页面的图形上下文
CGContextBeginPage    基于页面的图形上下文中开始了新的一页。
CGContextEndPage      在基于页面的图形上下文结束当前的页面。

16、Drawing Glyphs--绘制字形
CGContextShowGlyphs             在当前文本位置显示一个数组的字形。
CGContextShowGlyphsAtPoint      在指定的位置显示一个数组的字形。
CGContextShowGlyphsWithAdvances 绘制具有不同的偏移量的一个数组字形。
CGContextShowGlyphsAtPositions  在所提供的位置绘制字形。

17、Drawing Text--绘制文本
CGContextGetTextMatrix        返回当前文本矩阵。
CGContextGetTextPosition      返回在绘制文本的位置。
CGContextSelectFont           设置在一个图形上下文的字体和字体大小。
CGContextSetCharacterSpacing  设置当前字符间距。
CGContextSetFont              设置上下文的字体。
CGContextSetFontSize          设置上下文的字体大小。
CGContextSetTextDrawingMode   设置当前文本的绘图模式。
CGContextSetTextMatrix        设置当前文本矩阵。
CGContextSetTextPosition      设置要绘制文本的位置。
CGContextShowText             在当前文本位置,由目前的文本矩阵指定的点显示一个字符数组。
CGContextShowTextAtPoint      在指定的位置显示一个字符串。

18、Converting Between Device Space and User Space--设备空间和用户空间之间的转换
CGContextGetUserSpaceToDeviceSpaceTransform
CGContextConvertPointToDeviceSpace
CGContextConvertPointToUserSpace
CGContextConvertSizeToDeviceSpace
CGContextConvertSizeToUserSpace
CGContextConvertRectToDeviceSpace
CGContextConvertRectToUserSpace
目录
相关文章
|
10月前
|
缓存 关系型数据库 MySQL
【深入了解MySQL】优化查询性能与数据库设计的深度总结
本文详细介绍了MySQL查询优化和数据库设计技巧,涵盖基础优化、高级技巧及性能监控。
1725 1
|
存储 SQL 关系型数据库
【MySQL调优】如何进行MySQL调优?从参数、数据建模、索引、SQL语句等方向,三万字详细解读MySQL的性能优化方案(2024版)
MySQL调优主要分为三个步骤:监控报警、排查慢SQL、MySQL调优。 排查慢SQL:开启慢查询日志 、找出最慢的几条SQL、分析查询计划 。 MySQL调优: 基础优化:缓存优化、硬件优化、参数优化、定期清理垃圾、使用合适的存储引擎、读写分离、分库分表; 表设计优化:数据类型优化、冷热数据分表等。 索引优化:考虑索引失效的11个场景、遵循索引设计原则、连接查询优化、排序优化、深分页查询优化、覆盖索引、索引下推、用普通索引等。 SQL优化。
1615 15
【MySQL调优】如何进行MySQL调优?从参数、数据建模、索引、SQL语句等方向,三万字详细解读MySQL的性能优化方案(2024版)
|
资源调度 Apache 容器
Vue3使用echarts树图(tree)
本文介绍了如何在 Vue2 项目中使用 Echarts 实现树图(tree)功能。通过按需引入 Echarts 组件和相关依赖,文章详细展示了如何创建一个可自定义配置的树图组件 `TreeChart.vue`,包括树图数据源、容器尺寸、主题色等属性。此外,还提供了在线预览效果及代码示例,帮助读者快速实现树图功能。适用于需要展示层次结构数据的场景。
1585 1
Vue3使用echarts树图(tree)
|
Linux 编译器 数据处理
探索Linux命令之nm:解析二进制文件的神器
`nm`命令是Linux下分析二进制文件的工具,显示符号表中的函数、变量等信息及它们的地址和类型。它帮助理解程序结构、调试和优化,支持不同符号类型、输出选项和过滤。常用参数如`-a`显示所有符号,`-t f`列出定义的函数。在实际应用中,可以结合其他工具如`objdump`、`readelf`进行更深入的分析,并注意备份原始文件。
|
JavaScript 前端开发
Vue实现Element UI框架的自定义输入框或下拉框在输入时对列表选项进行过滤,以及右键列表选项弹出菜单进行删除
本文介绍了如何在Vue框架结合Element UI库实现自定义输入框或下拉框,在输入时对列表选项进行过滤,并支持右键点击列表选项弹出菜单进行删除的功能。
761 0
|
Java 数据库连接 mybatis
mybatis 返回map
mybatis 返回map
332 0
|
SQL IDE Java
通过一次性能优化,再次记牢了mybatisplus的QueryWrapper、LambdaQueryWrapper、AbstractWrapper这三者之间的关系...
本文描述了一次针对SpringBoot应用中MyBatisPlus分页查询的性能优化过程。在优化时,作者重写了BaseMapper的`selectPage`方法,通过`Wrapper`的`between`操作添加了ID区间限制以提升SQL执行效率。然而,由于在业务服务类中循环调用分页查询时未每次都创建新的`Wrapper`对象,导致`id BETWEEN ? AND ?`条件重复出现在SQL中。那么,如何解决这个问题呢?
1325 5
|
Linux 测试技术 调度
新工具开源!一款iOS自动化利器(附地址)
tidevice 是阿里的内部的一个小组用来做 iOS 自动化用的工具,通过逆向iOS通信协议,使用纯Python实现。目前淘宝和其他部分事业部已经全面使用了该技术,进行iOS应用的性能采集,UI自动化。
2827 0
新工具开源!一款iOS自动化利器(附地址)
|
Java 开发工具 Android开发
SLS:使用 OTel 官方 SDK 采集 Android、iOS Trace 数据实践
本文介绍了使用 OTel 官方 SDK 采集 Android、iOS Trace 数据实践。
1086 7
SLS:使用 OTel 官方 SDK 采集 Android、iOS Trace 数据实践

热门文章

最新文章