HOME > UIViewからUIImage UIViewからUIImageを出力 Objective-Cではよく利用されていたかと思うのですが、Swiftでサンプルコードがなかったので以下追加しておきます。よろしければご利用ください. 参考:How to capture UIView to UIImage without loss of quality on retina display getUIImageFromUIView //UIImageをUIViewから取得する変換関数 func getUIImageFromUIView(myUIView:UIView) ->UIImage { UIGraphicsBeginImageContextWithOptions(myUIView.frame.size, true, 0);//必要なサイズ確保 let context:CGContex
Problem UIViewからUIImageを作成したい。 UIImageの背景は透明にしたい。 画質は低下させない。 Solution # Swfit2.3 import UIKit extension UIView { func snapshotImage() -> UIImage? { UIGraphicsBeginImageContextWithOptions(bounds.size, false, 0) guard let currentContext = UIGraphicsGetCurrentContext() else { UIGraphicsEndImageContext() return nil } layer.renderInContext(currentContext) let image = UIGraphicsGetImageFromCurrentImageC
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く