作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将签名图像和一些文本叠加到传真图像上。到目前为止,我有以下代码:
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/
我是一名优秀的程序员,十分优秀!