gpt4 book ai didi

iphone - 如何将图像和一些文本叠加到 UIImage 上?

转载 作者:行者123 更新时间:2023-11-29 13:48:07 26 4
gpt4 key购买 nike

我正在尝试将签名图像和一些文本叠加到传真图像上。到目前为止,我有以下代码:

CGRect faxImageRect = CGRectZero;
CGRect signatureRect = CGRectZero; //need to add a logo and some text here
//faxImage is a fax UIImage
//signature is a Logo UIImage

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();

我需要写一些文字作为签名的一部分。 Arial 大小 10。我该怎么做?我真的很困惑。

最佳答案

checkout – drawAtPoint:withFont:NSString(UIStringDrawing),像这样的一些代码应该可以工作:

[@"My Signature" drawAtPoint:somePoint withFont:[UIFont fontWithName:@"Arial" size:10.0]];

关于iphone - 如何将图像和一些文本叠加到 UIImage 上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6434159/

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