How does the coordinate system in an CGContextRef look like?(CGContextRef 中的坐标系是什么样的?)
问题描述
我假设原点在左下角,y 轴从 0 开始向上扩展.x 轴从 0 开始向右扩展.
I assume that the origin is on the bottom left, and the y-axis expands up, starting from 0. The x-axis expands to the right, starting from 0.
我只是问,因为我从我的绘图代码中得到了非常奇怪的结果......想确保我没有弄错这部分.
I just ask because I get very weird results from my drawing code... want to make sure that I didn't get this part wrong.
推荐答案
这取决于使用此上下文的位置.Mac 上用于视图、图层和图像绘制的标准核心图形绘制上下文的左下坐标为 (0,0).
It depends on where this context is being used. The standard Core Graphics drawing context used on the Mac for view, layer, and image drawing has (0,0) for its bottom left coordinate.
iPhone 上的标准坐标系是倒置的,UIView 的左上角坐标为 (0,0).它的支持层也具有那些翻转的坐标,因此绘制到视图的上下文或其层从左上角的 (0,0) 开始.UIImage 上下文也以这种方式翻转,但 PDF 上下文不是.
The standard coordinate system on the iPhone is inverted, with the upper left coordinate for a UIView being (0,0). Its backing layer also has those flipped coordinates, so drawing into a context for the view or its layer starts at (0,0) for the upper left. UIImage contexts are also flipped in this manner, but PDF contexts are not.
所有这些都是 记录在 Apple 的 iPhone 编程指南中的各个位置,但整理起来可能有点混乱.
All of this is documented in various locations within Apple's iPhone programming guides, but it can be a bit confusing to sort out.
这篇关于CGContextRef 中的坐标系是什么样的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CGContextRef 中的坐标系是什么样的?
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01