Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UIImage の上に小さな UIImageView を配置したいのですが、結果として UIImage が必要です。どうすればよいですか?
新しいグラフィックス コンテキストを作成し ( UIGraphicsBeginImageContextWithOptions())、2 つの画像をコンテキストに描画し ( -[UIImage drawInRect:])、コンテキストから画像を取得する ( UIGraphicsGetImageFromCurrentImageContext()) 必要があります。
UIGraphicsBeginImageContextWithOptions()
-[UIImage drawInRect:]
UIGraphicsGetImageFromCurrentImageContext()
最後に電話することを忘れないでくださいUIGraphicsEndImageContext()。
UIGraphicsEndImageContext()