如何合併這兩個圖像(見附圖)。我使用下面的代碼。它適用於普通圖像而不是3D變換圖像。如何處理這個問題。我搜索了很多次,仍然沒有得到正確的結果。請幫幫我。提前致謝。
UIImage *mergedImage;
UIGraphicsBeginImageContext(backgroundImageView.frame.size);
[backgroundImageView.layer renderInContext:UIGraphicsGetCurrentContext()]; //bacgroundImageView here
mergedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
我看到您在某處使用我的GPUImage框架(這些是我隨該框架提供的示例圖像)。爲什麼不使用混合過濾器,結合轉換過濾器,而不是使用UIViews? –