iPhone, how does one overlay one image onto another to create a new image to save? (watermark)(iPhone,如何将一张图像叠加到另一张图像上以创建要保存的新图像?(水印))
问题描述
基本上,我想拍摄用户从他们的照片库中选择的图像,然后应用水印,右下角有一个三角形,上面有应用程序名称.我已经在 Photoshop 中使用透明图层制作了第二张图像.
Basically I want to take an image that the user chooses from their photo library and then apply a watermark, a triangle in the lower right that has the app name on it. I have the second image already made with a transparent layer in photoshop.
我尝试了一个函数,我不记得确切的名称,但它涉及 CGIImages 和掩码.这结合了两个图像,但是作为一个遮罩,这使得透明层所在的图像更暗,图像本身并没有合并,只是被遮罩了.
I tried a function, which I can't remember the exact name, but it involved CGIImages and masks. This combines the two images, but as a mask, which made the image darker where the transparent layer was and the images were not merged per se, just masked.
如何让水印图像与另一个图像合并,制作 UIImage,而不在屏幕上显示图像?
How would I get the watermark image to merge with another image, to make a UIImage, without displaying the images on the screen?
谢谢.
推荐答案
很简单:
UIImage *backgroundImage = [UIImage imageNamed:@"image.png"];
UIImage *watermarkImage = [UIImage imageNamed:@"watermark.png"];
UIGraphicsBeginImageContext(backgroundImage.size);
[backgroundImage drawInRect:CGRectMake(0, 0, backgroundImage.size.width, backgroundImage.size.height)];
[watermarkImage drawInRect:CGRectMake(backgroundImage.size.width - watermarkImage.size.width, backgroundImage.size.height - watermarkImage.size.height, watermarkImage.size.width, watermarkImage.size.height)];
UIImage *result = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
如果您希望背景和水印大小相同,请使用此代码
If you want the background and watermark to be of the same size then use this code
...
[backgroundImage drawInRect:CGRectMake(0, 0, backgroundImage.size.width, backgroundImage.size.height)];
[watermarkImage drawInRect:CGRectMake(0, 0, backgroundImage.size.width, backgroundImage.size.height)];
...
这篇关于iPhone,如何将一张图像叠加到另一张图像上以创建要保存的新图像?(水印)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iPhone,如何将一张图像叠加到另一张图像上以创建要保存的新图像?(水印)
基础教程推荐
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
