gpt4 book ai didi

alpha - CGBitmapContextCreate 与 kCGImageAlphaNone

转载 作者:行者123 更新时间:2023-12-03 11:46:00 28 4
gpt4 key购买 nike

我迫切需要创建一个没有 alpha channel 的 CGContextRef。不幸的是,使用 Core Graphics,您不能使用 CGBitmapCreateContext 指定 kCGImageAlphaNone。

有人可以发布一个关于如何在没有 alpha channel 的情况下创建 CGContextRef 的工作示例吗?

我需要这个的原因是因为我最终试图调用 CGImageCreateWithMaskingColors,当然,如果提供的 CGImageRef 具有 alpha channel ,它将不起作用。

请发布一个工作示例。如果你这样做了,你就会享受这样一个事实,即你将处于最前沿,并且将成为第一个这样做的人!请发帖!

最佳答案

您可以创建没有 Alpha channel 的位图上下文。你不能创建一个每像素三个字节的位图上下文。这是 secret 握手:

CGContextRef gc = CGBitmapContextCreate(NULL, myWidth, myHeight, 8, 0,
myColorSpace, kCGImageAlphaNoneSkipLast);
在 swift :
let gc = CGContext(
data: nil,
width: myWidth, height: myHeight,
bitsPerComponent: 8, bytesPerRow: 0,
space: myColorSpace,
bitmapInfo: CGImageAlphaInfo.noneSkipLast.rawValue)

关于alpha - CGBitmapContextCreate 与 kCGImageAlphaNone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9408292/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com