我正在使用 CISourceOverCompositing 来混合两个图像。使用以下代码可以处理相同尺寸的图像:
CIFIlter *filter1 = [CIFilter filterWithName: @"CISourceOverCompositing"];
[filter1 setDefaults];
[filter1 setValue: imageForeground forKey: @"inputImage"];
[filter1 setValue: imageBackground forKey: @"inputBackgroundImage"];
CIImage *outputImage = [filter1 outputImage];
现在我有不同的图像尺寸,例如:
图像前景:50 像素 x 50 像素
图片背景:500px x 500px
前面的代码将 imageForeground 设置在 outputImage 的 (0, 0) 位置。
如何混合这些图像定位 imageForeground,例如,在 (100, 100) 位置?
提前致谢!