gpt4 book ai didi

iphone - 在将 UIImage 叠加到另一个 UIImage 上时需要一些帮助吗?

转载 作者:行者123 更新时间:2023-12-01 18:32:54 25 4
gpt4 key购买 nike

我有一个应用程序,用户可以在发送传真之前在传真图像 (tif) 上注释签名图像。我在这里看到了一个非常好的问题:iPhone SDK - How to draw a UIImage onto another UIImage?但是我仍然无法做我正在寻找的东西。有人可以指导我,因为我是图形上下文 ETC 的新手。

最佳答案

这是您获取图像所需的操作,

CGRect faxImageRect = CGRectZero;
CGRect signatureRect = CGRectZero;

faxImageRect.size = faxImage.size;
signatureRect.size = signature.size;

// Adjust the signature's location within the fax image
signatureRect.origin = desirableLocation;

UIGraphicsBeginImageContext(faxImage.size);
[faxImage drawInRect:faxImageRect];
[signature drawInRect:signatureRect];
image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

到最后 image将包含您要发送的图像。

此示例使用其图像的真实尺寸。你可以改变它,尽管它们可能会受到拉伸(stretch)。

关于iphone - 在将 UIImage 叠加到另一个 UIImage 上时需要一些帮助吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6390063/

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