これら 2 つの画像をマージする方法 (添付の画像を参照)。以下のコードを使用しています。3D変換画像ではなく、通常の画像で機能します。この問題を処理する方法。私は何度も検索しましたが、まだ適切な結果が得られません。私を助けてください。前もって感謝します。
UIImage *mergedImage;
UIGraphicsBeginImageContext(backgroundImageView.frame.size);
[backgroundImageView.layer renderInContext:UIGraphicsGetCurrentContext()]; //bacgroundImageView here
mergedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();