Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将我的代码从 android 移植到 iOS。在 android 中,我使用多个位图,然后使用 Xfer 模式传输它们。我如何在 iOS 中实现同样的目标。我试过了
CGContextRef context = UIGraphicsGetCurrentContext();
但不确定如何获得多个位图来操作。可能是我缺少一些基本的东西。感谢所有的帮助。
创建一个新CGBitmapContext的绘图。CGBitmapContext就像 的子类CGContext。
CGBitmapContext
CGContext
我不确定“使用 Xfer 模式传输它们”是什么意思;也许您正在寻找CGBlendModes?
CGBlendMode